From ffad65dfc5f8073f6559963ee3161dc791d875ed Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 05:30:36 +0000 Subject: [PATCH] Update src/app/booking/page.tsx --- src/app/booking/page.tsx | 300 ++++++++++++++++++++++++++++++--------- 1 file changed, 236 insertions(+), 64 deletions(-) diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx index 23db138..a280845 100644 --- a/src/app/booking/page.tsx +++ b/src/app/booking/page.tsx @@ -2,19 +2,17 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import ContactForm from '@/components/form/ContactForm'; -import ContactText from '@/components/sections/contact/ContactText'; +import { useState } from 'react'; +import { Calendar, Clock, Users, Palette, Phone, Mail } from 'lucide-react'; import FooterSimple from '@/components/sections/footer/FooterSimple'; -import { Calendar } from 'lucide-react'; export default function BookingPage() { const navItems = [ { name: "Home", id: "home" }, { name: "Services", id: "services" }, { name: "Gallery", id: "/gallery" }, - { name: "Packages", id: "packages" }, + { name: "Packages", id: "/packages" }, { name: "About", id: "about" }, - { name: "Book Event", id: "/booking" }, { name: "Contact", id: "/contact" }, ]; @@ -50,12 +48,54 @@ export default function BookingPage() { title: "Service Areas", items: [ { label: "Local Events", href: "/contact" }, { label: "Regional Coverage", href: "/contact" }, - { label: "Book Now", href: "/booking" }, + { label: "Book Now", href: "/packages" }, { label: "Get Quote", href: "/contact" }, ], }, ]; + const [formData, setFormData] = useState({ + fullName: '', + email: '', + phone: '', + eventType: '', + eventDate: '', + eventTime: '', + guestCount: '', + serviceType: '', + additionalNotes: '', + }); + + const [submitted, setSubmitted] = useState(false); + + const handleChange = (e: React.ChangeEvent) => { + const { name, value } = e.target; + setFormData(prev => ({ + ...prev, + [name]: value + })); + }; + + const handleSubmit = (e: React.FormEvent) => { + e.preventDefault(); + console.log('Form submitted:', formData); + setSubmitted(true); + setTimeout(() => { + setFormData({ + fullName: '', + email: '', + phone: '', + eventType: '', + eventDate: '', + eventTime: '', + guestCount: '', + serviceType: '', + additionalNotes: '', + }); + setSubmitted(false); + }, 3000); + }; + return ( -
-
- { - console.log('Booking inquiry from:', email); - }} - className="w-full" - titleClassName="text-4xl font-extrabold mb-4" - descriptionClassName="text-lg opacity-90 mb-8" - tagClassName="mb-4" - formWrapperClassName="mt-8" - /> +
+
+

Book Your Event

+

Complete this form to request a booking for professional face and body art services at your event. We'll get back to you within 24 hours with availability and pricing details.

-
-
-
-

Our Booking Process

-
-
-
1
-

Submit Inquiry

-

Fill out our quick booking form with your event details and preferred date.

-
-
-
2
-

Get Quote

-

We'll review your event details and send you a custom quote within 24 hours.

-
-
-
3
-

Confirm Booking

-

Once confirmed, we'll send you all the details and setup information for your event.

+ {submitted && ( +
+

Thank you! Your booking request has been submitted. We'll contact you soon to confirm details.

+
+ )} + +
+ {/* Contact Information Section */} +
+

+ + Contact Information +

+ +
+
+ + +
+ +
+ + +
+ +
+ + +
-
-
-
- + {/* Event Details Section */} +
+

+ + Event Details +

+ +
+
+ + +
+ +
+
+ + +
+ +
+ + +
+
+ +
+ + +
+
+
+ + {/* Service Selection Section */} +
+

+ + Service Selection +

+ +
+ + +
+
+ + {/* Additional Notes Section */} +
+ +