Update src/app/pricing/page.tsx

This commit is contained in:
2026-03-03 10:55:50 +00:00
parent 09f6e970b4
commit a48ea7d7e7

View File

@@ -7,15 +7,14 @@ import FeatureCardTwentyOne from "@/components/sections/feature/FeatureCardTwent
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";
export default function PricingPage() {
const navItems = [
{ name: "Services", id: "services" },
{ name: "Pricing", id: "pricing" },
{ name: "Testimonials", id: "testimonials" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" },
{ name: "Services", id: "/services" },
{ name: "Pricing", id: "/pricing" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "FAQ", id: "/#faq" },
{ name: "Contact", id: "/#contact" },
];
const footerColumns = [
@@ -30,9 +29,9 @@ export default function PricingPage() {
{
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Testimonials", href: "#testimonials" },
{ label: "Testimonials", href: "/#testimonials" },
{ label: "Pricing", href: "/pricing" },
{ label: "Contact", href: "#contact" },
{ label: "Contact", href: "/#contact" },
],
},
{
@@ -40,7 +39,7 @@ export default function PricingPage() {
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Accessibility", href: "#" },
{ label: "Contact Us", href: "#contact" },
{ label: "Contact Us", href: "/#contact" },
],
},
];
@@ -66,22 +65,19 @@ 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" },
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-lead" },
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" },
price: "$120", period: "/session", description: "Regular physiotherapy sessions focused on your specific treatment goals and functional recovery objectives.", button: { text: "Start Treatment", href: "/#contact-lead" },
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" },
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-lead" },
featuresTitle: "Package Benefits:", features: [
"6 therapy sessions (save $71)", "Dedicated therapist assigned", "Priority scheduling", "Email exercise support", "Progress photos & metrics"],
},
@@ -99,20 +95,17 @@ 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="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQpbnFYe6fEjhWs3QB3kCkfR4d/uploaded-1772535267968-r33h1geo.png"
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}
/>
@@ -123,7 +116,7 @@ export default function PricingPage() {
text="Still have questions about our pricing? Contact us to discuss a custom plan for your specific needs."
animationType="entrance-slide"
buttons={[
{ text: "Get in Touch", href: "#contact" },
{ text: "Get in Touch", href: "/#contact" },
{ text: "Schedule Consultation", href: "tel:+1234567890" },
]}
background={{ variant: "sparkles-gradient" }}
@@ -140,4 +133,4 @@ export default function PricingPage() {
</div>
</ThemeProvider>
);
}
}