diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx new file mode 100644 index 0000000..d57d556 --- /dev/null +++ b/src/app/booking/page.tsx @@ -0,0 +1,95 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; +import { Calendar, Clock, User } from "lucide-react"; + +export default function BookingPage() { + return ( + + + +
+ +
+ + +
+ ); +}