20 Commits

Author SHA1 Message Date
84800c4b22 Update src/app/page.tsx 2026-04-28 17:53:48 +00:00
352b2b4eae Update src/app/page.tsx 2026-04-28 17:53:20 +00:00
9ddf24ea78 Merge version_2 into main
Merge version_2 into main
2026-04-28 17:01:22 +00:00
234292fa98 Update src/app/treatments/page.tsx 2026-04-28 17:01:18 +00:00
5a1e0a4b93 Update src/app/patient-intake/page.tsx 2026-04-28 17:01:18 +00:00
c8e674d931 Update src/app/insurance/page.tsx 2026-04-28 17:01:18 +00:00
b68d819830 Update src/app/contact/page.tsx 2026-04-28 17:01:17 +00:00
df5dd3e97d Update src/app/bio/page.tsx 2026-04-28 17:01:17 +00:00
b2a4112510 Update src/app/appointment/page.tsx 2026-04-28 17:01:16 +00:00
de18c182a6 Merge version_2 into main
Merge version_2 into main
2026-04-28 17:00:50 +00:00
2193705b72 Add src/app/treatments/page.tsx 2026-04-28 17:00:47 +00:00
ce93f1613f Add src/app/patient-intake/page.tsx 2026-04-28 17:00:46 +00:00
b7439959a3 Update src/app/page.tsx 2026-04-28 17:00:46 +00:00
285eb7c887 Add src/app/insurance/page.tsx 2026-04-28 17:00:45 +00:00
c6e96801c0 Add src/app/contact/page.tsx 2026-04-28 17:00:45 +00:00
45bd6321d2 Add src/app/bio/page.tsx 2026-04-28 17:00:44 +00:00
9214d20c8a Add src/app/appointment/page.tsx 2026-04-28 17:00:44 +00:00
dd8aa037a9 Merge version_1 into main
Merge version_1 into main
2026-04-28 16:53:28 +00:00
f5d592acfb Merge version_1 into main
Merge version_1 into main
2026-04-28 16:53:04 +00:00
a42aa51956 Merge version_1 into main
Merge version_1 into main
2026-04-28 16:52:37 +00:00
7 changed files with 247 additions and 52 deletions

View File

@@ -0,0 +1,30 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ContactText from '@/components/sections/contact/ContactText';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function AppointmentPage() {
return (
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="reveal-blur" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[{ name: "Home", id: "/" }, { name: "Patient Forms", id: "/patient-intake" }, { name: "Appointment", id: "/appointment" }]}
brandName="Forsyth Spinal"
button={{ text: "Contact", href: "/contact" }}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
text="Request an Appointment"
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
<FooterBaseCard
logoText="Forsyth Spinal"
columns={[{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Patient Forms", href: "/patient-intake" }, { label: "Appointment", href: "/appointment" }] }]}
/>
</ThemeProvider>
);
}

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

@@ -0,0 +1,26 @@
"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 defaultButtonVariant="text-stagger" defaultTextAnimation="reveal-blur" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[{name: "Treatments", id: "/treatments"}, {name: "Insurance", id: "/insurance"}, {name: "Bio", id: "/bio"}]}
brandName="Forsyth Spinal"
button={{ text: "Book Now", href: "/contact" }}
/>
</div>
<div id="about" data-section="about">
<InlineImageSplitTextAbout
heading={[{ type: "text", content: "Meet Dr. Shawn Seaney" }]}
useInvertedBackground={false}
/>
</div>
<FooterBaseCard logoText="Forsyth Spinal" columns={[]} />
</ThemeProvider>
);
}

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

@@ -0,0 +1,41 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ContactText from '@/components/sections/contact/ContactText';
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"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[{ name: "Treatments", id: "/treatments" }, { name: "About", id: "/bio" }, { name: "Contact", id: "/contact" }]}
brandName="Forsyth Spinal"
button={{ text: "Book Now", href: "/contact" }}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
text="HIPAA-Compliant Contact"
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
<FooterBaseCard
logoText="Forsyth Spinal"
columns={[{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }] }]}
/>
</ThemeProvider>
);
}

View File

@@ -0,0 +1,33 @@
"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 defaultButtonVariant="text-stagger" defaultTextAnimation="reveal-blur" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[{name: "Treatments", id: "/treatments"}, {name: "Insurance", id: "/insurance"}, {name: "Bio", id: "/bio"}]}
brandName="Forsyth Spinal"
button={{ text: "Book Now", href: "/contact" }}
/>
</div>
<div id="treatments" data-section="treatments">
<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" },
{ id: "i2", title: "United Healthcare", description: "Accepted for most chiropractic services.", tag: "Covered" }
]}
animationType="opacity"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<FooterBaseCard logoText="Forsyth Spinal" columns={[]} />
</ThemeProvider>
);
}

View File

