From 490ba14b67118f74ef42a8b7003dce23d2f05ce4 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 12 Jun 2026 21:03:27 +0000 Subject: [PATCH 1/2] Add src/app/menu/page.tsx --- src/app/menu/page.tsx | 164 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 164 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..6a15829 --- /dev/null +++ b/src/app/menu/page.tsx @@ -0,0 +1,164 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; + +export default function MenuPage() { + return ( + + + + + + + + + + ); +} \ No newline at end of file From ab1e8f5b71b7dd729ce682d8867486d8881cbf67 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 12 Jun 2026 21:03:28 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 277 ++++++++--------------------------------------- 1 file changed, 48 insertions(+), 229 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1fa6612..b4c37f8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import HeroLogo from '@/components/sections/hero/HeroLogo'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; + import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; import { Globe, Star, Users } from "lucide-react"; @@ -32,39 +32,23 @@ export default function LandingPage() { @@ -74,13 +58,9 @@ export default function LandingPage() { description="Authentic Peruvian Flavor. Always Fresh. Always Generous." buttons={[ { - text: "Order Now", - href: "#contact", - }, + text: "Order Now", href: "#contact"}, { - text: "Reserve a Table", - href: "#contact", - }, + text: "Reserve a Table", href: "#contact"}, ]} buttonAnimation="opacity" imageSrc="http://img.b2bpic.net/free-photo/shrimp-fish-sauce_1203-9136.jpg" @@ -95,17 +75,11 @@ export default function LandingPage() { description="El Sabor Peruano is more than a restaurant; it's a labor of love, born from our family's deep roots in Peru and a passion for sharing our rich culinary heritage. Every dish is a tribute to our homeland, crafted with traditional recipes and the freshest ingredients, just like abuela used to make. We treat every guest like family, ensuring a warm, welcoming experience with every visit." metrics={[ { - value: "20+", - title: "Years of Culinary Tradition", - }, + value: "20+", title: "Years of Culinary Tradition"}, { - value: "5/5", - title: "Customer Rating Excellence", - }, + value: "5/5", title: "Customer Rating Excellence"}, { - value: "100%", - title: "Fresh Seafood Daily", - }, + value: "100%", title: "Fresh Seafood Daily"}, ]} imageSrc="http://img.b2bpic.net/free-photo/pov-client-advertises-organic-farming_482257-80727.jpg" imageAlt="The family owners of El Sabor Peruano smiling warmly" @@ -114,78 +88,6 @@ export default function LandingPage() { /> -
- -
); -} +} \ No newline at end of file