From d141e73330ef2bf6d0f35fa55873d72c672d87b6 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 10:55:51 +0000 Subject: [PATCH] Update src/app/services/page.tsx --- src/app/services/page.tsx | 56 +++++++++++++++------------------------ 1 file changed, 22 insertions(+), 34 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 587ef82..994e5fd 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -6,15 +6,14 @@ import FeatureCardTwentyOne from "@/components/sections/feature/FeatureCardTwent import PricingCardFive from "@/components/sections/pricing/PricingCardFive"; import FooterBase from "@/components/sections/footer/FooterBase"; import { Zap, Sparkles } from "lucide-react"; -import Link from "next/link"; export default function ServicesPage() { 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 = [ @@ -29,9 +28,9 @@ export default function ServicesPage() { { 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" }, ], }, { @@ -39,7 +38,7 @@ export default function ServicesPage() { { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Accessibility", href: "#" }, - { label: "Contact Us", href: "#contact" }, + { label: "Contact Us", href: "/#contact" }, ], }, ]; @@ -66,23 +65,19 @@ export default function ServicesPage() { tag="Our Services" title="Comprehensive Treatment Services" description="Tailored rehabilitation programs addressing a wide range of musculoskeletal conditions. From acute injuries to chronic pain, we have the expertise to help you recover." - imageSrc="http://img.b2bpic.net/free-photo/personal-trainer-assisting-woman-with-disabilities-her-workout-sports-rehab-centre-with-physiotherapists-patients-working-together-towards-healing_1321-3603.jpg?_wi=2" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQpbnFYe6fEjhWs3QB3kCkfR4d/uploaded-1772535267968-o7xkjjcg.png" imageAlt="Sports medicine rehabilitation" mediaAnimation="slide-up" mediaPosition="right" accordionItems={[ { - id: "1", title: "Physical Therapy & Rehabilitation", content: - "Evidence-based treatment for post-injury recovery, surgery rehabilitation, and chronic pain management. Our therapists use advanced techniques to restore function and mobility."}, + id: "1", title: "Physical Therapy & Rehabilitation", content: "Evidence-based treatment for post-injury recovery, surgery rehabilitation, and chronic pain management. Our therapists use advanced techniques to restore function and mobility."}, { - id: "2", title: "Sports Injury Treatment", content: - "Specialized care for athletes and active individuals. We treat sprains, strains, and performance-related injuries to get you back in the game safely."}, + id: "2", title: "Sports Injury Treatment", content: "Specialized care for athletes and active individuals. We treat sprains, strains, and performance-related injuries to get you back in the game safely."}, { - id: "3", title: "Pain Management", content: - "Comprehensive approach to managing acute and chronic pain including manual therapy, exercise prescription, and injury prevention strategies."}, + id: "3", title: "Pain Management", content: "Comprehensive approach to managing acute and chronic pain including manual therapy, exercise prescription, and injury prevention strategies."}, { - id: "4", title: "Work Injury Rehabilitation", content: - "Occupational rehabilitation and ergonomic assessment to help you return to work safely and prevent future workplace injuries."}, + id: "4", title: "Work Injury Rehabilitation", content: "Occupational rehabilitation and ergonomic assessment to help you return to work safely and prevent future workplace injuries."}, ]} buttons={[{ text: "Explore Services", href: "#services" }]} useInvertedBackground={false} @@ -94,23 +89,19 @@ export default function ServicesPage() { tag="Our Process" title="Your Personalized Recovery Path" description="We follow a structured, evidence-based approach to ensure optimal recovery. Each step is designed with your unique needs in mind." - imageSrc="http://img.b2bpic.net/free-photo/professional-medic-examining-patient-reaction-light-pupil-response_482257-127007.jpg" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQpbnFYe6fEjhWs3QB3kCkfR4d/uploaded-1772535267968-r33h1geo.png" imageAlt="Patient assessment process" mediaAnimation="slide-up" mediaPosition="left" accordionItems={[ { - id: "1", title: "Step 1: Comprehensive Assessment", content: - "Initial consultation includes detailed medical history, physical examination, and movement analysis to understand your condition and goals."}, + id: "1", title: "Step 1: Comprehensive Assessment", content: "Initial consultation includes detailed medical history, physical examination, and movement analysis to understand your condition and goals."}, { - id: "2", title: "Step 2: Personalized Treatment Plan", content: - "Based on assessment findings, we create a customized rehabilitation program with clear milestones and expected recovery timeline."}, + id: "2", title: "Step 2: Personalized Treatment Plan", content: "Based on assessment findings, we create a customized rehabilitation program with clear milestones and expected recovery timeline."}, { - id: "3", title: "Step 3: Active Treatment & Monitoring", content: - "Regular therapy sessions with continuous progress monitoring, technique adjustments, and home exercise programming to accelerate recovery."}, + id: "3", title: "Step 3: Active Treatment & Monitoring", content: "Regular therapy sessions with continuous progress monitoring, technique adjustments, and home exercise programming to accelerate recovery."}, { - id: "4", title: "Step 4: Return to Function", content: - "Gradual progression to functional activities with injury prevention strategies and maintenance programs to ensure lasting results."}, + id: "4", title: "Step 4: Return to Function", content: "Gradual progression to functional activities with injury prevention strategies and maintenance programs to ensure lasting results."}, ]} useInvertedBackground={false} /> @@ -120,22 +111,19 @@ export default function ServicesPage() { ); -} \ No newline at end of file +}