import React, { useMemo } from 'react'; import { Helmet } from 'react-helmet'; import { motion } from 'framer-motion'; import { Activity, Zap, Heart, Brain, Baby, UserCheck, Dumbbell, ChevronDown, MapPin, Phone, } from 'lucide-react'; import { Button } from '@/components/ui/button'; import { useNavigate, Link as RouterLink } from 'react-router-dom'; const Services = () => { const navigate = useNavigate(); const handleBookOnline = () => { navigate('/booking'); }; // ✅ Improvements: // - Added SEO-friendly FAQ (accordion) + JSON-LD // - Added service anchor links + "Learn more" CTA per service // - Better internal linking (RouterLink instead of ) to avoid full page reload // - "Sticky" quick nav on desktop // - More scannable layout: bullets, headings, better spacing const services = useMemo( () => [ { id: 'sports-injury-rehab', icon: , title: 'Sports Injury Rehabilitation', description: 'Specialized treatment for sports-related injuries including sprains, strains, and overuse conditions. We work with athletes of all levels to optimize recovery and safely return to sport.', benefits: [ 'Comprehensive injury assessment', 'Sport-specific rehabilitation programs', 'Gradual return-to-play protocols', 'Performance optimization strategies', 'Injury prevention education', ], relatedLinks: [ { to: '/blog/sports-injury-physiotherapy-recovery', label: 'Sports injuries & rehabilitation' }, ], }, { id: 'post-surgical-recovery', icon: , title: 'Post-Surgical Recovery', description: 'Expert rehab following orthopaedic surgery, including joint replacements, ACL reconstruction, and other surgical procedures. We help you regain strength, mobility, and confidence.', benefits: [ 'Customized post-operative protocols', 'Pain and swelling management', 'Scar tissue mobilization', 'Progressive strengthening exercises', 'Functional movement restoration', ], }, { id: 'chronic-pain', icon: , title: 'Chronic Pain Management', description: 'Evidence-based care for persistent pain, including back/neck pain, arthritis, and long-term pain conditions. We combine hands-on treatment, exercise, and education to improve function and control symptoms.', benefits: [ 'Comprehensive pain assessment', 'Manual therapy techniques', 'Therapeutic exercise programs', 'Pain education and self-management', 'Lifestyle modification guidance', ], relatedLinks: [ { to: '/blog/mechanical-vs-non-mechanical-back-pain', label: 'Understand back pain' }, ], }, { id: 'orthopaedic-physio', icon: , title: 'Orthopaedic Physiotherapy', description: 'Care for musculoskeletal conditions affecting bones, joints, muscles, and ligaments. From acute injuries to degenerative conditions, we provide comprehensive orthopaedic care.', benefits: [ 'Joint mobilization and manipulation', 'Soft tissue therapy', 'Postural correction', 'Biomechanical analysis', 'Home exercise programs', ], relatedLinks: [ { to: '/blog/knee-osteoarthritis-exercises-physio', label: 'Knee pain & osteoarthritis' }, ], }, { id: 'neuro-rehab', icon: , title: 'Neurological Rehabilitation', description: "Specialized rehab for neurological conditions such as stroke, multiple sclerosis, Parkinson's disease, and spinal cord injuries. We focus on improving mobility, balance, and independence.", benefits: [ 'Balance and coordination training', 'Gait re-education', 'Spasticity management', 'Functional task practice', 'Assistive device prescription', ], }, { id: 'paediatric-physio', icon: , title: 'Pediatric Physiotherapy', description: 'Support for children with developmental delays, congenital conditions, sports injuries, and other paediatric concerns. We keep sessions positive, practical, and engaging.', benefits: [ 'Developmental milestone support', 'Play-based therapy approaches', 'Parent education and training', 'School and activity modifications', 'Growth and development monitoring', ], }, { id: 'geriatric-care', icon: , title: 'Geriatric Care', description: 'Age-appropriate physiotherapy to maintain independence, reduce fall risk, manage age-related conditions, and keep you moving confidently.', benefits: [ 'Fall risk assessment and prevention', 'Balance and stability training', 'Strength and flexibility programs', 'Mobility aid assessment', 'Chronic disease management', ], }, ], [] ); const faqs = useMemo( () => [ { q: 'Do I need a GP referral to see a physiotherapist?', a: 'No. You can book directly. A referral may be needed for specific funding pathways (e.g., EPC/Medicare plans), but it is not required for standard appointments.', }, { q: 'How many sessions will I need?', a: 'It depends on your condition, goals, and how long symptoms have been present. After your first assessment, we’ll give you a clear plan and expected timeline.', }, { q: 'What should I bring to my first appointment?', a: 'Bring any relevant scans/reports, a list of medications (if applicable), and wear comfortable clothing that allows movement of the area being treated.', }, { q: 'Do you treat knee, back, neck pain and dizziness?', a: 'Yes. We commonly treat back/neck pain, knee issues (including osteoarthritis), and dizziness/balance problems—along with many other musculoskeletal conditions.', }, ], [] ); const pageTitle = 'Our Services - AlphaCare Physiotherapy Marion | Comprehensive Treatment Options'; const pageDescription = 'Explore our physiotherapy services in Marion, SA: sports injury rehab, post-surgical recovery, chronic pain management, orthopaedic and neurological rehab, paediatric physio and geriatric care.'; // ✅ JSON-LD FAQ for SEO const faqJsonLd = useMemo(() => { const mainEntity = faqs.map((f) => ({ '@type': 'Question', name: f.q, acceptedAnswer: { '@type': 'Answer', text: f.a }, })); return { '@context': 'https://schema.org', '@type': 'FAQPage', mainEntity, }; }, [faqs]); return ( <> {pageTitle} {/* Hero Section */}

Our Services

Comprehensive physiotherapy treatments tailored to your unique needs and goals

Learn more{' '} about AlphaCare Physio , explore the conditions we treat at our{' '} Marion clinic , or browse our services below.

{/* Quick Nav */}
{services.map((s) => ( {s.title} ))}
Jump to a service
{/* Services Grid */}
{services.map((service, index) => (
{service.icon}

{service.title}

Serving Marion, Mitchell Park & nearby suburbs

{service.description}

What we offer:

    {service.benefits.map((benefit, idx) => (
  • {benefit}
  • ))}
{/* Related links (internal SEO) */} {service.relatedLinks?.length ? (

Related reading:

{service.relatedLinks.map((l) => ( {l.label} ))}
) : null}
))}
{/* What to Expect */}

What to Expect During Your Visit

Initial Assessment

Your first session includes a thorough review of your symptoms, relevant history, and goals. We’ll assess movement, strength, and function to identify what’s driving your issue.

Treatment Plan

You’ll receive a clear plan that may include hands-on therapy, tailored exercise, and education—so you know what we’re doing and why.

Ongoing Care

We track progress and update your program as you improve. Our goal is to get you back to normal activity with confidence and long-term strategies.

Physiotherapist conducting patient assessment
{/* FAQ (SEO booster) */}

Frequently Asked Questions

{faqs.map((f, i) => (
{f.q}

{f.a}

))}
{/* Call to Action */}

Ready to Begin Your Treatment?

Book an assessment at AlphaCare Physiotherapy in Marion and get a clear plan to move better.

{/* Local contact micro-CTA */}
Marion • Mitchell Park • Nearby suburbs
1300 433 233
{/* Common conditions we treat (kept, but improved internal routing) */}

Common conditions we treat

); }; export default Services;