Merge version_3 into main #5

Merged
bender merged 1 commits from version_3 into main 2026-04-17 05:58:47 +00:00

View File

@@ -104,29 +104,32 @@ export default function LandingPage() {
animationType="blur-reveal"
useInvertedBackground={false}
testimonials={[
{ id: "1", name: "Alice W.", handle: "@alice", testimonial: "The ambiance and the food were perfectly balanced. A truly delightful experience!" },
{ id: "2", name: "Bob K.", handle: "@bob", testimonial: "The best culinary destination in the city. Highly recommend the signature courses." }
{ id: "1", name: "Sarah M.", handle: "@sarahfoodie", testimonial: "The signature tasting menu is a masterpiece. A perfect date night spot!" },
{ id: "2", name: "James T.", handle: "@jamest", testimonial: "Exquisite flavors and impeccable service. The seasonal menu is always a surprise." },
{ id: "3", name: "Elena R.", handle: "@elena_dine", testimonial: "Finally, a restaurant that focuses on both atmosphere and authentic taste." }
]}
/>
</div>
<div id="faq" data-section="faq">
<FaqDouble
title="Common Questions"
description="Everything you need to know about your dining experience at Time To Taste."
title="Dining Essentials"
description="Frequently asked questions about hours, reservations, and our menu."
textboxLayout="split"
faqsAnimation="slide-up"
useInvertedBackground={false}
faqs={[
{ id: "1", title: "Do you accept reservations?", content: "Yes, we recommend booking in advance via our website." },
{ id: "2", title: "Is there a dress code?", content: "We encourage smart-casual attire for all guests." }
{ id: "1", title: "What are your opening hours?", content: "We are open Tuesday through Sunday from 5:00 PM to 11:00 PM. Closed on Mondays." },
{ id: "2", title: "How do I make a reservation?", content: "You can book through our online reservation portal on this site or call us directly during business hours." },
{ id: "3", title: "Do you accommodate dietary restrictions?", content: "We offer vegetarian, gluten-free, and vegan options. Please mention your requirements when booking." },
{ id: "4", title: "Is there a dress code?", content: "We invite you to dress in business casual attire to enjoy the full experience." }
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
text="Book your table today and experience the art of taste."
text="Located in the heart of the city. Join us for an unforgettable meal."
background={{ variant: "gradient-bars" }}
buttons={[{ text: "Book Table", href: "#contact" }]}
useInvertedBackground={false}
@@ -136,11 +139,11 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Time To Taste"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
leftLink={{ text: "Reservations: (555) 123-4567", href: "tel:5551234567" }}
rightLink={{ text: "123 Culinary Ave, Food City", href: "#" }}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}