diff --git a/src/Header/Nav/index.tsx b/src/Header/Nav/index.tsx
index 8b288f6..edaa4ed 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: Use valid relative paths for fallback links instead of dummy '#' to ensure proper crawlability and semantic HTML */}
+ A PROPOS
+ SOLUTIONS
+ PROJECTS
+ EXPERTISES
>
)}