Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-03-31 17:11:33 +00:00

View File

@@ -30,25 +30,15 @@ export default function LandingPage() {
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "hero",
},
name: "Home", id: "hero"},
{
name: "About",
id: "about",
},
name: "About", id: "about"},
{
name: "Menu",
id: "menu",
},
name: "Menu", id: "menu"},
{
name: "Reviews",
id: "reviews",
},
name: "Reviews", id: "reviews"},
{
name: "Contact",
id: "contact",
},
name: "Contact", id: "contact"},
]}
brandName="El Guerrero Taco"
/>
@@ -57,19 +47,14 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroLogoBillboardSplit
background={{
variant: "plain",
}}
variant: "plain"}}
logoText="Bold Flavors Authentic Recipes El Guerrero Taco"
description="Handcrafted birria, al pastor, and fresh horchata made daily with ingredients you can trust. Experience the real taste of streetside tradition."
buttons={[
{
text: "Order Now",
href: "#menu",
},
text: "Order Now", href: "#menu"},
{
text: "View Menu",
href: "#menu",
},
text: "View Menu", href: "#menu"},
]}
layoutOrder="default"
imageSrc="http://img.b2bpic.net/free-photo/classic-mexican-food_23-2147640358.jpg"
@@ -98,26 +83,11 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{
id: "p1",
name: "Al Pastor Taco",
price: "$3.50",
variant: "Authentic",
imageSrc: "http://img.b2bpic.net/free-photo/tortillas-with-spicy-mexican-sauce_23-2148224173.jpg",
},
id: "p1", name: "Al Pastor Taco", price: "$3.50", variant: "Authentic", imageSrc: "http://img.b2bpic.net/free-photo/tortillas-with-spicy-mexican-sauce_23-2148224173.jpg"},
{
id: "p2",
name: "Beef Birria",
price: "$4.50",
variant: "Handcrafted",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-tacos-arrangement_23-2150878319.jpg",
},
id: "p2", name: "Beef Birria", price: "$4.50", variant: "Handcrafted", imageSrc: "http://img.b2bpic.net/free-photo/delicious-tacos-arrangement_23-2150878319.jpg"},
{
id: "p3",
name: "Fresh Horchata",
price: "$4.00",
variant: "Traditional",
imageSrc: "http://img.b2bpic.net/free-photo/milk-with-mint-biscuits-cloves-cinnamon-sticks-cup-wooden-surface_176474-6064.jpg",
},
id: "p3", name: "Fresh Horchata", price: "$4.00", variant: "Traditional", imageSrc: "http://img.b2bpic.net/free-photo/milk-with-mint-biscuits-cloves-cinnamon-sticks-cup-wooden-surface_176474-6064.jpg"},
]}
title="Menu Highlights"
description="Discover our most beloved street food classics, crafted daily with authentic spices and fresh, premium ingredients."
@@ -129,30 +99,15 @@ export default function LandingPage() {
useInvertedBackground={true}
testimonials={[
{
id: "t1",
name: "Sarah Miller",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-standing-with-arms-crossed_107420-12323.jpg?_wi=1",
},
id: "t1", name: "Sarah Miller", imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-standing-with-arms-crossed_107420-12323.jpg?_wi=1"},
{
id: "t2",
name: "Jason Cruz",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-dark-long-hair-talking-phone-coffee-shop_273609-2799.jpg",
},
id: "t2", name: "Jason Cruz", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-dark-long-hair-talking-phone-coffee-shop_273609-2799.jpg"},
{
id: "t3",
name: "Maria Lopez",
imageSrc: "http://img.b2bpic.net/free-photo/group-diverse-friends-drinking-beer-while-enjoying-meal-together-restaurant-friends-concept_58466-16030.jpg",
},
id: "t3", name: "Maria Lopez", imageSrc: "http://img.b2bpic.net/free-photo/group-diverse-friends-drinking-beer-while-enjoying-meal-together-restaurant-friends-concept_58466-16030.jpg"},
{
id: "t4",
name: "David Park",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-waitress_107420-12324.jpg",
},
id: "t4", name: "David Park", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-waitress_107420-12324.jpg"},
{
id: "t5",
name: "Elena Rodriguez",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-standing-with-arms-crossed_107420-12323.jpg?_wi=2",
},
id: "t5", name: "Elena Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-standing-with-arms-crossed_107420-12323.jpg?_wi=2"},
]}
cardTitle="What People Say"
cardTag="Reviews"
@@ -164,11 +119,11 @@ export default function LandingPage() {
<ContactCenter
useInvertedBackground={false}
background={{
variant: "plain",
}}
variant: "plain"}}
tag="Visit Us"
title="El Guerrero Taco"
description="Join us for an authentic dining experience, or order online to get your favorites delivered to your door."
buttonText="Get Directions"
/>
</div>
@@ -179,18 +134,14 @@ export default function LandingPage() {
socialLinks={[
{
icon: Instagram,
href: "#",
ariaLabel: "Instagram",
},
href: "#", ariaLabel: "Instagram"},
{
icon: Facebook,
href: "#",
ariaLabel: "Facebook",
},
href: "#", ariaLabel: "Facebook"},
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}