3 Commits

Author SHA1 Message Date
896d7c163f Merge version_4 into main
Merge version_4 into main
2026-03-08 05:18:34 +00:00
21b281f152 Update src/app/page.tsx 2026-03-08 05:18:31 +00:00
6ce70f39ed Update src/app/layout.tsx 2026-03-08 05:18:30 +00:00
2 changed files with 1378 additions and 11 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -10,7 +10,7 @@ import TestimonialCardFifteen from '@/components/sections/testimonial/Testimonia
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Phone, Users, Wine, Sparkles } from 'lucide-react';
import { Phone, Users, Wine, Sparkles, MapPin, Clock, Mail } from 'lucide-react';
export default function LandingPage() {
return (
@@ -156,12 +156,12 @@ export default function LandingPage() {
useInvertedBackground={true}
animationType="slide-up"
faqs={[
{ id: "1", title: "What are your operating hours?", content: "Tuesday through Sunday: Dinner from 5:00 PM to 11:00 PM. Closed Mondays. We offer both walk-in seating (subject to availability) and reservations." },
{ id: "2", title: "Do you offer private events?", content: "Yes! We host private dining experiences for up to 40 guests. Our team will work with you to create a bespoke menu and atmosphere for your special occasion." },
{ id: "3", title: "Are there vegetarian options?", content: "Absolutely. Our chef prepares creative vegetarian dishes using seasonal produce. Please mention dietary preferences when reserving." },
{ id: "4", title: "What is your cancellation policy?", content: "We request 48 hours notice for cancellations. Reservations held for 15 minutes after the booked time. Call us immediately if running late." },
{ id: "5", title: "Do you accommodate food allergies?", content: "We take allergies very seriously. Please inform us during reservation and again when ordering. Our chef will customize dishes accordingly." },
{ id: "6", title: "Is there valet parking available?", content: "Yes, complimentary valet parking is available for dinner guests. Street parking is also available nearby." }
{ id: "1", title: "What are your operating hours?", content: "<p><strong>Dinner Service:</strong></p><p>Tuesday through Sunday: 5:00 PM to 11:00 PM</p><p><strong>Closed Mondays</strong></p><p>We offer both walk-in seating (subject to availability) and reservations. We recommend reserving in advance, especially for weekends and special occasions.</p>" },
{ id: "2", title: "How do I make a reservation?", content: "<p>You can reserve your table by:</p><ul><li>Calling us at +1-555-123-4567</li><li>Emailing hello@lecroissant.com</li><li>Visiting us in person</li></ul><p>We request 48 hours notice for large groups (6+ guests). Walk-ins are welcome subject to availability.</p>" },
{ id: "3", title: "What is your location and how do I find parking?", content: "<p><strong>Address:</strong> 42 Rue de Rivoli, Paris District</p><p><strong>Parking:</strong> Complimentary valet parking is available for dinner guests. Street parking is also available nearby. We recommend valet for your convenience.</p><p><strong>Hours:</strong> Valet service available during dinner service.</p>" },
{ id: "4", title: "Do you offer private events?", content: "<p>Yes! We host private dining experiences for up to 40 guests. Our team will work with you to create a bespoke menu and atmosphere for your special occasion. Contact us to discuss your event details and availability.</p>" },
{ id: "5", title: "Are there vegetarian options?", content: "<p>Absolutely. Our chef prepares creative vegetarian dishes using seasonal produce. We also accommodate vegan and other dietary preferences. Please mention any dietary requirements when making your reservation, and we'll ensure an exceptional dining experience.</p>" },
{ id: "6", title: "What is your cancellation policy?", content: "<p>We request 48 hours notice for cancellations. Reservations are held for 15 minutes after the booked time. If you're running late, please call us immediately at +1-555-123-4567. We appreciate your consideration!</p>" }
]}
/>
</div>
@@ -189,9 +189,9 @@ export default function LandingPage() {
},
{
title: "Contact", items: [
{ label: "Phone", href: "tel:+1-555-123-4567" },
{ label: "Email", href: "mailto:hello@lecroissant.com" },
{ label: "Address", href: "#" },
{ label: "Phone: +1-555-123-4567", href: "tel:+1-555-123-4567" },
{ label: "Email: hello@lecroissant.com", href: "mailto:hello@lecroissant.com" },
{ label: "42 Rue de Rivoli, Paris", href: "#" },
{ label: "Follow Us", href: "#" }
]
}
@@ -200,4 +200,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}