From 4dec850e8f7f03aff050a9622a1959655b8c1be4 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 21 May 2026 01:40:04 +0000 Subject: [PATCH 1/2] Add src/app/menu/page.tsx --- src/app/menu/page.tsx | 46 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 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..6c7e854 --- /dev/null +++ b/src/app/menu/page.tsx @@ -0,0 +1,46 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; + +export default function MenuPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1 From 39b35eb486e29d88ab62dab516714f545d0efbd5 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 21 May 2026 01:40:05 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0e93455..1483294 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,12 +32,12 @@ export default function LandingPage() { navItems={[ { name: "Home", id: "hero" }, { name: "About", id: "about" }, - { name: "Menu", id: "products" }, + { name: "Menu", id: "/menu" }, { name: "Testimonials", id: "testimonials" }, { name: "Contact", id: "contact" }, ]} brandName="Tee's Donuts" - button={{ text: "Order Now", href: "#products" }} + button={{ text: "Order Now", href: "/menu" }} /> @@ -54,6 +54,7 @@ export default function LandingPage() { mediaAnimation="slide-up" rating={5} ratingText="4.2 rating from 78 happy locals" + buttons={[{ text: "Order Now", href: "/menu" }]} /> -- 2.49.1