From fcf34b525fca9ab4a0f4ccf4bf4056ebe6d928c6 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 20:50:29 +0000 Subject: [PATCH] Update src/app/menu/page.tsx --- src/app/menu/page.tsx | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index 3d743f0..9e5e761 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -6,6 +6,7 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne'; import ContactFaq from '@/components/sections/contact/ContactFaq'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import { MapPin } from 'lucide-react'; +import Link from 'next/link'; export default function MenuPage() { return ( @@ -24,12 +25,12 @@ export default function MenuPage() { @@ -93,14 +94,14 @@ export default function MenuPage() { }, { title: "Company", items: [ - { label: "Our Story", id: "about-story" }, - { label: "Experience", href: "#experience-features" }, - { label: "Reviews", href: "#testimonials" } + { label: "Our Story", href: "about-story" }, + { label: "Experience", href: "experience-features" }, + { label: "Reviews", href: "testimonials" } ] }, { title: "Connect", items: [ - { label: "Visit Us", href: "#contact-faq" }, + { label: "Visit Us", href: "contact-faq" }, { label: "Get Directions", href: "https://maps.google.com" }, { label: "Instagram", href: "https://instagram.com" } ]