'use client' import Layout from "@/components/layout/Layout"; import Link from "next/link"; import { useState } from 'react'; export default function Faq() { const [isActive, setIsActive] = useState({ status: false, key: 1, }); const handleToggle = (key) => { if (isActive.key === key) { setIsActive({ status: false, }); } else { setIsActive({ status: true, key, }); } }; return ( <>
Frequently Asked Questions

Have Questions About Physiotherapy?

{/* Left Side Image */}
Do You Have Any Physiotherapy Questions
{/* Right Side FAQ Content */}
    {/* FAQ 1 */}
  • handleToggle(1)} >

    What is physiotherapy?

    Physiotherapy is a healthcare practice focused on restoring movement, reducing pain, and improving physical function affected by injury, illness, or disability. Physiotherapists use manual therapy, exercise, and education to help you move better and recover safely.

  • {/* FAQ 2 */}
  • handleToggle(2)} >

    What does the physiotherapist do?

    A physiotherapist assesses your condition, identifies the root cause of your pain or movement issue, and creates a personalized treatment plan. They use hands-on techniques, exercises, and guidance to help you heal, strengthen, and prevent future injuries.

  • {/* FAQ 3 */}
  • handleToggle(3)} >

    How long will your session take?

    A typical physiotherapy session lasts between 30 - 60 minutes, depending on your condition and treatment plan. Initial assessments may take slightly longer to ensure a full understanding of your needs.

{/* faq end */} {/* subscibe */} {/*

Subscribe for the exclusive updates!

*/} ); }