From 5cd83faad34131aae71eba50c1dc802036969e89 Mon Sep 17 00:00:00 2001 From: ivke995 Date: Fri, 22 Aug 2025 13:50:27 +0200 Subject: [PATCH 1/5] fix: nav href and text logo style - check if pathname is /contact --- apps/website/src/components/navigation.astro | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/apps/website/src/components/navigation.astro b/apps/website/src/components/navigation.astro index 99fd7de0..edfe2cea 100644 --- a/apps/website/src/components/navigation.astro +++ b/apps/website/src/components/navigation.astro @@ -9,6 +9,8 @@ const optimizedLogo = await getImage({ height: 51, format: "webp", }); + +const isContact = Astro.url.pathname === "/contact" ---