From ef1ae2347e695f24f583f3616d6fcdf18c3ab9d6 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 14:46:53 +0000 Subject: [PATCH] Add src/app/booking/page.tsx --- src/app/booking/page.tsx | 69 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 src/app/booking/page.tsx diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx new file mode 100644 index 0000000..7ddd070 --- /dev/null +++ b/src/app/booking/page.tsx @@ -0,0 +1,69 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; + +export default function BookingPage() { + return ( + + + + +
+

Book Your Appointment

+

Call us directly to schedule your visit

+ + Call Now: (786) 378-0141 + +
+

Visit us at:

+

10693 Wiles Rd, Coral Springs, FL 33076

+
+
+ + +
+
+ ); +} \ No newline at end of file