diff --git a/app/faq-physiotherapy-etobicoke/page.js b/app/faq-physiotherapy-etobicoke/page.js new file mode 100644 index 0000000..ad53108 --- /dev/null +++ b/app/faq-physiotherapy-etobicoke/page.js @@ -0,0 +1,154 @@ +'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 ( + <> + + + {/* faq */} +
+
+
+ FAQ'S +

Do You Have Any Physiotherapy
Questions?

+
+ +
+ + {/* Left Side Image */} +
+
+
+
+ FAQ Illustration +
+
+
+
+ + {/* Right Side FAQ Content */} +
+
+
    + + {/* FAQ 1 */} +
  • +
    handleToggle(1)} + > +
    +
    What is physiotherapy?
    +
    +
    +
    +
    +

    Physiotherapists are medical professionals who specialize in treating injuries and conditions that impact movement.

    +
    +
    +
    +
  • + + {/* FAQ 2 */} +
  • +
    handleToggle(2)} + > +
    +
    What does the physiotherapist do?
    +
    +
    +
    +
    +

    Physiotherapists help people affected by injury, illness or disability through electrical modalities, movement, exercise, manual therapy, education and advice. We at Rapharehab Physiotherapy clinic Etobicoke for people of all ages, helping patients to manage pain and prevent disease.

    +
    +
    +
    +
  • + + {/* FAQ 3 */} +
  • +
    handleToggle(3)} + > +
    +
    How Long Will Your session Take?
    +
    +
    +
    +
    +

    The duration of the program will depend on an individual's healing rate and condition being treated. Every condition is different, and everyone heals at different rates. Minor injuries you might expect 2-3 sessions of physiotherapy while the soft tissue injuries may take even longer.

    +
    +
    +
    +
  • +
+
+
+
+
+
+ {/* faq end */} + + {/* subscibe */} +
+
+
+
+
+
+

Subscribe for the exclusive updates!

+
+
+
+
+
+
+ + +
+
+
+ + +
+
+
+
+
+
+
+
+
+
+ + ); +} diff --git a/app/payment-insurance/page.js b/app/payment-insurance/page.js new file mode 100644 index 0000000..3ebecff --- /dev/null +++ b/app/payment-insurance/page.js @@ -0,0 +1,76 @@ +import Link from "next/link" +import Layout from "@/components/layout/Layout" + + +export default function About() { + return ( + <> + + {/* chooseus-section */} +
+
+
+
+
+
+ {/* Better Solutions */} +

Payment and Insurance

+
+
+

At rapharehab Etobicoke Physiotherapy clinic, your treatments are partially or fully covered by health insurance plans and Workplace Safety and Insurance Board (WSIB). If you have medical health care coverage, we believe your treatment costs will be covered by health care plans. The treatments such as physiotherapy, massage therapy, chiropractic care, acupuncture, orthotics etc., all can be covered by health care insurance.

+
    +
  • In case if you are injured in a motor vehicle accident (MVA), the auto insurance covers the cost of the treatment.
  • +
  • Please get in touch with rapharehab Physiotherapy clinic etobicoke for assistance to know about your coverage.
  • +
  • We Accept Cash/Cheque/Visa/Direct Payment.
  • +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {/* chooseus-section end */} + {/* subscibe */} +
+
+
+
+
+
+

Subscribe for the exclusive updates!

+
+
+
+
+
+
+ + +
+
+
+ + +
+
+
+
+
+
+
+
+
+ {/* subscibe end */} +
+ + ) +} diff --git a/app/what-to-expect/page.js b/app/what-to-expect/page.js new file mode 100644 index 0000000..54ff9e1 --- /dev/null +++ b/app/what-to-expect/page.js @@ -0,0 +1,82 @@ +import Link from "next/link" +import Layout from "@/components/layout/Layout" + + +export default function About() { + return ( + <> + + {/* chooseus-section */} +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Why Choose Us +

What to Expect – Physiotherapy Etobicoke

+
+
+

On the first day of your visit, you will receive a thorough assessment allows our healthcare professionals to understand your injury to determine how we can help. Following the initial assessment at our physiotherapy clinic etobicoke, we will discuss our ¬findings, and set a realistic treatment plan to help you gain long-term results. All of your questions will be answered.

+

On the second day at our etobicoke physiotherapy clinic, you will receive your first full treatment. The treatment session time will vary based on the level of injury and also after treatment session we will teach you pain management techniques.

+
+
+
+
+
+
+
+ {/* chooseus-section end */} + {/* subscibe */} +
+
+
+
+
+
+

Subscribe for the exclusive updates!

+
+
+
+
+
+
+ + +
+
+
+ + +
+
+
+
+
+
+
+
+
+ {/* subscibe end */} +
+ + ) +} diff --git a/components/layout/MobileMenu2.js b/components/layout/MobileMenu2.js index 0943c6d..5ec49bf 100644 --- a/components/layout/MobileMenu2.js +++ b/components/layout/MobileMenu2.js @@ -29,7 +29,7 @@ export default function MobileMenu({ isSidebar, handleMobileMenu, handleSidebar