'use client' import Layout from "@/components/layout/Layout" import Link from "next/link" import { useState } from 'react' export default function Home() { const [isOpen, setOpen] = useState(false) const [activeIndex, setActiveIndex] = useState(null); const toggleReadMore = (index) => { setActiveIndex(activeIndex === index ? null : index); }; const contents = [ { title: "Mission", img: "/assets/images/resource/process-1.jpg", text: "Physiotherapy Etobicoke is committed to providing quality and innovative health care in a comfortable and professional environment. Our interdisciplinary team will work collaboratively to offer a comprehensive and patient-centered approach to ensure the highest level of client experience through our evidence-based clinical practice." }, { title: "Vision", img: "/assets/images/resource/process-2.jpg", text: "To be regarded as the most reliable and effective health care therapy practice backed by the team of innovative healthcare professionals driven by passion." }, { title: "Values", img: "/assets/images/resource/process-3.jpg", text: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque non massa nec justo lacinia suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque non massa nec justo lacinia suscipit." } ]; return ( <> {/* about-section */}
About Us

Rapha Rehab Physiotherapy

physiotherapy clinic in etobicoke managed by Registered Physiotherapists offering reliable physiotherapy treatment Services, Sports injury physiotherapy, Pelvic floor physiotherapy, Chiropractor, Massage therapy , Acupuncture treatment, Foot Reflexology, Osteopathy, custom knee braces, orthotics, spinal decompression therapy, concussion management, chronic pain management, workplace injury management, Naturopathy and home care physiotherapy Services in Etobicoke

Explore Our Service
{/* about-section end */} {/* process */}
Caring Excellence

Mission Vision & Values

{contents.map((item, index) => { const isActive = activeIndex === index; const words = item.text.split(" "); const shortText = words.slice(0, 20).join(" ") + (words.length > 20 ? "..." : ""); return (
{`0${index + 1}`}
{item.title}

{item.title}

{isActive ? item.text : shortText}

{words.length > 20 && ( )}
); })}
{/* process end */}
{/*
*/}
{/* RIGHT IMAGE / LEFT CONTENT */}
About Us

Medical services & diagnostics

  • Top-Notch Treatment – Under our care, you will be placed in a supportive and comfortable environment helping you receive care in comfortable and supportive environment designed to address your issues
  • Personalized Treatment Plan – We offer One-on-one care with a skilled therapist allows us to develop a plan specific to your particular needs results in a faster recovery.
  • We listen & take time – We listen & take time to get to know you properly – Right from the start with your inquiry, we are here to listen and help find the root cause of your problem.
  • Our treatment rooms – Our treatment rooms are fully equipped and private.
  • Strong network of health professionals – We have a strong network of health professionals to refer to, making sure you get the right diagnosis and correct treatment for your condition.
{/* process end */} {/* team-section-style-two */}
Our Team

Meet our experienced doctors
for the best treatment

Black Marvin

Medical Assistant

Eleanor Pena

Doctor

Arlene Maccy

Nursing Assistant

Jenny Wilson

Senior Doctor
{/* team-section-style-two end */}
) }