diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx new file mode 100644 index 0000000..15c80a1 --- /dev/null +++ b/src/app/menu/page.tsx @@ -0,0 +1,63 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; + +export default function MenuPage() { + return ( + + + + + + + + + + ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index a522106..4a4d18c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,7 +32,7 @@ export default function LandingPage() { navItems={[ { name: "Home", id: "hero" }, { name: "About", id: "about" }, - { name: "Menu", id: "products" }, + { name: "Menu", id: "/menu" }, { name: "Reviews", id: "testimonials" }, { name: "Contact", id: "contact" }, ]} @@ -45,7 +45,7 @@ export default function LandingPage() { title="Alberton's Favourite Roadhouse Vibe" description="Juicy Kotas, crispy wings, and sweet chill vibes. Swing by Jacqueline Mall for the ultimate taste experience." buttons={[ - { text: "View Menu", href: "#products" }, + { text: "View Menu", href: "/menu" }, { text: "Directions", href: "#contact" }, ]} imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=2l5t91" @@ -146,7 +146,7 @@ export default function LandingPage() { @@ -154,4 +154,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}