Merge version_3 into main #5
@@ -1384,4 +1384,4 @@ export default function RootLayout({
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -8,13 +8,13 @@ import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
||||
import TeamCardOne from '@/components/sections/team/TeamCardOne';
|
||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { Award, Check, ChefHat, Clock, Flame, Fish, Globe, Heart, Info, Leaf, Mail, Medal, Package, Sparkles, Star, TrendingUp, Utensils, Zap, Instagram, Facebook, Crown, Phone } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
const handleReservationSubmit = (email: string) => {
|
||||
console.log('Reservation email:', email);
|
||||
const handleReservationSubmit = (data: Record<string, string>) => {
|
||||
console.log('Reservation data:', data);
|
||||
};
|
||||
|
||||
return (
|
||||
@@ -209,20 +209,23 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="Book Your Experience"
|
||||
title="Secure Your Reservation"
|
||||
description="Reserve your table at TakaHisa and confirm your spot at Dubai's premier Japanese fine dining destination. We'll contact you to finalize your preferred date and menu selection."
|
||||
tagIcon={Phone}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
<ContactSplitForm
|
||||
title="Reserve Your Table"
|
||||
description="Secure your spot at TakaHisa with our elegant reservation form. Our concierge team will contact you to confirm your preferred date and customize your culinary experience."
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/gourmet-meal-served-with-wine_23-2148516896.jpg"
|
||||
imageAlt="TakaHisa Restaurant Interior"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Enter your email address"
|
||||
buttonText="Confirm Reservation"
|
||||
termsText="By confirming your reservation, you agree to our cancellation policy. Contact reservations@takahisa.ae for modifications or cancellations."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
||||
{ name: "phone", type: "tel", placeholder: "+971 (Your Phone Number)", required: true },
|
||||
{ name: "date", type: "date", placeholder: "Preferred Date", required: true },
|
||||
{ name: "guests", type: "number", placeholder: "Number of Guests", required: true }
|
||||
]}
|
||||
textarea={{ name: "preferences", placeholder: "Dietary preferences or special requests...", rows: 4, required: false }}
|
||||
onSubmit={handleReservationSubmit}
|
||||
/>
|
||||
</div>
|
||||
@@ -239,4 +242,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user