263 lines
19 KiB
JavaScript
263 lines
19 KiB
JavaScript
'use client'
|
||
import Link from "next/link";
|
||
|
||
export default function Home() {
|
||
return (
|
||
<>
|
||
{/* Section 1: Hero (Image | Content) */}
|
||
<section className="about-style-three pt_90 pb_90">
|
||
<div className="auto-container">
|
||
<div className="row align-items-center clearfix">
|
||
<div className="col-lg-6 col-md-12 col-sm-12 image-column">
|
||
<div className="image_block_four">
|
||
<div className="image-box">
|
||
<figure className="image mb-3">
|
||
<img src="/assets/images/covid/covid-19-safety.webp" alt="COVID-19 Safety Updates" />
|
||
</figure>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div className="col-lg-6 col-md-12 col-sm-12 content-column">
|
||
<div className="content_block_one">
|
||
<div className="content-box">
|
||
<div className="sec-title mb_25">
|
||
<span className="sub-title">Safety Updates</span>
|
||
<h2>COVID-19 Safety Updates – Rapha Rehab Physiotherapy Clinic in Etobicoke</h2>
|
||
</div>
|
||
<div className="text-box">
|
||
<p>At Rapha Rehab, your safety has always been our top priority. As a trusted physiotherapy clinic in Etobicoke, we continue to follow strict health and safety protocols to protect our patients, staff, and community.</p>
|
||
<p>Throughout the COVID-19 pandemic and beyond, we have maintained enhanced safety standards to ensure you can confidently receive the physiotherapy and rehabilitation care you need.</p>
|
||
<p>Our commitment is simple: safe care, professional service, and uninterrupted recovery support.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
{/* Section 2: Commitment (Content | Image) */}
|
||
<section className="about-style-two pt_90 pb_90 bg-color-1">
|
||
<div className="auto-container">
|
||
<div className="row align-items-center clearfix">
|
||
<div className="col-lg-6 col-md-12 col-sm-12 content-column">
|
||
<div className="content_block_one">
|
||
<div className="content-box">
|
||
<div className="sec-title mb_25">
|
||
<h2 className="text-white">Our Commitment to Safe Physiotherapy in Etobicoke</h2>
|
||
</div>
|
||
<div className="text-box">
|
||
<p className="text-white">Rehabilitation is essential healthcare. Many patients depend on physiotherapy to manage pain, recover from surgery, rehabilitate accident injuries, and maintain mobility.</p>
|
||
<p className="text-white">As one of the best physiotherapy clinics in Etobicoke, we have implemented comprehensive infection prevention measures so patients can continue treatment safely.</p>
|
||
<p className="text-white">We closely follow public health guidelines from Ontario health authorities and adjust protocols as recommendations evolve.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div className="col-lg-6 col-md-12 col-sm-12 image-column">
|
||
<div className="image_block_four">
|
||
<div className="image-box">
|
||
<figure className="image">
|
||
<img src="/assets/images/covid/covid-19-our-commitment.webp" alt="Safe Physiotherapy Commitment" />
|
||
</figure>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
{/* Section 3: Cards Grid (2 cards per row) */}
|
||
<section className="feature-section pt_90 pb_70">
|
||
<div className="auto-container">
|
||
<div className="row clearfix">
|
||
{/* Card 1: Enhanced Cleaning */}
|
||
<div className="col-lg-6 col-md-12 col-sm-12 feature-block d-flex">
|
||
<div className="feature-block-one w-100">
|
||
<div className="inner-box h-100 p-4 shadow-sm border rounded">
|
||
<div className="icon-box-small mb-4" style={{ height: '70px', display: 'flex', alignItems: 'center' }}>
|
||
<img src="/assets/images/covid/enhanced-cleaning.webp" alt="Enhanced Cleaning" style={{ width: '60px', height: '60px', objectFit: 'contain' }} />
|
||
</div>
|
||
<h3>Enhanced Cleaning & Sanitization Protocols</h3>
|
||
<p>To maintain a clean and hygienic environment, our rehabilitation clinic in Etobicoke follows strict sanitation procedures:</p>
|
||
<ul className="list-style-one clearfix mt-3 mb-3">
|
||
<li>Treatment tables sanitized after every session</li>
|
||
<li>High-touch surfaces disinfected regularly</li>
|
||
<li>Equipment cleaned between patient use</li>
|
||
<li>Hand sanitizer stations available throughout the clinic</li>
|
||
<li>Frequent cleaning of reception and waiting areas</li>
|
||
</ul>
|
||
<p>Our team uses hospital-grade disinfectants to ensure maximum protection.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
{/* Card 2: Patient Screening */}
|
||
<div className="col-lg-6 col-md-12 col-sm-12 feature-block d-flex">
|
||
<div className="feature-block-one w-100">
|
||
<div className="inner-box h-100 p-4 shadow-sm border rounded">
|
||
<div className="icon-box-small mb-4" style={{ height: '70px', display: 'flex', alignItems: 'center' }}>
|
||
<img src="/assets/images/covid/patient.webp" alt="Patient Screening" style={{ width: '60px', height: '60px', objectFit: 'contain' }} />
|
||
</div>
|
||
<h3>Patient Screening Procedures</h3>
|
||
<p>To minimize risk, we implement screening procedures prior to appointments. Patients may be asked about:</p>
|
||
<ul className="list-style-one clearfix mt-3 mb-3">
|
||
<li>Recent symptoms</li>
|
||
<li>Travel history</li>
|
||
<li>Exposure to contagious illnesses</li>
|
||
<li>Current health status</li>
|
||
</ul>
|
||
<p>If a patient is feeling unwell, we encourage rescheduling to protect others. Our staff also undergo daily health monitoring to maintain a safe environment.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
{/* Card 3: Mask & Hygiene */}
|
||
<div className="col-lg-6 col-md-12 col-sm-12 feature-block d-flex">
|
||
<div className="feature-block-one w-100">
|
||
<div className="inner-box h-100 p-4 shadow-sm border rounded">
|
||
<div className="icon-box-small mb-4" style={{ height: '70px', display: 'flex', alignItems: 'center' }}>
|
||
<img src="/assets/images/covid/mask.webp" alt="Mask & Hygiene" style={{ width: '60px', height: '60px', objectFit: 'contain' }} />
|
||
</div>
|
||
<h3>Mask & Hygiene Policies</h3>
|
||
<p>Mask policies follow current public health recommendations. When required, both staff and patients wear masks during treatment sessions. In addition:</p>
|
||
<ul className="list-style-one clearfix mt-3 mb-3">
|
||
<li>Handwashing is encouraged upon arrival</li>
|
||
<li>Contactless check-in options are available</li>
|
||
<li>Waiting room capacity may be adjusted when necessary</li>
|
||
</ul>
|
||
<p>These small precautions help ensure the highest level of safety for our Etobicoke physiotherapy patients.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
{/* Card 7: Accident & Post-Surgical Support */}
|
||
<div className="col-lg-6 col-md-12 col-sm-12 feature-block d-flex">
|
||
<div className="feature-block-one w-100">
|
||
<div className="inner-box h-100 p-4 shadow-sm border rounded">
|
||
<div className="icon-box-small mb-4" style={{ height: '70px', display: 'flex', alignItems: 'center' }}>
|
||
<img src="/assets/images/covid/support.webp" alt="Accident & Post-Surgical Support" style={{ width: '60px', height: '60px', objectFit: 'contain' }} />
|
||
</div>
|
||
<h3>Support for Accident & Post-Surgical Patients</h3>
|
||
<p>Patients recovering from:</p>
|
||
<ul className="list-style-one clearfix mt-3 mb-3">
|
||
<li>Motor vehicle accidents</li>
|
||
<li>Workplace injuries</li>
|
||
<li>Joint replacement surgery</li>
|
||
<li>Fractures</li>
|
||
<li>Chronic pain conditions</li>
|
||
</ul>
|
||
<p>Our COVID-safe protocols ensure that accident rehab and post-surgical physiotherapy continue without disruption.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
{/* Card 5: Virtual Physiotherapy */}
|
||
<div className="col-lg-6 col-md-12 col-sm-12 feature-block d-flex">
|
||
<div className="feature-block-one w-100">
|
||
<div className="inner-box h-100 p-4 shadow-sm border rounded">
|
||
<div className="icon-box-small mb-4" style={{ height: '70px', display: 'flex', alignItems: 'center' }}>
|
||
<img src="/assets/images/covid/virtual.webp" alt="Virtual Physiotherapy" style={{ width: '60px', height: '60px', objectFit: 'contain' }} />
|
||
</div>
|
||
<h3>Virtual Physiotherapy Options</h3>
|
||
<p>For patients who prefer remote care or cannot attend in person, we offer virtual physiotherapy consultations. Virtual sessions may include:</p>
|
||
<ul className="list-style-one clearfix mt-3 mb-3">
|
||
<li>Guided exercise instruction</li>
|
||
<li>Posture correction advice</li>
|
||
<li>Mobility assessment</li>
|
||
<li>Pain management education</li>
|
||
<li>Home rehabilitation planning</li>
|
||
</ul>
|
||
<p>Telehealth ensures continuity of care for patients across Etobicoke, Toronto, and Mississauga.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
{/* Card 6: Importance of Ongoing Care */}
|
||
<div className="col-lg-6 col-md-12 col-sm-12 feature-block d-flex">
|
||
<div className="feature-block-one w-100">
|
||
<div className="inner-box h-100 p-4 shadow-sm border rounded">
|
||
<div className="icon-box-small mb-4" style={{ height: '70px', display: 'flex', alignItems: 'center' }}>
|
||
<img src="/assets/images/covid/why.webp" alt="Ongoing Care" style={{ width: '60px', height: '60px', objectFit: 'contain' }} />
|
||
</div>
|
||
<h3>Why Ongoing Physiotherapy Is Important</h3>
|
||
<p>Delaying rehabilitation can lead to:</p>
|
||
<ul className="list-style-one clearfix mt-3 mb-3">
|
||
<li>Increased stiffness</li>
|
||
<li>Muscle weakness</li>
|
||
<li>Chronic pain development</li>
|
||
<li>Reduced mobility</li>
|
||
<li>Slower post-surgical recovery</li>
|
||
</ul>
|
||
<p>As a leading physiotherapy clinic in Etobicoke, we emphasize the importance of consistent treatment — even during challenging times. Safe access to rehabilitation is essential for long-term health.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
{/* Card 4: Social Distancing */}
|
||
<div className="col-lg-6 col-md-12 col-sm-12 feature-block d-flex">
|
||
<div className="feature-block-one w-100">
|
||
<div className="inner-box h-100 p-4 shadow-sm border rounded">
|
||
<div className="icon-box-small mb-4" style={{ height: '70px', display: 'flex', alignItems: 'center' }}>
|
||
<img src="/assets/images/covid/social.webp" alt="Social Distancing" style={{ width: '60px', height: '60px', objectFit: 'contain' }} />
|
||
</div>
|
||
<h3>Social Distancing & Appointment Scheduling</h3>
|
||
<p>To reduce congestion:</p>
|
||
<ul className="list-style-one clearfix mt-3 mb-3">
|
||
<li>Appointments are scheduled strategically to minimize overlap</li>
|
||
<li>Treatment spaces are arranged to allow distancing</li>
|
||
<li>Patients are encouraged to arrive at their exact appointment time</li>
|
||
</ul>
|
||
<p>Our goal is to provide smooth, efficient care while maintaining comfort and safety.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
{/* Card 8: Community Responsibility */}
|
||
<div className="col-lg-6 col-md-12 col-sm-12 feature-block d-flex">
|
||
<div className="feature-block-one w-100">
|
||
<div className="inner-box h-100 p-4 shadow-sm border rounded">
|
||
<div className="icon-box-small mb-4" style={{ height: '70px', display: 'flex', alignItems: 'center' }}>
|
||
<img src="/assets/images/covid/community.webp" alt="Community Responsibility" style={{ width: '60px', height: '60px', objectFit: 'contain' }} />
|
||
</div>
|
||
<h3>Community Responsibility</h3>
|
||
<p>Rapha Rehab proudly serves the Etobicoke and Greater Toronto Area communities. We believe healthcare providers play an important role in maintaining public health standards.</p>
|
||
<p>We remain adaptable, transparent, and proactive in maintaining a safe environment for all patients.</p>
|
||
<p>If guidelines change, this page will be updated accordingly.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
{/* Section 4: CTA (Your Health Comes First) */}
|
||
<section
|
||
className="about-style-three pt_90 pb_90"
|
||
style={{ backgroundImage: "url(/assets/images/covid/bg.webp)", backgroundSize: 'cover', backgroundPosition: 'center' }}
|
||
>
|
||
<div className="auto-container">
|
||
<div className="row clearfix align-items-center">
|
||
<div className="col-lg-12 col-md-12 col-sm-12 content-column">
|
||
<div className="content_block_one">
|
||
<div className="content-box">
|
||
<div className="sec-title mb_25">
|
||
<h2 className="text-white">Your Health Comes First</h2>
|
||
</div>
|
||
<div className="text-box mb_40">
|
||
<p className="text-white">If you have questions about safety protocols at our Etobicoke rehabilitation clinic, please contact us before your appointment. We are happy to address concerns and provide reassurance.</p>
|
||
<p className="text-white">Your recovery journey matters — and we are committed to providing safe, professional physiotherapy care every step of the way.</p>
|
||
</div>
|
||
<div className="btn-box">
|
||
<Link href="/contact" className="theme-btn btn-one-new"><span>Contact Us Today</span></Link>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
</>
|
||
);
|
||
}
|