1 Commits

Author SHA1 Message Date
83a37e4b95 Update src/app/page.tsx 2026-03-09 10:18:21 +00:00

View File

@@ -8,6 +8,7 @@ import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterMedia from '@/components/sections/footer/FooterMedia'; import FooterMedia from '@/components/sections/footer/FooterMedia';
import { MapPin, Phone, Clock } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -109,24 +110,58 @@ export default function LandingPage() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplitForm <div className="space-y-12">
title="Reserve Your Culinary Experience" <ContactSplitForm
description="Book your table at Artisan Table. Our team looks forward to welcoming you for an exceptional evening of fine dining." title="Reserve Your Culinary Experience"
inputs={[ description="Book your table at Artisan Table. Our team looks forward to welcoming you for an exceptional evening of fine dining."
{ name: "name", type: "text", placeholder: "Your Name", required: true }, inputs={[
{ name: "email", type: "email", placeholder: "Your Email", required: true }, { name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "date", type: "date", placeholder: "Preferred Date", required: true }, { name: "email", type: "email", placeholder: "Your Email", required: true },
{ name: "time", type: "time", placeholder: "Preferred Time", required: true } { name: "date", type: "date", placeholder: "Preferred Date", required: true },
]} { name: "time", type: "time", placeholder: "Preferred Time", required: true }
textarea={{ name: "message", placeholder: "Special requests or dietary preferences...", rows: 4, required: false }} ]}
imageSrc="http://img.b2bpic.net/free-vector/lovely-restaurant-composition_23-2147913198.jpg?_wi=2" textarea={{ name: "message", placeholder: "Special requests or dietary preferences...", rows: 4, required: false }}
imageAlt="Restaurant entrance" imageSrc="http://img.b2bpic.net/free-vector/lovely-restaurant-composition_23-2147913198.jpg?_wi=2"
mediaAnimation="slide-up" imageAlt="Restaurant entrance"
mediaPosition="right" mediaAnimation="slide-up"
buttonText="Reserve Table" mediaPosition="right"
useInvertedBackground={false} buttonText="Reserve Table"
onSubmit={(data) => console.log("Reservation form submitted:", data)} useInvertedBackground={false}
/> onSubmit={(data) => console.log("Reservation form submitted:", data)}
/>
<div className="grid grid-cols-1 md:grid-cols-3 gap-8 px-4 md:px-0">
<div className="flex flex-col items-center text-center space-y-4">
<div className="p-4 bg-amber-700 rounded-lg">
<MapPin className="w-8 h-8 text-white" />
</div>
<div>
<h3 className="text-xl font-semibold text-amber-900 mb-2">Location</h3>
<p className="text-amber-800">1247 Culinary Lane<br />Gourmet District<br />New York, NY 10001</p>
</div>
</div>
<div className="flex flex-col items-center text-center space-y-4">
<div className="p-4 bg-amber-700 rounded-lg">
<Phone className="w-8 h-8 text-white" />
</div>
<div>
<h3 className="text-xl font-semibold text-amber-900 mb-2">Phone</h3>
<p className="text-amber-800"><a href="tel:+1-555-123-4567" className="hover:underline">+1 (555) 123-4567</a></p>
</div>
</div>
<div className="flex flex-col items-center text-center space-y-4">
<div className="p-4 bg-amber-700 rounded-lg">
<Clock className="w-8 h-8 text-white" />
</div>
<div>
<h3 className="text-xl font-semibold text-amber-900 mb-2">Hours</h3>
<p className="text-amber-800">Tue - Thu: 5:00 PM - 11:00 PM<br />Fri - Sat: 5:00 PM - 12:00 AM<br />Sunday: 5:00 PM - 10:00 PM<br />Monday: Closed</p>
</div>
</div>
</div>
</div>
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
@@ -162,4 +197,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }