From 7ffc707718b530d8f412288d88a39dd034d3e829 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 17:25:43 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 294 ++++++++++++++++++----------------------------- 1 file changed, 111 insertions(+), 183 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 40154d4..651b0d5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,219 +1,147 @@ "use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; -import HeroCentered from "@/components/sections/hero/HeroCentered"; -import ProductCardFour from "@/components/sections/product/ProductCardFour"; -import FeatureCardTwentyOne from "@/components/sections/feature/FeatureCardTwentyOne"; -import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen"; -import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; -import ContactSplit from "@/components/sections/contact/ContactSplit"; -import FooterCard from "@/components/sections/footer/FooterCard"; -import { Facebook, Instagram } from "lucide-react"; +import { ThemeProvider } from "@/components/theme/ThemeProvider"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroLogo from "@/components/sections/hero/HeroLogo"; +import AboutMetric from "@/components/sections/about/AboutMetric"; +import PricingCardThree from "@/components/sections/pricing/PricingCardThree"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import { TrendingUp, Users, ShoppingCart, Globe, Mail, Sparkles } from "lucide-react"; -export default function VallartaLanding() { +export default function Home() { return ( - +
-
- + +
+ console.log("Appetizers") }, + { text: "Learn More", onClick: () => console.log("Details") }, + ], + features: [ + "Guacamole & Chips", "Cheese Quesadillas", "Fish Tacos", "Ceviche"], }, { - id: "2", name: "Polo Loco Burrito", price: "Market Price", variant: "Roasted Chicken", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-meal-sandwich-with-grilled-meat-sliced-with-salad-white-space_140725-75703.jpg", imageAlt: "Polo Loco Burrito" + id: "2", badge: "Most Popular", badgeIcon: Sparkles, + price: "Main Courses", name: "Chef's Specialties", buttons: [ + { text: "View Dishes", onClick: () => console.log("Main") }, + { text: "Learn More", onClick: () => console.log("Details") }, + ], + features: [ + "Chiles Rellenos", "Fajitas", "Enchiladas Verdes", "Carnitas"], }, { - id: "3", name: "Cheese Enchiladas", price: "Market Price", variant: "Authentic Recipe", imageSrc: "http://img.b2bpic.net/free-photo/elevated-view-cooked-ground-beef-bowl-with-mexican-nachos-chips-blue-wooden-desk_23-2148042445.jpg", imageAlt: "Cheese Enchiladas" + id: "3", price: "Beverages", name: "Handcrafted Drinks", buttons: [ + { text: "View Drinks", onClick: () => console.log("Beverages") }, + { text: "Learn More", onClick: () => console.log("Details") }, + ], + features: [ + "Margaritas", "Mojitos", "Aguas Frescas", "Mexican Beers"], }, ]} - gridVariant="three-columns-all-equal-width" - animationType="slide-up" textboxLayout="default" - useInvertedBackground={false} - buttons={[ - { text: "View Full Menu", href: "#" }, - ]} - /> -
- -
- -
- -
-
-
- -
- -
- -
-
- console.log("Call to reserve"), + }, + { text: "Visit Website", href: "https://example.com" }, + ]} + background={{ variant: "plain" }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/side-view-stuffed-with-zucchini-with-slice-cheese-cucumber-blue-plate_141793-6117.jpg" - imageAlt="Vallarta Mexican Grill" - mediaAnimation="slide-up" - mediaPosition="right" - inputPlaceholder="Enter your email" - buttonText="Subscribe" - termsText="We respect your privacy and send updates only about specials and new dishes." />
- +
); } -- 2.49.1