Update src/app/treatments/page.tsx

This commit is contained in:
2026-04-28 17:01:18 +00:00
parent 5a1e0a4b93
commit 234292fa98

View File

@@ -6,24 +6,28 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function ServicesPage() {
return (
<ThemeProvider>
<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 for lasting pain relief and mobility."
description="Expertly crafted spinal care and rehabilitation protocols."
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: "" }
{ 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}
/>
<FooterBaseCard logoText="Forsyth Spinal" columns={[]} />
</div>
<FooterBaseCard logoText="Forsyth Spinal" columns={[]} />
</ThemeProvider>
);
}
}