From 7ac84da9d2c9970c67692683905b49f984bda0d7 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 12:41:41 +0000 Subject: [PATCH 1/3] Add src/app/menu/page.tsx --- src/app/menu/page.tsx | 190 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 190 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..faa4488 --- /dev/null +++ b/src/app/menu/page.tsx @@ -0,0 +1,190 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ProductCardThree from '@/components/sections/product/ProductCardThree'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; + +export default function MenuPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file -- 2.49.1 From d7f9004ea4c299e0251e681a5c6358a3d7c3a8ff Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 12:41:42 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 27e0961..85ce9d8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,6 +32,7 @@ export default function LandingPage() { { name: "Home", id: "home" }, { name: "Signature Favorites", id: "favorites" }, { name: "About", id: "about" }, + { name: "Reviews", id: "reviews" }, { name: "Visit Us", id: "contact" } ]} button={{ @@ -85,7 +86,7 @@ export default function LandingPage() { id: "4", title: "Worth the Visit", quote: "The combination of delicious food, generous portions, and authentic small-town service makes this a must-visit destination.", name: "David Kim", role: "Satisfied Customer", imageSrc: "http://img.b2bpic.net/free-photo/excited-cheerful-blond-girl-rejoicing-camera-with-copy-space-text-promotional-content-near-yellow-background_574295-2365.jpg", imageAlt: "customer portrait satisfied restaurant experience" } ]} - buttons={[{ text: "See Full Reviews", href: "#" }]} + buttons={[{ text: "See Full Reviews", href: "/reviews" }]} ariaLabel="Customer testimonials section" /> @@ -202,10 +203,11 @@ export default function LandingPage() { columns={[ { title: "Navigation", items: [ - { label: "Home", href: "#home" }, - { label: "Signature Favorites", href: "#favorites" }, - { label: "About", href: "#about" }, - { label: "Contact", href: "#contact" } + { label: "Home", href: "/" }, + { label: "Signature Favorites", href: "/#favorites" }, + { label: "About", href: "/#about" }, + { label: "Reviews", href: "/reviews" }, + { label: "Contact", href: "/#contact" } ] }, { @@ -232,4 +234,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1 From 9ab81ff59f2b62f8c2d91825bd2f3a361aaffbba Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 12:41:42 +0000 Subject: [PATCH 3/3] Add src/app/reviews/page.tsx --- src/app/reviews/page.tsx | 132 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/app/reviews/page.tsx diff --git a/src/app/reviews/page.tsx b/src/app/reviews/page.tsx new file mode 100644 index 0000000..f9fe958 --- /dev/null +++ b/src/app/reviews/page.tsx @@ -0,0 +1,132 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; + +export default function ReviewsPage() { + return ( + + + +
+
+ +
+ +
+ + +
+ ); +} \ No newline at end of file -- 2.49.1