Compare commits
2 Commits
a43e8c51ea
...
ecdab8d545
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ecdab8d545 | ||
|
|
285778ae23 |
@ -1,262 +0,0 @@
|
||||
'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 – Rapharehab Physiotherapy Clinic in Etobicoke</h2>
|
||||
</div>
|
||||
<div className="text-box">
|
||||
<p>At Rapharehab, 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>Rapharehab 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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
@ -1,21 +0,0 @@
|
||||
import Layout from "@/components/layout/Layout";
|
||||
import CovidClient from "./CovidClient";
|
||||
|
||||
export const metadata = {
|
||||
title: "COVID-19 Updates | Safety & Virtual Care at Rapharehab",
|
||||
description:
|
||||
"COVID-19 updates from Rapharehab, including safety protocols, virtual therapy options, and at-home physiotherapy to ensure safe care.",
|
||||
};
|
||||
|
||||
export default function CovidPage() {
|
||||
return (
|
||||
<Layout
|
||||
headerStyle={1}
|
||||
footerStyle={1}
|
||||
breadcrumbTitle="COVID-19 Updates"
|
||||
bannerImage="/assets/images/covid/covid-19-banner.webp"
|
||||
>
|
||||
<CovidClient />
|
||||
</Layout>
|
||||
);
|
||||
}
|
||||
@ -30,7 +30,7 @@ export default function Menu() {
|
||||
<li><Link href="/our-team-physiotherapy-etobicoke" aria-label="Our Team">Our Team</Link></li>
|
||||
<li><Link href="/our-approach-physiotherapy-etobicoke" aria-label="Our Approach">Our Approach</Link></li>
|
||||
<li><Link href="/gallery-physiotherapy-etobicoke" aria-label="Gallery">Gallery</Link></li>
|
||||
<li><Link href="/covid-19-updates-etobicoke" aria-label="Covid 19 Updates">Covid-19-Updates</Link></li>
|
||||
{/* <li><Link href="/covid-19-updates-etobicoke" aria-label="Covid 19 Updates">Covid-19-Updates</Link></li> */}
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
|
||||
@ -95,7 +95,7 @@ export default function MobileMenu({ isSidebar, handleMobileMenu, handleSidebar
|
||||
<li><Link href="/our-team-physiotherapy-etobicoke" onClick={closeMenu} aria-label="Out Team">Our Team</Link></li>
|
||||
<li><Link href="/our-approach-physiotherapy-etobicoke" onClick={closeMenu} aria-label="Our approach">Our Approach</Link></li>
|
||||
<li><Link href="/gallery-physiotherapy-etobicoke" onClick={closeMenu} aria-label="Gallery">Gallery</Link></li>
|
||||
<li><Link href="/covid-19-updates-etobicoke" onClick={closeMenu} aria-label="Covid-19 Updates">Covid-19 Updates</Link></li>
|
||||
{/* <li><Link href="/covid-19-updates-etobicoke" onClick={closeMenu} aria-label="Covid-19 Updates">Covid-19 Updates</Link></li> */}
|
||||
</ul>
|
||||
<div
|
||||
className={isActive.key == 1 ? "dropdown-btn open" : "dropdown-btn"}
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -46,7 +46,6 @@ const staticLinks = [
|
||||
{ url: '/our-approach-physiotherapy-etobicoke/', changefreq: 'monthly', priority: 0.5 },
|
||||
{ url: '/our-team-physiotherapy-etobicoke/', changefreq: 'weekly', priority: 0.6 },
|
||||
{ url: '/gallery-physiotherapy-etobicoke/', changefreq: 'weekly', priority: 0.6 },
|
||||
{ url: '/covid-19-updates-etobicoke/', changefreq: 'weekly', priority: 0.6 },
|
||||
{ url: '/etobicoke-treatment-service/', changefreq: 'weekly', priority: 0.6 },
|
||||
{ url: '/area-of-injury/', changefreq: 'weekly', priority: 0.6 },
|
||||
{ url: '/rehabilitation/', changefreq: 'weekly', priority: 0.6 },
|
||||
@ -81,7 +80,7 @@ const blogPosts = [
|
||||
{ slug: '/blog/what-makes-rapha-rehabs-massage-therapy-among-the-best-in-etobicoke/' },
|
||||
{ slug: '/blog/why-choose-rapha-rehab-for-the-best-custom-orthotics-in-etobicoke/' },
|
||||
{ slug: '/blog/what-makes-rapha-rehab-offer-the-best-acupuncture-in-etobicoke/' },
|
||||
{ slug: '/blog/what-makes-rapha-rehab-massage-therapy-among-the-best-in-etobicoke/' },
|
||||
{ slug: '/blog/what-makes-rapha-rehab-massage-therapy-in-etobicoke-so-special/' },
|
||||
{ slug: '/blog/how-rapha-rehab-delivers-the-best-long-term-pain-management-in-etobicoke/' },
|
||||
{ slug: '/blog/why-is-rapha-rehab-known-for-the-best-sports-injury-treatments/' },
|
||||
{ slug: '/blog/what-makes-rapha-rehab-offer-the-best-pelvic-floor-physiotherapy/' },
|
||||
@ -118,7 +117,7 @@ const services = [
|
||||
{ slug: '/etobicoke-treatment-service/orthotics-in-etobicoke/' },
|
||||
{ slug: '/etobicoke-treatment-service/foot-reflexology-clinic-in-etobicoke/' },
|
||||
{ slug: '/etobicoke-treatment-service/custom-knee-braces-clinic-in-etobicoke/' },
|
||||
{ slug: '/etobicoke-treatment-service/laser-therapy-electrical-modalities/' },
|
||||
{ slug: '/etobicoke-treatment-service/laser-therapy-electrical-modalities-in-etobicoke/' },
|
||||
{ slug: '/etobicoke-treatment-service/virtual-care-physiotherapy-clinic-in-etobicoke/' },
|
||||
{ slug: '/etobicoke-treatment-service/naturopathy-clinic-in-etobicoke/' },
|
||||
{ slug: '/etobicoke-treatment-service/spinal-decompression-therapy-clinic-in-etobicoke/' },
|
||||
|
||||
@ -5130,8 +5130,8 @@ Rapharehab offers Etobicoke players a spot where -</p>
|
||||
},
|
||||
{
|
||||
"id": "23",
|
||||
"slug": "what-makes-rapha-rehab-massage-therapy-among-the-best-in-etobicoke",
|
||||
"title": "What Makes Rapharehab’s Massage Therapy Among the Best in Etobicoke?",
|
||||
"slug": "what-makes-rapha-rehab-massage-therapy-in-etobicoke-so-special",
|
||||
"title": "What Makes Rapha Rehab's Massage Therapy in Etobicoke So Special",
|
||||
"thumbnail": "/assets/images/blog/blog-24/massage-card.webp",
|
||||
"bannerImage": "/assets/images/blog/blog-24/massage-banner.webp",
|
||||
"author": "Admin",
|
||||
|
||||
@ -1124,10 +1124,10 @@ export const servicesList = [
|
||||
,
|
||||
{
|
||||
"id": "11",
|
||||
"slug": "laser-therapy-electrical-modalities",
|
||||
"slug": "laser-therapy-electrical-modalities-in-etobicoke",
|
||||
"shortTitle": "Laser Therapy & Electrical Modalities",
|
||||
"alt": "laser therapy electrical modalities | Rapharehab",
|
||||
"title": "Laser Therapy & Electrical Modalities",
|
||||
"title": "Laser Therapy & Electrical Modalities in Etobicoke",
|
||||
"bannerImage": "/assets/images/services/laser/laser-banner.webp",
|
||||
"image": "/assets/images/services/laser/left.webp",
|
||||
"sidebarImg": "/assets/images/services/laser/left.webp",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user