diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx new file mode 100644 index 0000000..8951b91 --- /dev/null +++ b/src/app/booking/page.tsx @@ -0,0 +1,187 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { Sparkles } from 'lucide-react'; +import { useState } from 'react'; + +export const metadata = { + title: "Book Your Event - Paintasy Face and Body Art", description: "Book professional face painting and body art services for your event. Easy booking form, flexible scheduling, and transparent pricing.", keywords: "book face painting, event booking, face painter booking, party entertainment booking"}; + +export default function BookingPage() { + const [formData, setFormData] = useState({ + name: '', + email: '', + phone: '', + eventDate: '', + eventType: '', + guestCount: '', + eventDuration: '', + message: '', + }); + + const handleFormSubmit = (data: Record) => { + console.log('Booking form submitted:', data); + setFormData({ + name: '', + email: '', + phone: '', + eventDate: '', + eventType: '', + guestCount: '', + eventDuration: '', + message: '', + }); + }; + + const navItems = [ + { name: "Home", id: "/" }, + { name: "Services", id: "/#services" }, + { name: "Gallery", id: "/gallery" }, + { name: "Packages", id: "/#packages-home" }, + { name: "About", id: "/#about-home" }, + { 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-home" }, + { label: "Gallery", href: "/gallery" }, + { label: "Packages", href: "/#packages-home" }, + { label: "FAQ", href: "/#faq-home" }, + { 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" }, + ], + }, + ]; + + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file