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() {
- +
- +
- +
- +
- +
- +
);