From d30dc2fea2aeb2fe71f234aff1ca0d4f0f3c9986 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 07:39:56 +0000 Subject: [PATCH 1/2] Add src/app/menu/page.tsx --- src/app/menu/page.tsx | 88 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 88 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..6dfe62b --- /dev/null +++ b/src/app/menu/page.tsx @@ -0,0 +1,88 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; + +export default function MenuPage() { + return ( + + + + +
+ ({ ...p, imageSrc: "https://img.b2bpic.net/free-photo/top-view-delicious-meal-luxury-restaurant_23-2150598373.jpg" }))} + /> +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1 From 3939f7601f80ee08ba0df7e67124b4d5b05b3aa9 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 07:39:57 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1b79e6e..ba8ca56 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,7 +31,7 @@ export default function LandingPage() { navItems={[ { name: "Home", id: "hero" }, { name: "About", id: "about" }, - { name: "Menu", id: "menu" }, + { name: "Menu", id: "/menu" }, { name: "Testimonials", id: "testimonials" }, { name: "Contact", id: "contact" }, ]} @@ -47,7 +47,7 @@ export default function LandingPage() { description="Experience the art of culinary excellence in an intimate setting. Where tradition meets innovation, served with passion." buttons={[ { text: "Reserve a Table", href: "#contact" }, - { text: "View Menu", href: "#menu" }, + { text: "View Menu", href: "/menu" }, ]} imageSrc="http://img.b2bpic.net/free-photo/two-men-cafe_23-2147775893.jpg" mediaAnimation="blur-reveal" @@ -118,7 +118,7 @@ export default function LandingPage() {