From 1259c0e6c1913dd5de3ee7c2d484d85376c610a8 Mon Sep 17 00:00:00 2001
From: "google-labs-jules[bot]"
<161369871+google-labs-jules[bot]@users.noreply.github.com>
Date: Wed, 8 Jul 2026 22:12:53 +0000
Subject: [PATCH] =?UTF-8?q?=F0=9F=95=B8=EF=B8=8F=20Spider:=20Fix=20fallbac?=
=?UTF-8?q?k=20navigation=20links=20for=20better=20crawlability?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Co-authored-by: kourdroid <36898160+kourdroid@users.noreply.github.com>
---
src/Header/Nav/index.tsx | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/src/Header/Nav/index.tsx b/src/Header/Nav/index.tsx
index 8b288f6..8123a6f 100644
--- a/src/Header/Nav/index.tsx
+++ b/src/Header/Nav/index.tsx
@@ -1,6 +1,7 @@
'use client'
import React from 'react'
+import Link from 'next/link'
import type { Header as HeaderType } from '@/payload-types'
import { CMSLink } from '@/components/Link'
@@ -32,10 +33,11 @@ export const HeaderNav: React.FC<{ data: HeaderType }> = ({ data }) => {
{/* Fallback Static Links if CMS is empty during dev */}
{navItems.length === 0 && (
<>
- A PROPOS
- SOLUTIONS
- PROJECTS
- EXPERTISES
+ {/* SEO: Using valid relative paths instead of href="#" prevents crawl errors and mixed SEO signals */}
+ A PROPOS
+ SOLUTIONS
+ PROJECTS
+ EXPERTISES
>
)}