From 50881e90283b0a69c6e788a6ca08b2c821de3dcb Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 16 Apr 2026 08:22:36 +0000 Subject: [PATCH 1/2] Add src/app/menu/page.tsx --- src/app/menu/page.tsx | 63 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 src/app/menu/page.tsx 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 ( + + + + + + + + + + ); +} -- 2.49.1 From a20d5120d2fa2a4b0c4ca87f7d3d3856d6fed50c Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 16 Apr 2026 08:22:36 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 +} -- 2.49.1