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