88 lines
3.9 KiB
JavaScript
88 lines
3.9 KiB
JavaScript
import Link from 'next/link';
|
||
import React from 'react';
|
||
import Image from "next/image";
|
||
|
||
|
||
|
||
export default function WhyChooseUsSection() {
|
||
return (
|
||
<section className="chooseus-section">
|
||
<div className="bg-layer">
|
||
<Image
|
||
// loader={exportableLoader}
|
||
src="/assets/images/home/why-choose/why-choose-right.webp"
|
||
alt="Physiotherapy at Rapharehab"
|
||
fill
|
||
style={{ objectFit: "cover" }}
|
||
/>
|
||
</div>
|
||
|
||
|
||
<div className="pattern-layer">
|
||
<Image
|
||
// loader={exportableLoader}
|
||
src="/assets/images/shape/shape-12.webp"
|
||
alt="Physiotherapy at Rapharehab"
|
||
fill
|
||
style={{ objectFit: "cover" }}
|
||
/>
|
||
</div>
|
||
|
||
|
||
<div className="auto-container">
|
||
<div className="row clearfix">
|
||
<div className="col-lg-8 col-md-12 col-sm-12 content-column">
|
||
<div className="content-box">
|
||
<div className="sec-title light mb_50">
|
||
{/* <span className="sub-title">Why Choose Us</span> */}
|
||
<h2>WHY CHOOSE RAPHA REHAB PHYSIOTHERAPY</h2>
|
||
<p className='sub-title-2 mb-2 mt-2'>At <b>Rapha Rehab</b>, we believe recovery is more than treatment - it’s about rebuilding confidence, strength, and movement.
|
||
Our compassionate team of registered physiotherapists and healthcare professionals in <b>Etobicoke</b> work with you one-on-one to understand your pain, identify the root cause, and create a care plan that fits your goals.</p>
|
||
<p className='sub-title-2'> Whether you’re recovering from an injury, surgery, or chronic pain, we’re here to help you move freely and live fully again.</p>
|
||
</div>
|
||
<div className="row clearfix">
|
||
<div className="col-lg-6 col-md-6 chooseus-block">
|
||
<div className="chooseus-block-one">
|
||
<div className="inner-box">
|
||
<div className="icon-box"><img src="/assets/images/home/why-choose/expert-team.webp" alt="Expert Team" /></div>
|
||
<h3>Expert Team</h3>
|
||
<p>A skilled and caring group of physiotherapists focused on real results.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div className="col-lg-6 col-md-6 chooseus-block">
|
||
<div className="chooseus-block-one">
|
||
<div className="inner-box">
|
||
<div className="icon-box"><img src="/assets/images/home/why-choose/understand.webp" alt="Understand your Pain" /></div>
|
||
<h3>Understand your Pain</h3>
|
||
<p>Personalized assessments to find the cause, not just treat symptoms.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div className="col-lg-6 col-md-6 chooseus-block">
|
||
<div className="chooseus-block-one">
|
||
<div className="inner-box">
|
||
<div className="icon-box"><img src="/assets/images/home/why-choose/ready.webp" alt="Ready To Go" /></div>
|
||
<h3>Ready To Go</h3>
|
||
<p>Flexible appointments and a welcoming clinic in the heart of Etobicoke.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
{/* <div className="col-lg-6 col-md-6 col-sm-12 chooseus-block">
|
||
<div className="chooseus-block-one">
|
||
<div className="inner-box">
|
||
<div className="icon-box"><i className="icon-20"></i></div>
|
||
<h3>24/7 Services</h3>
|
||
<p>Amet minim mollit non deserunt aliqua dolor do amet sint.</p>
|
||
</div>
|
||
</div>
|
||
</div> */}
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
);
|
||
};
|