diff --git a/src/components/widgets/Header.astro b/src/components/widgets/Header.astro index fb42711..937e105 100644 --- a/src/components/widgets/Header.astro +++ b/src/components/widgets/Header.astro @@ -68,9 +68,13 @@ if (!currentLang) { // Get translated header data - ensure we're using the current language const headerData = getHeaderData(currentLang); +// Filter out the Contact link for the main nav +const navLinks = headerData.links.filter(link => link.text?.toLowerCase() !== 'contact'); +const contactLink = headerData.links.find(link => link.text?.toLowerCase() === 'contact'); + const { id = 'header', - links = headerData.links, + links = navLinks, isSticky = false, isDark = false, isFullWidth = false, @@ -185,7 +189,13 @@ const {