From 9bd6f61bfe974424ff86936841bf8aaad58b4ee4 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 4 Jun 2026 18:01:03 +0000 Subject: [PATCH 1/2] Add src/app/menu/page.tsx --- src/app/menu/page.tsx | 172 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 172 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..08ebc7d --- /dev/null +++ b/src/app/menu/page.tsx @@ -0,0 +1,172 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import LegalSection from '@/components/legal/LegalSection'; + +export default function MenuPage() { + const navItems = [ + { + name: "Home", id: "/" + }, + { + name: "About", id: "/#about" + }, + { + name: "Menu", id: "/menu" + }, + { + name: "Why Choose Us", id: "/#features" + }, + { + name: "Testimonials", id: "/#testimonials" + }, + { + name: "Gallery", id: "/#gallery" + }, + { + name: "FAQ", id: "/#faq" + }, + { + name: "Contact", id: "/#contact" + } + ]; + + const footerColumns = [ + { + title: "Menu", items: [ + { label: "Salad", href: "/menu" }, + { label: "Chilaquiles", href: "/menu" }, + { label: "Bean and Cheese burrito", href: "/menu" }, + { label: "Fried Sushi", href: "/menu" }, + { label: "Plato De Menudo soup", href: "/menu" }, + { label: "REAL Horchata", href: "/menu" }, + { label: "Cola", href: "/menu" }, + { label: "Bacon and Egg burrito", href: "/menu" }, + { label: "California rolls", href: "/menu" }, + { label: "Tortillas soup", href: "/menu" }, + { label: "Huevos Rancheros", href: "/menu" }, + { label: "Order Pickup", href: "/#contact" } + ] + }, + { + title: "About Us", items: [ + { label: "Our Story", href: "/#about" }, + { label: "Our Values", href: "/#features" }, + { label: "Testimonials", href: "/#testimonials" }, + { label: "Gallery", href: "/#gallery" } + ] + }, + { + title: "Support", items: [ + { label: "Contact Us", href: "/#contact" }, + { label: "FAQ", href: "/#faq" }, + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" } + ] + } + ]; + + return ( + + + + + + + {/* Minimal Contact and FAQ sections for menu page, linking back to main sections if needed */} +
+ +
+ + +
+
+ ); +} -- 2.49.1 From e20f4153fa896e03ef2f50cb3e4f748091f2e880 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 4 Jun 2026 18:01:04 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c8ed125..3f97e72 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -23,7 +23,7 @@ export default function LandingPage() { name: "About", id: "/#about" }, { - name: "Products", id: "/products" + name: "Menu", id: "/menu" }, { name: "Why Choose Us", id: "/#features" @@ -45,12 +45,12 @@ export default function LandingPage() { const footerColumns = [ { title: "Menu", items: [ - { label: "Huevos Rancheros", href: "/products" }, - { label: "Carne Asada Burrito", href: "/products" }, - { label: "Homemade Tortillas", href: "/products" }, - { label: "Sushi Platters", href: "/products" }, - { label: "Pancake Breakfast", href: "/products" }, - { label: "Nachos & Tacos", href: "/products" }, + { label: "Huevos Rancheros", href: "/menu" }, + { label: "Carne Asada Burrito", href: "/menu" }, + { label: "Homemade Tortillas", href: "/menu" }, + { label: "Sushi Platters", href: "/menu" }, + { label: "Pancake Breakfast", href: "/menu" }, + { label: "Nachos & Tacos", href: "/menu" }, { label: "Order Pickup", href: "/#contact" } ] }, @@ -101,7 +101,7 @@ export default function LandingPage() { description="A South Phoenix favorite serving homemade Mexican classics, breakfast favorites, fresh sushi creations, and unforgettable hospitality for over a decade." buttons={[ { - text: "View Menu", href: "/products"}, + text: "View Menu", href: "/menu"}, { text: "Order Pickup", href: "/#contact"}, ]} @@ -128,7 +128,7 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} title="★★★★★ 4.4 Stars • 255+ Reviews" - description={`"One of the best hidden food spots in South Phoenix." "Feels like eating your nana's cooking." "Best huevos rancheros I've ever had."`} + description={`"One of the best hidden food spots in South Phoenix." "Feels like eating your nana's cooking." "Best huevos rancheros I've ever had."}`} /> -- 2.49.1