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" } ]