diff --git a/src/app/page.tsx b/src/app/page.tsx
index 27558f4..c0bc3cb 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -11,7 +11,16 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function Page() {
- const navItems = [{ name: "Home", id: "/" }];
+ const navItems = [
+ { name: "Home", id: "hero" },
+ { name: "About", id: "about" },
+ { name: "Menu", id: "menu" },
+ { name: "Signatures", id: "signatures" },
+ { name: "Reviews", id: "reviews" },
+ { name: "Atmosphere", id: "atmosphere" },
+ { name: "Location", id: "contact" }
+ ];
+
return (