diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx index 346466e..298f586 100644 --- a/src/app/booking/page.tsx +++ b/src/app/booking/page.tsx @@ -2,10 +2,16 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import { Mail } from 'lucide-react'; +import ContactForm from "@/components/form/ContactForm"; +import FooterBase from '@/components/sections/footer/FooterBase'; +import { CalendarCheck } from 'lucide-react'; + +export default function BookingPage() { + const handleSubmit = (email: string) => { + console.log("Booking request for:", email); + alert("Vielen Dank für Ihre Anfrage! Wir melden uns in Kürze bei Ihnen."); + }; -export default function OnlineBookingPage() { return ( -
- + +
+ +
); -} \ No newline at end of file +}