"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 Care in Etobicoke

Our highly skilled physiotherapy team in Etobicoke is dedicated to helping you restore mobility, relieve pain, and achieve your long-term health goals. With a personalized treatment approach and patient-focused care, we are here to support your journey toward better health and well-being.

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