diff --git a/src/app/patient-intake/page.tsx b/src/app/patient-intake/page.tsx new file mode 100644 index 0000000..c590828 --- /dev/null +++ b/src/app/patient-intake/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 PatientIntakePage() { + return ( + + +
+

Patient Intake Form

+

Please complete our comprehensive patient information form to help us better understand your health history and needs. This form is HIPAA compliant to ensure your privacy.

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