Merge version_2 into main #4

Merged
bender merged 7 commits from version_2 into main 2026-04-28 17:00:50 +00:00
7 changed files with 222 additions and 10 deletions

View File

@@ -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 (
<ThemeProvider>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Patient Forms", id: "/patient-intake" },
{ name: "Appointment", id: "/appointment" },
]}
brandName="Forsyth Spinal"
/>
<div className="pt-32 pb-20 px-6 max-w-4xl mx-auto">
<h1 className="text-4xl font-bold mb-8">Request an Appointment</h1>
<p className="text-lg mb-6">Select your preferred date and time for your consultation. Our team will review your request and confirm shortly.</p>
<ContactCenter
tag="Schedule Now"
title="Scheduling Interface"
description="Provide your preferred appointment details below."
background={{ variant: "plain" }}
/>
</div>
<FooterBaseCard
logoText="Forsyth Spinal"
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Patient Forms", href: "/patient-intake" }, { label: "Appointment", href: "/appointment" }] }
]}
/>
</ThemeProvider>
);
}

22
src/app/bio/page.tsx Normal file
View File

@@ -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 (
<ThemeProvider>
<NavbarLayoutFloatingInline
navItems={[{name: "Treatments", id: "/treatments"}, {name: "Insurance", id: "/insurance"}, {name: "Bio", id: "/bio"}]}
brandName="Forsyth Spinal"
button={{ text: "Book Now", href: "/contact" }}
/>
<InlineImageSplitTextAbout
heading={[{ type: "text", content: "Meet Dr. Shawn Seaney" }]}
useInvertedBackground={false}
/>
<FooterBaseCard logoText="Forsyth Spinal" columns={[]} />
</ThemeProvider>
);
}

