From d5cf5743ed07ef50e42b2bc232ca7368b79c7c38 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 16:09:08 +0000 Subject: [PATCH] Update src/app/menu/page.tsx --- src/app/menu/page.tsx | 104 +++++++++++++++++------------------------- 1 file changed, 43 insertions(+), 61 deletions(-) diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index ef5564b..e07d099 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -1,19 +1,20 @@ "use client"; +import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import ProductCardOne from "@/components/sections/product/ProductCardOne"; -import ContactSplit from "@/components/sections/contact/ContactSplit"; -import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import { MessageSquare } from "lucide-react"; export default function MenuPage() { const navItems = [ { name: "Home", id: "/" }, { name: "Menu", id: "/menu" }, - { name: "Gallery", id: "gallery" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "Gallery", id: "/gallery" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ @@ -21,13 +22,13 @@ export default function MenuPage() { items: [ { label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, - { label: "Gallery", href: "gallery" }, + { label: "Gallery", href: "/gallery" }, ], }, { items: [ - { label: "About Us", href: "about" }, - { label: "Contact", href: "contact" }, + { label: "About Us", href: "/about" }, + { label: "Contact", href: "/contact" }, { label: "Order Online", href: "#" }, ], }, @@ -70,49 +71,31 @@ export default function MenuPage() { /> - {/* Full Menu Section */} + {/* Complete Menu Section */}