From 8259e7d3cd7fd045e2f6692366247837a39477d8 Mon Sep 17 00:00:00 2001
From: "google-labs-jules[bot]"
<161369871+google-labs-jules[bot]@users.noreply.github.com>
Date: Sat, 20 Jun 2026 22:12:22 +0000
Subject: [PATCH] =?UTF-8?q?=F0=9F=95=B8=EF=B8=8F=20Spider:=20Use=20valid?=
=?UTF-8?q?=20paths=20for=20fallback=20navigation?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Updated dummy `href="#"` attributes in the HeaderNav component's fallback static links to use real, crawlable relative paths (`/`, `/solutions`, `/projects`). This improves search engine crawlability by preventing crawlers from getting stuck on meaningless fragment links when CMS data is empty or during local development/fallback states. Added an inline comment explaining the SEO benefit.
Co-authored-by: kourdroid <36898160+kourdroid@users.noreply.github.com>
---
src/Header/Nav/index.tsx | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/src/Header/Nav/index.tsx b/src/Header/Nav/index.tsx
index 8b288f6..2b67e24 100644
--- a/src/Header/Nav/index.tsx
+++ b/src/Header/Nav/index.tsx
@@ -30,12 +30,13 @@ export const HeaderNav: React.FC<{ data: HeaderType }> = ({ data }) => {
)
})}
{/* Fallback Static Links if CMS is empty during dev */}
+ {/* SEO: Use valid relative paths instead of '#' for fallback links to ensure crawlability */}
{navItems.length === 0 && (
<>
- A PROPOS
- SOLUTIONS
- PROJECTS
- EXPERTISES
+ A PROPOS
+ SOLUTIONS
+ PROJECTS
+ EXPERTISES
>
)}