'use client' import Layout from "@/components/layout/Layout" import Link from "next/link" import { useState } from 'react' import { teamMembers } from "@/utils/constant.utils"; 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/about-us/section2/mission.webp", 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/about-us/section2/vision.webp", 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/about-us/section2/values.webp", text: "We value compassion, excellence, innovation, collaboration, and integrity. By combining empathy with evidence-based care, we create a supportive and professional environment that helps every patient achieve long-term health and well-being." } ]; return ( <> {/* about-section */}
About Us

Comprehensive Physiotherapy & Rehabilitation Clinic in Etobicoke

Welcome to Rapha Rehab Physiotherapy Massage Therapy Clinic Etobicoke – 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

Book Appointment
{/* 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 */}
Why Choos Us

Your Trusted Physiotherapy Team in Etobicoke

Physiotherapy etobicoke is a team of health care professionals working together to help get you better, faster. This helps us in rendering our best possible services to our clients

Book Appointment
{/* process end */} {/* team-section-style-two */}
Our Team

Meet our experienced doctors
for the best treatment

{teamMembers.map((member, index) => (
{member.name}
    {member.socials.map((social, idx) => (
  • ))}

{member.name}

{member.designation}
))}
) }