diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx new file mode 100644 index 0000000..4fe4fbb --- /dev/null +++ b/src/app/booking/page.tsx @@ -0,0 +1,318 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +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: "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" }, + ]; + + const footerColumns = [ + { + title: "Services", items: [ + { label: "Kids Party Face Painting", href: "/services" }, + { label: "Festival Face Art", href: "/services" }, + { label: "Corporate Events", href: "/services" }, + { label: "Body Painting", href: "/services" }, + { label: "Custom Designs", href: "/services" }, + ], + }, + { + title: "Company", items: [ + { label: "About Us", href: "/about" }, + { label: "Gallery", href: "/gallery" }, + { label: "Packages", href: "/packages" }, + { label: "FAQ", href: "#faq" }, + { label: "Contact", href: "/contact" }, + ], + }, + { + title: "Connect", items: [ + { label: "Instagram", href: "https://instagram.com" }, + { label: "Facebook", href: "https://facebook.com" }, + { label: "TikTok", href: "https://tiktok.com" }, + { label: "Email", href: "mailto:paintasy@events.com" }, + { label: "Phone", href: "tel:+15551234567" }, + ], + }, + { + title: "Service Areas", items: [ + { label: "Local Events", href: "/contact" }, + { label: "Regional Coverage", href: "/contact" }, + { label: "Book Now", href: "/booking" }, + { label: "Get Quote", href: "/contact" }, + ], + }, + ]; + + 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 ( + + + +
+
+

+ 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. +

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