16 Commits

Author SHA1 Message Date
50af79a714 Merge version_11 into main
Merge version_11 into main
2026-04-22 08:55:51 +00:00
b4cb347ee8 Update src/app/page.tsx 2026-04-22 08:55:48 +00:00
02447173ee Merge version_10 into main
Merge version_10 into main
2026-04-22 08:54:03 +00:00
574dea4c6b Update src/app/page.tsx 2026-04-22 08:53:57 +00:00
d4928418d4 Merge version_9 into main
Merge version_9 into main
2026-04-22 08:53:23 +00:00
bde0de22ab Update src/app/page.tsx 2026-04-22 08:53:20 +00:00
51e25cb4d7 Merge version_8 into main
Merge version_8 into main
2026-04-22 08:49:15 +00:00
e2eabfba35 Update src/app/page.tsx 2026-04-22 08:49:11 +00:00
181ae19a88 Merge version_7 into main
Merge version_7 into main
2026-04-22 08:48:15 +00:00
d2876bda4a Update src/app/page.tsx 2026-04-22 08:48:12 +00:00
779e441cc9 Merge version_6 into main
Merge version_6 into main
2026-04-22 08:23:18 +00:00
6936557178 Update src/app/page.tsx 2026-04-22 08:23:15 +00:00
8e975176fe Merge version_5 into main
Merge version_5 into main
2026-04-22 08:22:21 +00:00
b5369fdc0f Update src/app/page.tsx 2026-04-22 08:22:18 +00:00
b0cfc307b6 Update src/app/page.tsx 2026-04-22 08:16:30 +00:00
d5b5753b50 Update src/app/page.tsx 2026-04-22 08:14:47 +00:00

View File

@@ -44,8 +44,11 @@ export default function LandingPage() {
<HeroOverlayTestimonial
title="Authentic Soul, Modern Brasserie"
description="El Gran Toro elevates traditional Mexican flavors with contemporary culinary techniques in an inviting, elegant brasserie atmosphere."
testimonials={[]}
buttons={[{ text: "Reserve a Table", href: "#contact" }]}
testimonials={[
{ name: "Elena Rodriguez", handle: "@elena_foodie", testimonial: "The wagyu tacos are an absolute revelation. Truly the best Mexican dining I've experienced in years.", rating: 5 },
{ name: "Marcus Thorne", handle: "@mthorne_travels", testimonial: "A perfect fusion of traditional roots and modern elegance. The atmosphere is just as vibrant as the menu.", rating: 5 }
]}
buttons={[{ text: "Book Your Table", href: "#contact" }]}
imageSrc="http://img.b2bpic.net/free-photo/adults-enjoying-mexican-food_23-2149663829.jpg?_wi=1"
/>
</div>
@@ -105,7 +108,11 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive
textboxLayout="default"
testimonials={[]}
testimonials={[
{ id: "t1", name: "Sofia Valdes", date: "Oct 2024", title: "Exceptional flavors!", quote: "The mole negro took me straight back to my grandmother's kitchen. A must-visit gem.", tag: "Authentic", avatarSrc: "https://i.pravatar.cc/150?u=sofia" },
{ id: "t2", name: "Liam O'Connor", date: "Sep 2024", title: "Perfect atmosphere", quote: "Stunning decor and the best margaritas in the city. The service was impeccable and friendly.", tag: "Atmosphere", avatarSrc: "https://i.pravatar.cc/150?u=liam" },
{ id: "t3", name: "Amara Okafor", date: "Aug 2024", title: "Innovative dishes", quote: "Loved the wagyu tacos. A clever, modern twist on Mexican classics that really works.", tag: "Culinary", avatarSrc: "https://i.pravatar.cc/150?u=amara" }
]}
title="What Guests Are Saying"
description="Authentic experiences that keep our guests coming back for more."
useInvertedBackground={false}
@@ -115,7 +122,11 @@ export default function LandingPage() {
<div id="faq" data-section="faq">
<FaqDouble
textboxLayout="split"
faqs={[]}
faqs={[
{ id: "faq-1", title: "Do you take reservations?", content: "Yes, we highly recommend booking in advance through our website or calling our front desk to ensure your preferred time." },
{ id: "faq-2", title: "Can you accommodate dietary restrictions?", content: "We pride ourselves on inclusive dining. Please notify our staff of any allergies or dietary requirements when booking, and our chefs will happily customize your order." },
{ id: "faq-3", title: "Is there parking available?", content: "We offer complimentary valet parking for all guests, located directly at the entrance of our brasserie." }
]}
title="Frequently Asked Questions"
description="Everything you need to know for your perfect visit."
faqsAnimation="slide-up"
@@ -126,7 +137,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactSplitForm
title="Visit El Gran Toro"
description="We're located in the heart of downtown."
description="We're located in the heart of downtown. Call us at +18457456479"
inputs={[
{ name: "name", type: "text", placeholder: "Your Name" },
{ name: "email", type: "email", placeholder: "Your Email" }
@@ -138,7 +149,17 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="El Gran Toro"
columns={[]}
columns={[
{
title: "Navigate",
items: [
{ label: "Reservations", href: "#contact" },
{ label: "Menu", href: "#products" },
{ label: "Location", href: "#contact" },
{ label: "Careers", href: "#careers" }
]
}
]}
/>
</div>
</ReactLenis>