"use client"; import React, { useState, useEffect } from "react"; import Link from "next/link"; import Image from "next/image"; // ✅ Progress bar (optional) const ProgressBar = ({ label, percent }) => (

{label}

{`${percent}%`}
); export default function Solution() { const [isMobile, setIsMobile] = useState(false); useEffect(() => { const checkScreenSize = () => setIsMobile(window.innerWidth <= 768); checkScreenSize(); window.addEventListener("resize", checkScreenSize); return () => window.removeEventListener("resize", checkScreenSize); }, []); // ✅ Image source changes by screen size const imageSrc = isMobile ? "/assets/images/home/trusted/trusted-physiotherapy-care-mbl.webp" : "/assets/images/home/trusted/trusted-physiotherapy-care.webp"; return (
{/* ===== Left Column (Text) ===== */}
Association With

Trusted Physiotherapy Experts in Etobicoke

At Rapha Rehab, we go beyond routine treatment - we focus on your complete recovery. Our expert physiotherapists and rehabilitation specialists in Etobicoke create personalized care plans designed to restore movement, relieve pain, and support long-term well-being. From sports injuries to post-surgery rehabilitation, we’re committed to helping you move confidently and live without limits.

{/* ✅ Optional Progress Bars */} {/*
*/}
Contact Us
{/* ===== Right Column (Image) ===== */}
Trusted Physiotherapy
); }