diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx index f84b2c6..b12759d 100644 --- a/src/app/booking/page.tsx +++ b/src/app/booking/page.tsx @@ -8,13 +8,6 @@ import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import ReactLenis from "lenis/react"; export default function BookingPage() { - const [price, setPrice] = useState(0); - const services = { - "Exterior Wash": 50, - "Interior Basic": 60, - "Interior Deep": 100 - }; - const handleBooking = (data: Record) => { console.log("Booking details:", data); alert("Booking request received! We will confirm your weekend slot soon. Note: Please ensure water supply access is available for our technicians."); @@ -54,6 +47,7 @@ export default function BookingPage() { label: "Select Service", options: ["Exterior Wash ($50)", "Interior Basic ($60)", "Interior Deep ($100)"] }} + useInvertedBackground={false} buttonText="Confirm Booking" onSubmit={handleBooking} />