@@ -2,16 +2,16 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import MediaAbout from '@/components/sections/about/MediaAbout';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
export default function LandingPage() {
return (
@@ -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: "treatments" },
{ name: "About", id: "about" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
brandName="Forsyth Spinal"
button={{ text: "Book Now", href: "#contact" }}
button={{ text: "Book Now", href: "/contact" }}
/>
</div>
@@ -46,8 +46,7 @@ export default function LandingPage() {
logoText="Advanced Spinal Care"
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" },
@@ -61,90 +60,93 @@ export default function LandingPage() {
</div>
<div id="about" data-section="about">
<InlineImageSplitTextAbout
<MediaAbout
title="Our Mission & Expertise"
description="Dedicated to providing professional spinal rehabilitation and advanced chiropractic care in the Cumming area. Dr. Shawn Seaney focuses on personalized treatment plans designed for long-term health."
buttons={[{ text: "Learn More", href: "/about" }]}
useInvertedBackground={false}
heading={[{ type: "text", content: "Our Mission & Expertise" }]}
buttons={[{ text: "Learn More", href: "#about" }]}
/>
</div>
<div id="treatments" data-section="treatments">
<FeatureCardMedia
<FeatureCardTwentySeven
animationType="slide-up"
textboxLayout="split"
title="Core Treatment Focus"
description="Evidence-based spinal rehabilitation and neurological care designed to address root causes."
useInvertedBackground={false}
features={[
{ id: "f1", title: "Physiological Therapeutics", description: "Board-certified physical healing protocols.", tag: "Core", imageSrc: "http://img.b2bpic.net/free-photo/doctor-helping-patient-rehabilitation_23-2150321564.jpg", imageAlt: "Doctor helping patient during rehabilitation" },
{ id: "f2", title: "Neurological Care", description: "Specialized training in neurological health.", tag: "Specialty", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CzhjTNYVTYojCcFQqMIQz2aM41/uploaded-1777395128738-qxnj3xvl.png?_wi=2", imageAlt: "Doctor helping patient during rehabilitation" },
{ id: "f3", title: "Sacro-Occipital Technique", description: "Precise biomechanical balancing.", tag: "Technique", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CzhjTNYVTYojCcFQqMIQz2aM41/uploaded-1777395128738-3xvoosu5.jpg?_wi=2", imageAlt: "Doctor helping patient during rehabilitation" }
{ id: "f1", title: "Physiological Therapeutics", descriptions: ["Board-certified physical healing protocols."] },
{ id: "f2", title: "Neurological Care", descriptions: ["Specialized training in neurological health."] },
{ id: "f3", title: "Sacro-Occipital Technique", descriptions: ["Precise biomechanical balancing."] }
]}
title="Core Treatment Focus"
description="Evidence-based spinal rehabilitation and neurological care."
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive
textboxLayout="default"
<TestimonialCardFifteen
testimonial="Forsyth Spinal gave me my life back. The entire team is warm, efficient, and truly gifted at what they do. I saw improvement within just two weeks of starting treatment."
rating={5}
author="Sarah J."
avatars={[{ src: "http://img.b2bpic.net/free-photo/front-view-male-physiotherapist-posing-clinic_23-2148789801.jpg", alt: "Sarah J" }]}
ratingAnimation="blur-reveal"
avatarsAnimation="blur-reveal"
useInvertedBackground={false}
testimonials={[
{ id: "1", name: "Sarah J.", date: "Jan 2025", title: "Chronic Back Pain Relief", quote: "Forsyth Spinal gave me my life back.", tag: "Back Relief", avatarSrc: "http://img.b2bpic.net/free-photo/front-view-male-physiotherapist-posing-clinic_23-2148789801.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CzhjTNYVTYojCcFQqMIQz2aM41/uploaded-1777395128738-qxnj3xvl.png?_wi=3", imageAlt: "patient smiling in office" },
{ id: "2", name: "Michael R.", date: "Feb 2025", title: "Exceptional Care", quote: "Dr. Seaney is truly gifted at what he does.", tag: "Neck Relief", avatarSrc: "http://img.b2bpic.net/free-photo/doctor-helping-patient-rehabilitation_23-2150321565.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CzhjTNYVTYojCcFQqMIQz2aM41/uploaded-1777395128738-3xvoosu5.jpg?_wi=3", imageAlt: "patient smiling in office" },
{ id: "3", name: "Emily P.", date: "Mar 2025", title: "Highly Professional", quote: "The entire team is warm and efficient.", tag: "Rehab Success", avatarSrc: "http://img.b2bpic.net/free-photo/front-view-pretty-female-doctor-holding-her-back-with-pain-yellow-wall_179666-28777.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CzhjTNYVTYojCcFQqMIQz2aM41/uploaded-1777395128738-ki87xfk7.jpg?_wi=2", imageAlt: "patient smiling in office" },
{ id: "4", name: "David W.", date: "Apr 2025", title: "Improved Mobility", quote: "I saw improvement within two weeks.", tag: "Mobility", avatarSrc: "http://img.b2bpic.net/free-photo/medium-shot-physiotherapist-massaging-neck_23-2149047547.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CzhjTNYVTYojCcFQqMIQz2aM41/uploaded-1777395128738-a4j97edw.jpg?_wi=2", imageAlt: "patient smiling in office" },
{ id: "5", name: "Lisa M.", date: "May 2025", title: "Life Changing", quote: "Better quality of life starts here.", tag: "Life Quality", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-male-doctor-patient_1170-2163.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CzhjTNYVTYojCcFQqMIQz2aM41/uploaded-1777395128738-1dyzeod7.jpg?_wi=2", imageAlt: "patient smiling in office" }
]}
title="Patient Success Stories"
description="Empowering our community to live the life they were meant to live."
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardEleven
animationType="scale-rotate"
<MetricCardTwo
animationType="depth-3d"
textboxLayout="split"
gridVariant="bento-grid"
title="Our Clinical Impact"
description="Quantifiable success metrics for our comprehensive patient programs."
useInvertedBackground={false}
metrics={[
{ id: "m1", value: "100%", title: "Patient Commitment", description: "Mission-driven care.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CzhjTNYVTYojCcFQqMIQz2aM41/uploaded-1777395128738-qxnj3xvl.png?_wi=4" },
{ id: "m2", value: "5x", title: "Board Certified", description: "Expert-level credentials.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CzhjTNYVTYojCcFQqMIQz2aM41/uploaded-1777395128738-3xvoosu5.jpg?_wi=4" },
{ id: "m3", value: "20+", title: "Years of Experience", description: "Proven success protocols.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CzhjTNYVTYojCcFQqMIQz2aM41/uploaded-1777395128738-ki87xfk7.jpg?_wi=3" }
{ id: "m1", value: "100%", description: "Patient Commitment Level" },
{ id: "m2", value: "5x", description: "Board Certification Specialty" },
{ id: "m3", value: "20+", description: "Years Professional Experience" }
]}
title="Our Clinical Impact"
description="Quantifiable results for every patient."
/>
</div>
<div id="socialProof" data-section="socialProof">
<SocialProofOne
textboxLayout="default"
useInvertedBackground={false}
names={["BlueCross BlueShield", "United Healthcare", "Aetna", "Cigna", "American Specialty Health", "Medicare", "Medicaid"]}
title="Insurance Providers"
description="We accept major insurance plans for your convenience."
useInvertedBackground={false}
textboxLayout="default"
/>
</div>
<div id="faq" data-section="faq">
<FaqBase
textboxLayout="default"
useInvertedBackground={false}
<FaqSplitText
sideTitle="Frequently Asked Questions"
sideDescription="Answers to get you started on your recovery journey."
faqs={[
{ id: "q1", title: "What insurance do you accept?", content: "We work with major providers like BlueCross, United Healthcare, and Aetna." },
{ id: "q2", title: "How long until I see improvement?", content: "Most patients report measurable improvement within their first few weeks of treatment." },
{ id: "q3", title: "Do I need a referral?", content: "While we accept referrals, you can schedule your initial consultation directly with us." }
]}
title="Frequently Asked Questions"
description="Answers to get you started on your recovery journey."
faqsAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
<ContactSplitForm
title="Get in Touch"
description="Ready to take control of your spinal health? Schedule your free initial consultation today."
inputs={[
{ name: "name", type: "text", placeholder: "Full Name", required: true },
{ name: "email", type: "email", placeholder: "Email Address", required: true }
]}
textarea={{ name: "message", placeholder: "Tell us about your concerns..." }}
buttonText="Submit Request"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CzhjTNYVTYojCcFQqMIQz2aM41/uploaded-1777395128738-qxnj3xvl.png?_wi=1"
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" }]}
/>
</div>
@@ -162,4 +164,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -0,0 +1,30 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ContactText from '@/components/sections/contact/ContactText';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function PatientIntakePage() {
return (
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="reveal-blur" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[{ name: "Home", id: "/" }, { name: "Patient Forms", id: "/patient-intake" }, { name: "Appointment", id: "/appointment" }]}
brandName="Forsyth Spinal"
button={{ text: "Contact", href: "/contact" }}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
text="Patient Intake Form"
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</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,33 @@
"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 defaultButtonVariant="text-stagger" defaultTextAnimation="reveal-blur" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[{name: "Treatments", id: "/treatments"}, {name: "Insurance", id: "/insurance"}, {name: "Bio", id: "/bio"}]}
brandName="Forsyth Spinal"
button={{ text: "Book Now", href: "/contact" }}
/>
</div>
<div id="treatments" data-section="treatments">
<FeatureCardMedia
title="Comprehensive Treatment Offerings"
description="Expertly crafted spinal care and rehabilitation protocols."
features={[
{ id: "s1", title: "Advanced Spinal Adjustment", description: "Precise alignment protocols for immediate relief.", tag: "Spinal" },
{ id: "s2", title: "Corrective Exercise Programs", description: "Strengthening the core and supporting muscles.", tag: "Rehab" }
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<FooterBaseCard logoText="Forsyth Spinal" columns={[]} />
</ThemeProvider>
);
}