From bad24667445cf34738427ea8755124f30bf54337 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 10:50:16 +0000 Subject: [PATCH] Update src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 93 +++++++++++----------------------------- 1 file changed, 25 insertions(+), 68 deletions(-) diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 625dfb3..364e19b 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -5,6 +5,7 @@ import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleAp import PricingCardFive from "@/components/sections/pricing/PricingCardFive"; import FeatureCardTwentyOne from "@/components/sections/feature/FeatureCardTwentyOne"; import FooterBase from "@/components/sections/footer/FooterBase"; +import ContactText from "@/components/sections/contact/ContactText"; import { Zap, Sparkles } from "lucide-react"; import Link from "next/link"; @@ -19,8 +20,7 @@ export default function PricingPage() { const footerColumns = [ { - title: "Services", - items: [ + title: "Services", items: [ { label: "Physical Therapy", href: "#services" }, { label: "Sports Medicine", href: "#services" }, { label: "Pain Management", href: "#services" }, @@ -28,8 +28,7 @@ export default function PricingPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Testimonials", href: "#testimonials" }, { label: "Pricing", href: "/pricing" }, @@ -37,8 +36,7 @@ export default function PricingPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Accessibility", href: "#" }, @@ -68,56 +66,24 @@ export default function PricingPage() {