From 7aae4a66ac64d3c966168dc03c07dd7ddf4e413a Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 27 Apr 2026 18:26:34 +0000 Subject: [PATCH] Update src/app/booking/page.tsx --- src/app/booking/page.tsx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) 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} /> -- 2.49.1