diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx index e2a06be..dd9b4bf 100644 --- a/src/app/booking/page.tsx +++ b/src/app/booking/page.tsx @@ -5,8 +5,18 @@ import ReactLenis from "lenis/react"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { useState } from "react"; export default function BookingPage() { + const [isBooking, setIsBooking] = useState(false); + + const handleBookingClick = () => { + setIsBooking(true); + // Add logic to trigger booking modal or scroll to form + const section = document.getElementById('booking-form'); + if (section) section.scrollIntoView({ behavior: 'smooth' }); + }; + return (

Calendar & Availability

-
+
[Calendar Widget Placeholder]
+
-
+

Booking Details

@@ -54,7 +70,12 @@ export default function BookingPage() { - +