diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx index 3bd567b..4fe4fbb 100644 --- a/src/app/booking/page.tsx +++ b/src/app/booking/page.tsx @@ -2,19 +2,30 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterSimple from '@/components/sections/footer/FooterSimple'; -import { Calendar, Mail, Phone, MapPin } from 'lucide-react'; +import { useState } from 'react'; +import { Heart, Mail, Phone, MapPin, Facebook, Instagram, Twitter } from 'lucide-react'; export default function BookingPage() { + const [formData, setFormData] = useState({ + name: '', + email: '', + phone: '', + eventDate: '', + eventType: '', + guestCount: '', + message: '', + }); + const navItems = [ - { name: "Home", id: "/" }, + { name: "Home", id: "home" }, { name: "Services", id: "services" }, { name: "Gallery", id: "gallery" }, { name: "Packages", id: "packages" }, { name: "About", id: "about" }, - { name: "Booking", id: "/booking" }, - { name: "Contact", id: "/contact" }, + { name: "Booking", id: "booking" }, + { name: "Contact", id: "contact" }, ]; const footerColumns = [ @@ -55,9 +66,24 @@ export default function BookingPage() { }, ]; - const handleBookingSubmit = (data: Record) => { - console.log("Booking inquiry:", data); - // Handle form submission + const handleFormChange = (e: React.ChangeEvent) => { + const { name, value } = e.target; + setFormData(prev => ({ ...prev, [name]: value })); + }; + + const handleSubmit = (e: React.FormEvent) => { + e.preventDefault(); + console.log('Booking form submitted:', formData); + alert('Thank you for your booking request! We will contact you soon.'); + setFormData({ + name: '', + email: '', + phone: '', + eventDate: '', + eventType: '', + guestCount: '', + message: '', + }); }; return ( @@ -82,58 +108,197 @@ export default function BookingPage() { /> -
- +
+
+

+ Book Your Event +

+

+ Request a quote for professional face painting and body art services. Fill out the form below and we'll get back to you with availability and pricing. +

+
+
+ +
+
+
+
+
+
+ + +
+
+ + +
+
+ +
+
+ + +
+
+ + +
+
+ +
+
+ + +
+
+ + +
+
+ +
+ +