4 Commits

Author SHA1 Message Date
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

View File

@@ -122,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"
@@ -145,10 +149,20 @@ 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>
</ThemeProvider>
);
}
}