From 6379a59b8d0c8c8b1f89d1aaa2638cc7e8b2fd5f Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 11:05:57 +0000 Subject: [PATCH 1/3] Add src/app/menu/page.tsx --- src/app/menu/page.tsx | 65 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 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..afade7f --- /dev/null +++ b/src/app/menu/page.tsx @@ -0,0 +1,65 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function MenuPage() { + return ( + + + + + + + + + + ); +} -- 2.49.1 From 3a5261e58add1c271dcbc705417c048850e7424c Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 11:05:57 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 22 +++------------------- 1 file changed, 3 insertions(+), 19 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7e31036..64c112c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,7 +33,7 @@ export default function LandingPage() { navItems={[ { name: "Home", id: "/" }, { name: "About", id: "#about" }, - { name: "Menu", id: "#menu" }, + { name: "Menu", id: "/menu" }, { name: "Pricing", id: "/pricing" }, { name: "Contact", id: "#contact" }, ]} @@ -62,7 +62,7 @@ export default function LandingPage() { { imageSrc: "http://img.b2bpic.net/free-photo/beautiful-mature-woman-having-fun-time_23-2149232849.jpg", imageAlt: "sci-fi spaceship interior" }, { imageSrc: "http://img.b2bpic.net/free-photo/cosmic-background-with-golden-neon-laser-lights_181624-27799.jpg", imageAlt: "sci-fi spaceship interior" } ]} - buttons={[{ text: "Order Interstellar", href: "#menu" }]} + buttons={[{ text: "Order Interstellar", href: "/menu" }]} /> @@ -77,22 +77,6 @@ export default function LandingPage() { /> - -
Date: Sat, 18 Apr 2026 11:05:58 +0000 Subject: [PATCH 3/3] Update src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index f6317f4..54a89ab 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -26,7 +26,7 @@ export default function PricingPage() { navItems={[ { name: "Home", id: "/" }, { name: "About", id: "/#about" }, - { name: "Menu", id: "/#menu" }, + { name: "Menu", id: "/menu" }, { name: "Pricing", id: "/pricing" }, { name: "Contact", id: "/#contact" }, ]} @@ -52,7 +52,7 @@ export default function PricingPage() {