Add src/app/treatments/page.tsx

This commit is contained in:
2026-04-28 17:00:47 +00:00
parent ce93f1613f
commit 2193705b72

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>
);
}