Add src/app/insurance/page.tsx
This commit is contained in:
30
src/app/insurance/page.tsx
Normal file
30
src/app/insurance/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user