From 9214d20c8a7b907d4be338252def28eb2a2531da Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 28 Apr 2026 17:00:44 +0000 Subject: [PATCH] Add src/app/appointment/page.tsx --- src/app/appointment/page.tsx | 37 ++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/app/appointment/page.tsx diff --git a/src/app/appointment/page.tsx b/src/app/appointment/page.tsx new file mode 100644 index 0000000..60a1833 --- /dev/null +++ b/src/app/appointment/page.tsx @@ -0,0 +1,37 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function AppointmentPage() { + return ( + + +
+

Request an Appointment

+

Select your preferred date and time for your consultation. Our team will review your request and confirm shortly.

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