Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bb006a1ef9 | |||
| 7413847186 | |||
| 3e11ac8cb3 | |||
| a9adb289a0 | |||
| 6829b441c2 | |||
| 0b54860d84 | |||
| d9838312b8 | |||
| 12538dce5f |
1416
src/app/layout.tsx
1416
src/app/layout.tsx
File diff suppressed because it is too large
Load Diff
@@ -8,11 +8,15 @@ 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 } from 'lucide-react';
|
||||
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 = (data: Record<string, string>) => {
|
||||
console.log('Reservation data:', data);
|
||||
};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
@@ -205,20 +209,24 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="Newsletter"
|
||||
title="Stay Connected"
|
||||
description="Subscribe to our newsletter for exclusive menu previews, special events, and culinary insights from our master chefs"
|
||||
tagIcon={Mail}
|
||||
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="Subscribe"
|
||||
termsText="We respect your privacy. You can unsubscribe at any time by contacting reservations@takahisa.ae"
|
||||
buttonText="Confirm Reservation"
|
||||
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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user