From 59755f2163632798ece6b08f0284747f3c0a76b2 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 5 Apr 2026 22:55:58 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 98 ++++++++---------------------------------------- 1 file changed, 15 insertions(+), 83 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c0bc3cb..ea451fe 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,13 +12,13 @@ import FooterSimple from '@/components/sections/footer/FooterSimple'; export default function Page() { 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" } + { name: "Home", id: "/" }, + { name: "About", id: "#about" }, + { name: "Menu", id: "#menu" }, + { name: "Signatures", id: "#signatures" }, + { name: "Reviews", id: "#reviews" }, + { name: "Atmosphere", id: "#atmosphere" }, + { name: "Contact", id: "#contact" } ]; return ( @@ -38,96 +38,28 @@ export default function Page() {
- +
- +
- +
- +
- +
- +
); -- 2.49.1