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 diff --git a/src/app/bio/page.tsx b/src/app/bio/page.tsx new file mode 100644 index 0000000..32dcc7e --- /dev/null +++ b/src/app/bio/page.tsx @@ -0,0 +1,22 @@ +"use client"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function BioPage() { + return ( + + + + + + ); +} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..8418422 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,57 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function ContactPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file diff --git a/src/app/insurance/page.tsx b/src/app/insurance/page.tsx new file mode 100644 index 0000000..1669be1 --- /dev/null +++ b/src/app/insurance/page.tsx @@ -0,0 +1,30 @@ +"use client"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function InsurancePage() { + return ( + + + + + + ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 041662d..541dd27 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,13 +31,13 @@ export default function LandingPage() { @@ -47,7 +47,7 @@ export default function LandingPage() { description="Real Relief. Proven Results. Personalized treatment plans from board-certified specialists. Most patients see improvement within weeks." buttons={[ { - text: "Schedule Your Consultation", href: "#contact"}, + text: "Schedule Your Consultation", href: "/contact"}, ]} slides={[ { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CzhjTNYVTYojCcFQqMIQz2aM41/uploaded-1777395128738-qxnj3xvl.png?_wi=1", imageAlt: "Forsyth Spinal Clinic" }, @@ -64,7 +64,7 @@ export default function LandingPage() { @@ -144,7 +144,7 @@ export default function LandingPage() { useInvertedBackground={false} background={{ variant: "canvas-reveal" }} text="Ready to take control of your spinal health? Schedule your free initial consultation with Dr. Seaney today." - buttons={[{ text: "Call (770) 888-9265", href: "tel:7708889265" }]} + buttons={[{ text: "Book Now", href: "/contact" }]} /> @@ -152,9 +152,9 @@ export default function LandingPage() { 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 diff --git a/src/app/treatments/page.tsx b/src/app/treatments/page.tsx new file mode 100644 index 0000000..3177f67 --- /dev/null +++ b/src/app/treatments/page.tsx @@ -0,0 +1,29 @@ +"use client"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function ServicesPage() { + return ( + + + + + + ); +}