Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #3.
This commit is contained in:
2026-03-10 20:50:33 +00:00

View File

@@ -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() {
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="Raykdi"
navItems={[
{ name: "Menu", id: "/menu" },
{ name: "Story", id: "about-story" },
{ name: "Experience", id: "experience-features" },
{ name: "Reviews", id: "testimonials" },
{ name: "Visit", id: "contact-faq" }
links={[
{ label: "Menu", href: "/menu" },
{ label: "Story", href: "about-story" },
{ label: "Experience", href: "experience-features" },
{ label: "Reviews", href: "testimonials" },
{ label: "Visit", href: "contact-faq" }
]}
/>
</div>
@@ -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" }
]