Update src/app/pricing/page.tsx

This commit is contained in:
2026-03-03 10:50:16 +00:00
parent de89a84b4a
commit bad2466744

View File

@@ -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() {
<PricingCardFive
plans={[
{
id: "initial-assessment",
tag: "Initial Assessment",
price: "$150",
period: "/session",
description:
"Comprehensive evaluation including medical history review, physical examination, and personalized treatment recommendation.",
button: { text: "Book Assessment", href: "#contact" },
featuresTitle: "Assessment Includes:",
features: [
"60-minute detailed evaluation",
"Movement analysis and testing",
"Written treatment plan",
"Home exercise program",
],
id: "initial-assessment", tag: "Initial Assessment", price: "$150", period: "/session", description:
"Comprehensive evaluation including medical history review, physical examination, and personalized treatment recommendation.", button: { text: "Book Assessment", href: "#contact" },
featuresTitle: "Assessment Includes:", features: [
"60-minute detailed evaluation", "Movement analysis and testing", "Written treatment plan", "Home exercise program"],
},
{
id: "standard-therapy",
tag: "Standard Sessions",
tagIcon: Zap,
price: "$120",
period: "/session",
description:
"Regular physiotherapy sessions focused on your specific treatment goals and functional recovery objectives.",
button: { text: "Start Treatment", href: "#contact" },
featuresTitle: "Includes:",
features: [
"45-minute therapy session",
"Advanced treatment techniques",
"Progress monitoring",
"Exercise adjustments",
"Free home exercise videos",
],
id: "standard-therapy", tag: "Standard Sessions", tagIcon: Zap,
price: "$120", period: "/session", description:
"Regular physiotherapy sessions focused on your specific treatment goals and functional recovery objectives.", button: { text: "Start Treatment", href: "#contact" },
featuresTitle: "Includes:", features: [
"45-minute therapy session", "Advanced treatment techniques", "Progress monitoring", "Exercise adjustments", "Free home exercise videos"],
},
{
id: "package-plan",
tag: "6-Session Package",
tagIcon: Sparkles,
price: "$649",
period: "total",
description:
"Discounted package perfect for structured recovery programs with consistent weekly sessions and comprehensive care.",
button: { text: "Enroll Now", href: "#contact" },
featuresTitle: "Package Benefits:",
features: [
"6 therapy sessions (save $71)",
"Dedicated therapist assigned",
"Priority scheduling",
"Email exercise support",
"Progress photos & metrics",
],
id: "package-plan", tag: "6-Session Package", tagIcon: Sparkles,
price: "$649", period: "total", description:
"Discounted package perfect for structured recovery programs with consistent weekly sessions and comprehensive care.", button: { text: "Enroll Now", href: "#contact" },
featuresTitle: "Package Benefits:", features: [
"6 therapy sessions (save $71)", "Dedicated therapist assigned", "Priority scheduling", "Email exercise support", "Progress photos & metrics"],
},
]}
animationType="slide-up"
@@ -133,29 +99,20 @@ export default function PricingPage() {
tag="What's Included"
title="Comprehensive Care at Every Level"
description="All our pricing plans include access to our professional team, advanced treatment techniques, and personalized recovery support."
imageSrc="http://img.b2bpic.net/free-photo/physiotherapy-doctor-assisting-elderly-patient-with-leg-exercise-clinic_662251-1742.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/physiotherapy-doctor-assisting-elderly-patient-with-leg-exercise-clinic_662251-1742.jpg"
imageAlt="Physiotherapy treatment"
mediaAnimation="slide-up"
mediaPosition="right"
accordionItems={[
{
id: "1",
title: "Professional Assessment",
content:
"Every patient receives a comprehensive evaluation to identify their specific needs and create an effective treatment plan.",
},
id: "1", title: "Professional Assessment", content:
"Every patient receives a comprehensive evaluation to identify their specific needs and create an effective treatment plan."},
{
id: "2",
title: "Evidence-Based Treatment",
content:
"We use proven physiotherapy techniques and exercise protocols that have been shown to accelerate recovery and improve outcomes.",
},
id: "2", title: "Evidence-Based Treatment", content:
"We use proven physiotherapy techniques and exercise protocols that have been shown to accelerate recovery and improve outcomes."},
{
id: "3",
title: "Progress Monitoring",
content:
"Continuous assessment and documentation of your progress helps us adjust your treatment plan as you recover.",
},
id: "3", title: "Progress Monitoring", content:
"Continuous assessment and documentation of your progress helps us adjust your treatment plan as you recover."},
]}
useInvertedBackground={false}
/>