57
src/app/contact/page.tsx Normal file
View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="small"
sizing="largeSmallSizeLargeTitles"
background="fluid"
cardStyle="gradient-mesh"
primaryButtonStyle="flat"
secondaryButtonStyle="glass"
headingFontWeight="extrabold"
>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Treatments", id: "/" },
{ name: "About", id: "/" },
{ name: "Testimonials", id: "/" },
{ name: "Contact", id: "/contact" },
]}
brandName="Forsyth Spinal"
button={{ text: "Book Now", href: "/contact" }}
/>
<div className="pt-32 pb-16">
<ContactCenter
tag="Secure Messaging"
title="HIPAA-Compliant Contact"
description="Your health information is secure. Use the form below for confidential communication with our clinical team."
background={{ variant: "canvas-reveal" }}
buttonText="Send Secure Message"
/>
</div>
<FooterBaseCard
logoText="Forsyth Spinal"
columns={[
{ title: "Navigation", items: [{ label: "Treatments", href: "/" }, { label: "About", href: "/about" }, { label: "Testimonials", href: "/" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Use", href: "#" }] },
{ title: "Contact", items: [{ label: "Call Us", href: "tel:7708889265" }, { label: "Visit Us", href: "/contact" }] }
]}
copyrightText="© 2025 Forsyth Spinal Rehabilitation"
/>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -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 (
<ThemeProvider>
<NavbarLayoutFloatingInline
navItems={[{name: "Treatments", id: "/treatments"}, {name: "Insurance", id: "/insurance"}, {name: "Bio", id: "/bio"}]}
brandName="Forsyth Spinal"
button={{ text: "Book Now", href: "/contact" }}
/>
<FeatureCardMedia
title="Insurance Accepted"
description="We strive to make quality spinal care accessible. We accept major health insurance providers."
features={[
{ id: "i1", title: "BlueCross BlueShield", description: "In-network provider for most plans.", tag: "Covered", imageSrc: "" },
{ id: "i2", title: "United Healthcare", description: "Accepted for most chiropractic services.", tag: "Covered", imageSrc: "" },
{ id: "i3", title: "Aetna & Cigna", description: "Broad coverage for rehabilitation sessions.", tag: "Covered", imageSrc: "" },
{ id: "i4", title: "Medicare", description: "Available for specific spinal conditions.", tag: "Covered", imageSrc: "" }
]}
animationType="opacity"
textboxLayout="default"
/>
<FooterBaseCard logoText="Forsyth Spinal" columns={[]} />
</ThemeProvider>
);
}

View File

@@ -31,13 +31,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Treatments", id: "#treatments" },
{ name: "About", id: "#about" },
{ name: "Testimonials", id: "#testimonials" },
{ name: "Contact", id: "#contact" },
{ name: "Treatments", id: "/" },
{ name: "About", id: "/" },
{ name: "Testimonials", id: "/" },
{ name: "Contact", id: "/contact" },
]}
brandName="Forsyth Spinal"
button={{ text: "Book Now", href: "#contact" }}
button={{ text: "Book Now", href: "/contact" }}
/>
</div>
@@ -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() {
<InlineImageSplitTextAbout
useInvertedBackground={false}
heading={[{ type: "text", content: "Our Mission & Expertise" }]}
buttons={[{ text: "Learn More", href: "#about" }]}
buttons={[{ text: "Learn More", href: "/about" }]}
/>
</div>
@@ -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" }]}
/>
</div>
@@ -152,9 +152,9 @@ export default function LandingPage() {
<FooterBaseCard
logoText="Forsyth Spinal"
columns={[
{ title: "Navigation", items: [{ label: "Treatments", href: "#treatments" }, { label: "About", href: "#about" }, { label: "Testimonials", href: "#testimonials" }] },
{ title: "Navigation", items: [{ label: "Treatments", href: "/" }, { label: "About", href: "/about" }, { label: "Testimonials", href: "/" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Use", href: "#" }] },
{ title: "Contact", items: [{ label: "Call Us", href: "tel:7708889265" }, { label: "Visit Us", href: "#contact" }] }
{ title: "Contact", items: [{ label: "Call Us", href: "tel:7708889265" }, { label: "Visit Us", href: "/contact" }] }
]}
copyrightText="© 2025 Forsyth Spinal Rehabilitation"
/>

View File

@@ -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 (
<ThemeProvider>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Patient Forms", id: "/patient-intake" },
{ name: "Appointment", id: "/appointment" },
]}
brandName="Forsyth Spinal"
/>
<div className="pt-32 pb-20 px-6 max-w-4xl mx-auto">
<h1 className="text-4xl font-bold mb-8">Patient Intake Form</h1>
<p className="text-lg mb-6">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.</p>
<ContactCenter
tag="Secure Intake"
title="Patient Information"
description="Enter your details to get started with your digital patient file."
background={{ variant: "plain" }}
/>
</div>
<FooterBaseCard
logoText="Forsyth Spinal"
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Patient Forms", href: "/patient-intake" }, { label: "Appointment", href: "/appointment" }] }
]}
/>
</ThemeProvider>
);
}

View File

@@ -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 (
<ThemeProvider>
<NavbarLayoutFloatingInline
navItems={[{name: "Treatments", id: "/treatments"}, {name: "Insurance", id: "/insurance"}, {name: "Bio", id: "/bio"}]}
brandName="Forsyth Spinal"
button={{ text: "Book Now", href: "/contact" }}
/>
<FeatureCardMedia
title="Comprehensive Treatment Offerings"
description="Expertly crafted spinal care and rehabilitation protocols for lasting pain relief and mobility."
features={[
{ id: "s1", title: "Advanced Spinal Adjustment", description: "Precise alignment protocols for immediate relief.", tag: "Spinal", imageSrc: "" },
{ id: "s2", title: "Corrective Exercise Programs", description: "Strengthening the core and supporting muscles.", tag: "Rehab", imageSrc: "" },
{ id: "s3", title: "Neurological Consultation", description: "In-depth evaluation for nerve health and wellness.", tag: "Neurology", imageSrc: "" }
]}
animationType="slide-up"
textboxLayout="default"
/>
<FooterBaseCard logoText="Forsyth Spinal" columns={[]} />
</ThemeProvider>
);
}