From 7d22f44eac481d4bf4413b014ec5a726790b094d Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 5 Apr 2026 22:44:55 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 95 +++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 86 insertions(+), 9 deletions(-) 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 (
- +
- +
- +
- +
- +
- +
);