58 lines
2.1 KiB
JavaScript
58 lines
2.1 KiB
JavaScript
import React from 'react';
|
|
import Link from "next/link"
|
|
const ProgressBar = ({ label, percent }) => (
|
|
<div className="progress-box">
|
|
<p>{label}</p>
|
|
<div className="bar">
|
|
<div className="bar-inner count-bar" style={{ width: `${percent}%` }}></div>
|
|
<div className="count-text">{`${percent}%`}</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
export default function Solution() {
|
|
return (
|
|
<section className="solutions-section p_relative">
|
|
<div className="auto-container">
|
|
<div className="row clearfix">
|
|
<div className="col-lg-6 col-md-12 col-sm-12 content-column">
|
|
<div className="content-box">
|
|
<div className="sec-title mb_50">
|
|
<span className="sub-title">Association With</span>
|
|
<h2>Trusted Physiotherapy Care in Etobicoke</h2>
|
|
</div>
|
|
<p className='pr_50'>
|
|
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.
|
|
</p>
|
|
{/* <div className="progress-inner mb_50">
|
|
|
|
<ProgressBar label="Skilled Doctor" percent={85} />
|
|
<ProgressBar label="Modernized Equipment" percent={90} />
|
|
<ProgressBar label="Dedicated Team" percent={80} />
|
|
</div> */}
|
|
|
|
<div className="btn-box mt_50">
|
|
<Link href="/contact" className="theme-btn btn-one"><span>Contact Us</span></Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="col-lg-6 col-md-12 col-sm-12 image-column">
|
|
<div className="image_block_tw">
|
|
<div className="image-box text-center">
|
|
<img
|
|
src="/assets/images/home/trusted/trusted-physiotherapy-care.webp"
|
|
alt="Trusted Physiotherapy"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
)
|
|
};
|
|
|
|
|