Merge branch 'team' of https://git.metatroncube.in/MetatroncubeSoftwareSolutions/rapharehap into team
73
app/accident/[slug]/page.js
Normal file
@ -0,0 +1,73 @@
|
||||
'use client';
|
||||
import Layout from "@/components/layout/Layout";
|
||||
import Link from "next/link";
|
||||
import { useParams, notFound } from "next/navigation";
|
||||
import Accident from "@/utils/Accident.utils";
|
||||
|
||||
export default function AccidentDetailsPage() {
|
||||
const params = useParams();
|
||||
const service = Accident.find((item) => item.slug === params.slug);
|
||||
|
||||
if (!service) return notFound();
|
||||
|
||||
return (
|
||||
<Layout headerStyle={2} footerStyle={1} breadcrumbTitle={`${service.title}`}>
|
||||
<section className="service-details pt_120 pb_110">
|
||||
<div className="auto-container">
|
||||
<div className="row clearfix">
|
||||
|
||||
<div className="col-lg-4 col-md-12 col-sm-12 sidebar-side">
|
||||
<div className="default-sidebar service-sidebar mr_15">
|
||||
|
||||
<div className="sidebar-widget category-widget">
|
||||
<div className="widget-title"><h3>Categories</h3></div>
|
||||
<div className="widget-content">
|
||||
<ul className="category-list clearfix">
|
||||
{Accident.map((cat) => (
|
||||
<li key={cat.id}>
|
||||
<Link
|
||||
href={`/accident/${cat.slug}`}
|
||||
className={cat.slug === service.slug ? "current" : ""}
|
||||
>
|
||||
{cat.title}
|
||||
</Link>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="service-block-one">
|
||||
<div className="inner-box">
|
||||
<div className="image-box">
|
||||
<figure className="image">
|
||||
<img src={service.mainImage} alt={service.title} />
|
||||
</figure>
|
||||
<div className="icon-box"><i className="icon-30"></i></div>
|
||||
</div>
|
||||
<div className="lower-content">
|
||||
<h3>{service.title}</h3>
|
||||
<p>{service.shortDesc}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Content */}
|
||||
<div className="col-lg-8 col-md-12 col-sm-12 content-side">
|
||||
<div className="service-details-content">
|
||||
<div
|
||||
className="service-details-description"
|
||||
dangerouslySetInnerHTML={{ __html: service.content }}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</Layout>
|
||||
);
|
||||
}
|
||||
43
app/accident/page.js
Normal file
@ -0,0 +1,43 @@
|
||||
'use client';
|
||||
import Layout from "@/components/layout/Layout";
|
||||
import Link from "next/link";
|
||||
import Accident from "@/utils/Accident.utils";
|
||||
|
||||
export default function AccidentPage() {
|
||||
return (
|
||||
<Layout headerStyle={2} footerStyle={1} breadcrumbTitle="Accident">
|
||||
<section className="service-section sec-pad-2">
|
||||
<div className="auto-container">
|
||||
<div className="row clearfix">
|
||||
{Accident.map((service, index) => (
|
||||
<div key={service.id} className="col-lg-4 col-md-6 col-sm-12 service-block">
|
||||
<div
|
||||
className="service-block-one wow fadeInUp animated"
|
||||
data-wow-delay={`${index * 300}ms`}
|
||||
data-wow-duration="1500ms"
|
||||
>
|
||||
<div className="inner-box">
|
||||
<div className="image-box">
|
||||
<figure className="image">
|
||||
<Link href={`/accident/${service.slug}`}>
|
||||
<img src={service.mainImage} alt={service.title} />
|
||||
</Link>
|
||||
</figure>
|
||||
<div className="icon-box"><i className="icon-30"></i></div>
|
||||
</div>
|
||||
<div className="lower-content">
|
||||
<h3>
|
||||
<Link href={`/accident/${service.slug}`}>{service.title}</Link>
|
||||
</h3>
|
||||
<p>{service.shortDesc}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</Layout>
|
||||
);
|
||||
}
|
||||
133
app/area-of-injury/[slug]/page.js
Normal file
@ -0,0 +1,133 @@
|
||||
"use client";
|
||||
|
||||
import Layout from "@/components/layout/Layout";
|
||||
import Link from "next/link";
|
||||
import { useParams, notFound } from "next/navigation";
|
||||
import { areaOfInjuryData } from "@/utils/AreaOfInjery.utils";
|
||||
|
||||
export default function AreaOfInjuryDetails() {
|
||||
const params = useParams();
|
||||
const service = areaOfInjuryData.find((item) => item.slug === params.slug);
|
||||
|
||||
if (!service) return notFound();
|
||||
|
||||
return (
|
||||
<Layout headerStyle={2} footerStyle={1} breadcrumbTitle={service.title}>
|
||||
<section className="service-details pt_120 pb_110">
|
||||
<div className="auto-container">
|
||||
<div className="row clearfix">
|
||||
{/* Sidebar */}
|
||||
<div className="col-lg-4 col-md-12 col-sm-12 sidebar-side">
|
||||
<div className="default-sidebar service-sidebar mr_15">
|
||||
|
||||
{/* Categories */}
|
||||
<div className="sidebar-widget category-widget">
|
||||
<div className="widget-title">
|
||||
<h3>Categories</h3>
|
||||
</div>
|
||||
<div className="widget-content">
|
||||
<ul className="category-list clearfix">
|
||||
{areaOfInjuryData.map((cat) => (
|
||||
<li key={cat.id}>
|
||||
<Link
|
||||
href={`/area-of-injury/${cat.slug}`}
|
||||
className={cat.slug === service.slug ? "current" : ""}
|
||||
>
|
||||
{cat.title}
|
||||
</Link>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Sidebar Service Card */}
|
||||
<div className="service-block-one">
|
||||
<div className="inner-box">
|
||||
<div className="image-box">
|
||||
<figure className="image">
|
||||
<img src={service.image} alt={service.title} />
|
||||
</figure>
|
||||
<div className="icon-box">
|
||||
<i className={service.icon}></i>
|
||||
</div>
|
||||
</div>
|
||||
<div className="lower-content">
|
||||
<h3>{service.title}</h3>
|
||||
<p>{service.shortDescription}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Main Content */}
|
||||
<div className="col-lg-8 col-md-12 col-sm-12 content-side">
|
||||
<div className="service-details-content">
|
||||
<div className="content-one mb_60">
|
||||
{/* Main Image */}
|
||||
<figure className="image-box mb_40">
|
||||
<img src={service.mainImage} alt={service.title} />
|
||||
</figure>
|
||||
<div className="text-box">
|
||||
<h2>{service.title}</h2>
|
||||
</div>
|
||||
|
||||
{/* Dynamic Content */}
|
||||
<div
|
||||
className="service-details-description"
|
||||
dangerouslySetInnerHTML={{ __html: service.content }}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Subscribe Section */}
|
||||
<section className="subscribe-section">
|
||||
<div className="auto-container">
|
||||
<div className="inner-container">
|
||||
<div className="row align-items-center">
|
||||
<div className="col-lg-6 col-md-12 col-sm-12 text-column">
|
||||
<div className="text-box">
|
||||
<h2>
|
||||
<span>Subscribe</span> for the exclusive updates!
|
||||
</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-lg-6 col-md-12 col-sm-12 form-column">
|
||||
<div className="form-inner">
|
||||
<form method="post" action="contact">
|
||||
<div className="form-group">
|
||||
<input
|
||||
type="email"
|
||||
name="email"
|
||||
placeholder="Enter Your Email Address"
|
||||
required
|
||||
/>
|
||||
<button type="submit" className="theme-btn btn-one">
|
||||
<span>Subscribe Now</span>
|
||||
</button>
|
||||
</div>
|
||||
<div className="form-group">
|
||||
<div className="check-box">
|
||||
<input className="check" type="checkbox" id="checkbox1" />
|
||||
<label htmlFor="checkbox1">
|
||||
I agree to the <Link href="/">Privacy Policy.</Link>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</Layout>
|
||||
);
|
||||
}
|
||||
39
app/area-of-injury/page.js
Normal file
@ -0,0 +1,39 @@
|
||||
'use client';
|
||||
import Layout from "@/components/layout/Layout"
|
||||
import Link from "next/link"
|
||||
import { areaOfInjuryData } from "@/utils/AreaOfInjery.utils"
|
||||
|
||||
export default function AreaOfInjury() {
|
||||
return (
|
||||
<Layout headerStyle={2} footerStyle={1} breadcrumbTitle="Areas of Injury">
|
||||
<section className="service-section sec-pad-2">
|
||||
<div className="auto-container">
|
||||
<div className="row clearfix">
|
||||
{areaOfInjuryData.map((item) => (
|
||||
<div className="col-lg-4 col-md-6 col-sm-12 service-block" key={item.id}>
|
||||
<div className="service-block-one wow fadeInUp animated" data-wow-delay="00ms" data-wow-duration="1500ms">
|
||||
<div className="inner-box">
|
||||
<div className="image-box">
|
||||
<figure className="image">
|
||||
<Link href={`/area-of-injury/${item.slug}`}>
|
||||
<img src={item.image} alt={item.title} />
|
||||
</Link>
|
||||
</figure>
|
||||
<div className="icon-box"><i className={item.icon}></i></div>
|
||||
</div>
|
||||
<div className="lower-content">
|
||||
<h3>
|
||||
<Link href={`/area-of-injury/${item.slug}`}>{item.title}</Link>
|
||||
</h3>
|
||||
<p>{item.shortDescription}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</Layout>
|
||||
)
|
||||
}
|
||||
107
app/etobicoke-treatment-service/[slug]/ServiceDetailClient.js
Normal file
@ -0,0 +1,107 @@
|
||||
'use client'
|
||||
|
||||
import Link from "next/link";
|
||||
import { useState } from "react";
|
||||
|
||||
export default function ServiceDetailClient({ slug, service, servicesList }) {
|
||||
const [isActive, setIsActive] = useState({ status: false, key: 1 });
|
||||
|
||||
const handleToggle = (key) => {
|
||||
if (isActive.key === key) {
|
||||
setIsActive({ status: false });
|
||||
} else {
|
||||
setIsActive({ status: true, key });
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<div>
|
||||
{/* service-section */}
|
||||
<section className="service-details pt_120 pb_110">
|
||||
<div className="auto-container">
|
||||
<div className="row clearfix">
|
||||
|
||||
<div className="col-lg-4 col-md-12 col-sm-12 sidebar-side">
|
||||
<div className="default-sidebar service-sidebar mr_15">
|
||||
<div className="sidebar-widget category-widget">
|
||||
<div className="widget-title"><h3>Services</h3></div>
|
||||
<div className="widget-content">
|
||||
<ul className="category-list clearfix">
|
||||
{servicesList.map((item) => (
|
||||
<li key={item.slug}>
|
||||
<Link
|
||||
href={`/etobicoke-treatment-service/${item.slug}`}
|
||||
className={slug === item.slug ? "current" : ""}
|
||||
>
|
||||
{item.shortTitle}
|
||||
</Link>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div className="service-block-one">
|
||||
|
||||
<div className="inner-box">
|
||||
<div className="image-box">
|
||||
<figure className="image">
|
||||
<img src={service.sidebarImg} alt="" /></figure>
|
||||
<div className="icon-box"><i className="icon-30"></i></div>
|
||||
</div>
|
||||
<div className="lower-content">
|
||||
<h3>{service.shortTitle}</h3>
|
||||
<p>{service.shortDescrition}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Content */}
|
||||
<div className="col-lg-8 col-md-12 col-sm-12 content-side">
|
||||
<div className="service-details-content">
|
||||
<div className="content-one mb_60">
|
||||
<figure className="image-box mb_40"><img src={service.bigImg} alt="" /></figure>
|
||||
|
||||
<div dangerouslySetInnerHTML={{ __html: service.description } || "No description available." }/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{/* service-section end */}
|
||||
{/* subscibe */}
|
||||
<section className="subscribe-section">
|
||||
<div className="auto-container">
|
||||
<div className="inner-container">
|
||||
<div className="row align-items-center">
|
||||
<div className="col-lg-6 col-md-12 col-sm-12 text-column">
|
||||
<div className="text-box">
|
||||
<h2><span>Subscribe</span> for the exclusive updates!</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-lg-6 col-md-12 col-sm-12 form-column">
|
||||
<div className="form-inner">
|
||||
<form method="post" action="contact">
|
||||
<div className="form-group">
|
||||
<input type="email" name="email" placeholder="Enter Your Email Address" required />
|
||||
<button type="submit" className="theme-btn btn-one"><span>Subscribe Now</span></button>
|
||||
</div>
|
||||
<div className="form-group">
|
||||
<div className="check-box">
|
||||
<input className="check" type="checkbox" id="checkbox1" />
|
||||
<label htmlFor="checkbox1">I agree to the <Link href="/">Privacy Policy.</Link></label>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{/* subscibe end */}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
26
app/etobicoke-treatment-service/[slug]/page.js
Normal file
@ -0,0 +1,26 @@
|
||||
import Layout from "@/components/layout/Layout";
|
||||
import { servicesList } from "@/utils/Services.utils";
|
||||
import ServiceDetailClient from "./ServiceDetailClient";
|
||||
|
||||
|
||||
|
||||
export async function generateStaticParams() {
|
||||
return servicesList.map((item) => ({
|
||||
slug: item.slug,
|
||||
}));
|
||||
}
|
||||
|
||||
export default function ServiceDetailPage({ params }) {
|
||||
const { slug } = params;
|
||||
const service = servicesList.find((item) => item.slug === slug);
|
||||
|
||||
if (!service) {
|
||||
return <div>Service not found</div>;
|
||||
}
|
||||
|
||||
return (
|
||||
<Layout headerStyle={2} footerStyle={1} breadcrumbTitle={service.shortTitle}>
|
||||
<ServiceDetailClient slug={slug} service={service} servicesList={servicesList} />
|
||||
</Layout>
|
||||
);
|
||||
}
|
||||
170
app/etobicoke-treatment-service/page.js
Normal file
@ -0,0 +1,170 @@
|
||||
'use client'
|
||||
import Layout from "@/components/layout/Layout"
|
||||
import Link from "next/link"
|
||||
import { useState } from 'react'
|
||||
export default function Home() {
|
||||
const [isActive, setIsActive] = useState({
|
||||
status: false,
|
||||
key: 1,
|
||||
})
|
||||
|
||||
const handleToggle = (key) => {
|
||||
if (isActive.key === key) {
|
||||
setIsActive({
|
||||
status: false,
|
||||
})
|
||||
} else {
|
||||
setIsActive({
|
||||
status: true,
|
||||
key,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
return (
|
||||
<>
|
||||
<Layout headerStyle={2} footerStyle={1} breadcrumbTitle="Our Services">
|
||||
<div>
|
||||
{/* service-style-two */}
|
||||
<section className="service-section sec-pad-2">
|
||||
<div className="auto-container">
|
||||
<div className="row clearfix">
|
||||
<div className="col-lg-4 col-md-6 col-sm-12 service-block">
|
||||
<div className="service-block-one wow fadeInUp animated" data-wow-delay="00ms" data-wow-duration="1500ms">
|
||||
<div className="inner-box">
|
||||
<div className="image-box">
|
||||
<figure className="image"><Link href="service-details"><img src="assets/images/service/service-4.jpg" alt="" /></Link></figure>
|
||||
<div className="icon-box"><i className="icon-30"></i></div>
|
||||
</div>
|
||||
<div className="lower-content">
|
||||
<h3><Link href="service-details">Cardiology</Link></h3>
|
||||
<p>Amet minim mollit non deserunt ullamco aliqua dolor do amet sint.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/* Repeat the above block for other service items */}
|
||||
<div className="col-lg-4 col-md-6 col-sm-12 service-block">
|
||||
<div className="service-block-one wow fadeInUp animated" data-wow-delay="300ms" data-wow-duration="1500ms">
|
||||
<div className="inner-box">
|
||||
<div className="image-box">
|
||||
<figure className="image"><Link href="service-details-6"><img src="assets/images/service/service-2.jpg" alt="" /></Link></figure>
|
||||
<div className="icon-box"><i className="icon-16"></i></div>
|
||||
</div>
|
||||
<div className="lower-content">
|
||||
<h3><Link href="service-details-6">Modern Laboratory</Link></h3>
|
||||
<p>Amet minim mollit non deserunt ullamco aliqua dolor do amet sint.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/* Repeat the above block for other service items */}
|
||||
<div className="col-lg-4 col-md-6 col-sm-12 service-block">
|
||||
<div className="service-block-one wow fadeInUp animated" data-wow-delay="600ms" data-wow-duration="1500ms">
|
||||
<div className="inner-box">
|
||||
<div className="image-box">
|
||||
<figure className="image"><Link href="service-details-2"><img src="assets/images/service/service-5.jpg" alt="" /></Link></figure>
|
||||
<div className="icon-box"><i className="icon-32"></i></div>
|
||||
</div>
|
||||
<div className="lower-content">
|
||||
<h3><Link href="service-details-2">Dental Clinic</Link></h3>
|
||||
<p>Amet minim mollit non deserunt ullamco aliqua dolor do amet sint.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/* Repeat the above block for other service items */}
|
||||
<div className="col-lg-4 col-md-6 col-sm-12 service-block">
|
||||
<div className="service-block-one wow fadeInUp animated" data-wow-delay="00ms" data-wow-duration="1500ms">
|
||||
<div className="inner-box">
|
||||
<div className="image-box">
|
||||
<figure className="image"><Link href="service-details-3"><img src="assets/images/service/service-1.jpg" alt="" /></Link></figure>
|
||||
<div className="icon-box"><i className="icon-15"></i></div>
|
||||
</div>
|
||||
<div className="lower-content">
|
||||
<h3><Link href="service-details-3">Neurosurgery</Link></h3>
|
||||
<p>Amet minim mollit non deserunt ullamco aliqua dolor do amet sint.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/* Repeat the above block for other service items */}
|
||||
<div className="col-lg-4 col-md-6 col-sm-12 service-block">
|
||||
<div className="service-block-one wow fadeInUp animated" data-wow-delay="300ms" data-wow-duration="1500ms">
|
||||
<div className="inner-box">
|
||||
<div className="image-box">
|
||||
<figure className="image"><Link href="service-details-5"><img src="assets/images/service/service-6.jpg" alt="" /></Link></figure>
|
||||
<div className="icon-box"><i className="icon-31"></i></div>
|
||||
</div>
|
||||
<div className="lower-content">
|
||||
<h3><Link href="service-details-5">Pediatrics</Link></h3>
|
||||
<p>Amet minim mollit non deserunt ullamco aliqua dolor do amet sint.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/* Repeat the above block for other service items */}
|
||||
<div className="col-lg-4 col-md-6 col-sm-12 service-block">
|
||||
<div className="service-block-one wow fadeInUp animated" data-wow-delay="600ms" data-wow-duration="1500ms">
|
||||
<div className="inner-box">
|
||||
<div className="image-box">
|
||||
<figure className="image"><Link href="service-details-4"><img src="assets/images/service/service-3.jpg" alt="" /></Link></figure>
|
||||
<div className="icon-box"><i className="icon-17"></i></div>
|
||||
</div>
|
||||
<div className="lower-content">
|
||||
<h3><Link href="service-details-4">Experienced Doctors</Link></h3>
|
||||
<p>Amet minim mollit non deserunt ullamco aliqua dolor do amet sint.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/* Repeat the above block for other service items */}
|
||||
</div>
|
||||
<div className="pagination-wrapper mt_20 centred">
|
||||
<ul className="pagination clearfix">
|
||||
<li><Link href="service" className="current">1</Link></li>
|
||||
<li><Link href="service">2</Link></li>
|
||||
<li><Link href="service">3</Link></li>
|
||||
<li><Link href="service"><i className="icon-36"></i></Link></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{/* service-style-two end */}
|
||||
{/* subscibe */}
|
||||
<section className="subscribe-section">
|
||||
<div className="auto-container">
|
||||
<div className="inner-container">
|
||||
<div className="row align-items-center">
|
||||
<div className="col-lg-6 col-md-12 col-sm-12 text-column">
|
||||
<div className="text-box">
|
||||
<h2><span>Subscribe</span> for the exclusive updates!</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-lg-6 col-md-12 col-sm-12 form-column">
|
||||
<div className="form-inner">
|
||||
<form method="post" action="contact">
|
||||
<div className="form-group">
|
||||
<input type="email" name="email" placeholder="Enter Your Email Address" required />
|
||||
<button type="submit" className="theme-btn btn-one"><span>Subscribe Now</span></button>
|
||||
</div>
|
||||
<div className="form-group">
|
||||
<div className="check-box">
|
||||
<input className="check" type="checkbox" id="checkbox1" />
|
||||
<label htmlFor="checkbox1">I agree to the <Link href="/">Privacy Policy.</Link></label>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{/* subscibe end */}
|
||||
</div>
|
||||
|
||||
</Layout>
|
||||
</>
|
||||
)
|
||||
}
|
||||
154
app/faq-physiotherapy-etobicoke/page.js
Normal file
@ -0,0 +1,154 @@
|
||||
'use client'
|
||||
import Layout from "@/components/layout/Layout";
|
||||
import Link from "next/link";
|
||||
import { useState } from 'react';
|
||||
|
||||
export default function Faq() {
|
||||
const [isActive, setIsActive] = useState({
|
||||
status: false,
|
||||
key: 1,
|
||||
});
|
||||
|
||||
const handleToggle = (key) => {
|
||||
if (isActive.key === key) {
|
||||
setIsActive({
|
||||
status: false,
|
||||
});
|
||||
} else {
|
||||
setIsActive({
|
||||
status: true,
|
||||
key,
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<>
|
||||
<Layout headerStyle={2} footerStyle={1} breadcrumbTitle="Faq's">
|
||||
|
||||
{/* faq */}
|
||||
<section className="faq-section pt_120 pb_120">
|
||||
<div className="auto-container">
|
||||
<div className="sec-title centred mb_50">
|
||||
<span className="sub-title">FAQ'S</span>
|
||||
<h2>Do You Have Any Physiotherapy <br />Questions?</h2>
|
||||
</div>
|
||||
|
||||
<div className="row align-items-center clearfix">
|
||||
|
||||
{/* Left Side Image */}
|
||||
<div className="col-lg-6 col-md-12 col-sm-12 image-column mb-5 text-center text-lg-start">
|
||||
<div className="image_block_four">
|
||||
<div className="image-box">
|
||||
<figure>
|
||||
<img
|
||||
src="assets/images/resource/faq-1.png"
|
||||
alt="FAQ Illustration"
|
||||
className="img-fluid"
|
||||
style={{ height: "550px", objectFit: "cover" }}
|
||||
/>
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Right Side FAQ Content */}
|
||||
<div className="col-lg-6 col-md-12 col-sm-12 content-column">
|
||||
<div className="content-box">
|
||||
<ul className="accordion-box">
|
||||
|
||||
{/* FAQ 1 */}
|
||||
<li className="accordion block">
|
||||
<div
|
||||
className={isActive.key === 1 ? "acc-btn active" : "acc-btn"}
|
||||
onClick={() => handleToggle(1)}
|
||||
>
|
||||
<div className="icon-box"><i className="icon-34"></i></div>
|
||||
<h5>What is physiotherapy?</h5>
|
||||
</div>
|
||||
<div className={isActive.key === 1 ? "acc-content current" : "acc-content"}>
|
||||
<div className="content">
|
||||
<div className="text">
|
||||
<p>Physiotherapists are medical professionals who specialize in treating injuries and conditions that impact movement.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
{/* FAQ 2 */}
|
||||
<li className="accordion block">
|
||||
<div
|
||||
className={isActive.key === 2 ? "acc-btn active" : "acc-btn"}
|
||||
onClick={() => handleToggle(2)}
|
||||
>
|
||||
<div className="icon-box"><i className="icon-34"></i></div>
|
||||
<h5>What does the physiotherapist do?</h5>
|
||||
</div>
|
||||
<div className={isActive.key === 2 ? "acc-content current" : "acc-content"}>
|
||||
<div className="content">
|
||||
<div className="text">
|
||||
<p>Physiotherapists help people affected by injury, illness or disability through electrical modalities, movement, exercise, manual therapy, education and advice. We at Rapharehab Physiotherapy clinic Etobicoke for people of all ages, helping patients to manage pain and prevent disease.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
{/* FAQ 3 */}
|
||||
<li className="accordion block">
|
||||
<div
|
||||
className={isActive.key === 3 ? "acc-btn active" : "acc-btn"}
|
||||
onClick={() => handleToggle(3)}
|
||||
>
|
||||
<div className="icon-box"><i className="icon-34"></i></div>
|
||||
<h5>How Long Will Your session Take?</h5>
|
||||
</div>
|
||||
<div className={isActive.key === 3 ? "acc-content current" : "acc-content"}>
|
||||
<div className="content">
|
||||
<div className="text">
|
||||
<p>The duration of the program will depend on an individual's healing rate and condition being treated. Every condition is different, and everyone heals at different rates. Minor injuries you might expect 2-3 sessions of physiotherapy while the soft tissue injuries may take even longer.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{/* faq end */}
|
||||
|
||||
{/* subscibe */}
|
||||
<section className="subscribe-section">
|
||||
<div className="auto-container">
|
||||
<div className="inner-container">
|
||||
<div className="row align-items-center">
|
||||
<div className="col-lg-6 col-md-12 col-sm-12 text-column">
|
||||
<div className="text-box">
|
||||
<h2><span>Subscribe</span> for the exclusive updates!</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-lg-6 col-md-12 col-sm-12 form-column">
|
||||
<div className="form-inner">
|
||||
<form method="post" action="contact">
|
||||
<div className="form-group">
|
||||
<input type="email" name="email" placeholder="Enter Your Email Address" required />
|
||||
<button type="submit" className="theme-btn btn-one"><span>Subscribe Now</span></button>
|
||||
</div>
|
||||
<div className="form-group">
|
||||
<div className="check-box">
|
||||
<input className="check" type="checkbox" id="checkbox1" />
|
||||
<label htmlFor="checkbox1">I agree to the <Link href="/">Privacy Policy.</Link></label>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</Layout>
|
||||
</>
|
||||
);
|
||||
}
|
||||
76
app/payment-insurance/page.js
Normal file
@ -0,0 +1,76 @@
|
||||
import Link from "next/link"
|
||||
import Layout from "@/components/layout/Layout"
|
||||
|
||||
|
||||
export default function About() {
|
||||
return (
|
||||
<>
|
||||
<Layout headerStyle={2} footerStyle={1} breadcrumbTitle="Payment And Insurance">
|
||||
{/* chooseus-section */}
|
||||
<section className="solutions-section">
|
||||
<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">Better Solutions</span> */}
|
||||
<h2>Payment and Insurance</h2>
|
||||
</div>
|
||||
<div className="progress-inner mb_50">
|
||||
<p>At rapharehab Etobicoke Physiotherapy clinic, your treatments are partially or fully covered by health insurance plans and Workplace Safety and Insurance Board (WSIB). If you have medical health care coverage, we believe your treatment costs will be covered by health care plans. The treatments such as physiotherapy, massage therapy, chiropractic care, acupuncture, orthotics etc., all can be covered by health care insurance.</p>
|
||||
<ul className="list-style-one clearfix mt-4">
|
||||
<li>In case if you are injured in a motor vehicle accident (MVA), the auto insurance covers the cost of the treatment.</li>
|
||||
<li>Please get in touch with rapharehab Physiotherapy clinic etobicoke for assistance to know about your coverage.</li>
|
||||
<li>We Accept Cash/Cheque/Visa/Direct Payment.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-lg-6 col-md-12 col-sm-12 image-column">
|
||||
<div className="image_block_two">
|
||||
<div className="image-box">
|
||||
<figure className="image image-1"><img src="assets/images/resource/skills-1.jpg" alt="" /></figure>
|
||||
<figure className="image image-2"><img src="assets/images/resource/skills-2.jpg" alt="" /></figure>
|
||||
<div className="icon-box"><i className="icon-33"></i></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{/* chooseus-section end */}
|
||||
{/* subscibe */}
|
||||
<section className="subscribe-section">
|
||||
<div className="auto-container">
|
||||
<div className="inner-container">
|
||||
<div className="row align-items-center">
|
||||
<div className="col-lg-6 col-md-12 col-sm-12 text-column">
|
||||
<div className="text-box">
|
||||
<h2><span>Subscribe</span> for the exclusive updates!</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-lg-6 col-md-12 col-sm-12 form-column">
|
||||
<div className="form-inner">
|
||||
<form method="post" action="contact">
|
||||
<div className="form-group">
|
||||
<input type="email" name="email" placeholder="Enter Your Email Address" required />
|
||||
<button type="submit" className="theme-btn btn-one"><span>Subscribe Now</span></button>
|
||||
</div>
|
||||
<div className="form-group">
|
||||
<div className="check-box">
|
||||
<input className="check" type="checkbox" id="checkbox1" />
|
||||
<label htmlFor="checkbox1">I agree to the <Link href="index">Privacy Policy.</Link></label>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{/* subscibe end */}
|
||||
</Layout>
|
||||
</>
|
||||
)
|
||||
}
|
||||
73
app/rehabilitation/[slug]/page.js
Normal file
@ -0,0 +1,73 @@
|
||||
'use client';
|
||||
import Layout from "@/components/layout/Layout";
|
||||
import Link from "next/link";
|
||||
import { useParams, notFound } from "next/navigation";
|
||||
import Rehabilitation from "@/utils/Rehabilitation.utils";
|
||||
|
||||
export default function RehabilitationDetailsPage() {
|
||||
const params = useParams();
|
||||
const service = Rehabilitation.find((item) => item.slug === params.slug);
|
||||
|
||||
if (!service) return notFound();
|
||||
|
||||
return (
|
||||
<Layout headerStyle={2} footerStyle={1} breadcrumbTitle={`${service.title}`} bannerImage={service.bannerImage}>
|
||||
<section className="service-details pt_120 pb_110">
|
||||
<div className="auto-container">
|
||||
<div className="row clearfix">
|
||||
|
||||
<div className="col-lg-4 col-md-12 col-sm-12 sidebar-side">
|
||||
<div className="default-sidebar service-sidebar mr_15">
|
||||
|
||||
<div className="sidebar-widget category-widget">
|
||||
<div className="widget-title"><h3>Categories</h3></div>
|
||||
<div className="widget-content">
|
||||
<ul className="category-list clearfix">
|
||||
{Rehabilitation.map((cat) => (
|
||||
<li key={cat.id}>
|
||||
<Link
|
||||
href={`/rehabilitation/${cat.slug}`}
|
||||
className={cat.slug === service.slug ? "current" : ""}
|
||||
>
|
||||
{cat.title}
|
||||
</Link>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="service-block-one">
|
||||
<div className="inner-box">
|
||||
<div className="image-box">
|
||||
<figure className="image">
|
||||
<img src={service.mainImage} alt={service.title} />
|
||||
</figure>
|
||||
<div className="icon-box"><i className="icon-30"></i></div>
|
||||
</div>
|
||||
<div className="lower-content">
|
||||
<h3>{service.title}</h3>
|
||||
<p>{service.shortDesc}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Content */}
|
||||
<div className="col-lg-8 col-md-12 col-sm-12 content-side">
|
||||
<div className="service-details-content">
|
||||
<div
|
||||
className="service-details-description"
|
||||
dangerouslySetInnerHTML={{ __html: service.content }}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</Layout>
|
||||
);
|
||||
}
|
||||
48
app/rehabilitation/page.js
Normal file
@ -0,0 +1,48 @@
|
||||
'use client';
|
||||
import Layout from "@/components/layout/Layout";
|
||||
import Link from "next/link";
|
||||
import Rehabilitation from "@/utils/Rehabilitation.utils";
|
||||
|
||||
export default function RehabilitationPage() {
|
||||
return (
|
||||
<Layout headerStyle={2} footerStyle={1} breadcrumbTitle="Rehabilitation" bannerImage="/assets/images/rehabilitation/rehabilation-banner.webp">
|
||||
<section className="service-section sec-pad-2">
|
||||
<div className="auto-container">
|
||||
<div className="row clearfix">
|
||||
{Rehabilitation.map((service, index) => (
|
||||
<div key={service.id} className="col-lg-4 col-md-6 col-sm-12 service-block">
|
||||
<div
|
||||
className="service-block-one wow fadeInUp animated"
|
||||
data-wow-delay={`${index * 300}ms`}
|
||||
data-wow-duration="1500ms"
|
||||
>
|
||||
<div className="inner-box">
|
||||
<div className="image-box">
|
||||
<figure className="image">
|
||||
<Link href={`/rehabilitation/${service.slug}`}>
|
||||
<img src={service.mainImage} alt={service.title} />
|
||||
</Link>
|
||||
</figure>
|
||||
<div className="icon-box">
|
||||
<img
|
||||
src={service.icon}
|
||||
alt={`${service.title} Icon`}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div className="lower-content">
|
||||
<h3>
|
||||
<Link href={`/rehabilitation/${service.slug}`}>{service.title}</Link>
|
||||
</h3>
|
||||
<p>{service.shortDesc}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</Layout>
|
||||
);
|
||||
}
|
||||
82
app/what-to-expect/page.js
Normal file
@ -0,0 +1,82 @@
|
||||
import Link from "next/link"
|
||||
import Layout from "@/components/layout/Layout"
|
||||
|
||||
|
||||
export default function About() {
|
||||
return (
|
||||
<>
|
||||
<Layout headerStyle={2} footerStyle={1} breadcrumbTitle=" What To Expect">
|
||||
{/* chooseus-section */}
|
||||
<section className="about-style-three pt_120 pb_120">
|
||||
<div className="pattern-layer" style={{ backgroundImage: 'url(assets/images/shape/shape-35.png)' }}></div>
|
||||
<div className="auto-container">
|
||||
<div className="row clearfix">
|
||||
<div className="col-lg-6 col-md-12 col-sm-12 image-column mb-3">
|
||||
<div className="image_block_three">
|
||||
<div className="image-box">
|
||||
<div className="image-shape">
|
||||
<div className="shape-1 rotate-me" style={{ backgroundImage: 'url(assets/images/shape/shape-8.png)' }}></div>
|
||||
<div className="shape-2" style={{ backgroundImage: 'url(assets/images/shape/shape-33.png)' }}></div>
|
||||
<div className="shape-3" style={{ backgroundImage: 'url(assets/images/shape/shape-7.png)' }}></div>
|
||||
<div className="shape-4" style={{ backgroundImage: 'url(assets/images/shape/shape-34.png)' }}></div>
|
||||
<div className="shape-5" style={{ backgroundImage: 'url(assets/images/shape/shape-11.png)' }}></div>
|
||||
</div>
|
||||
<figure className="image image-1"><img src="assets/images/resource/about-2.jpg" alt="" /></figure>
|
||||
<figure className="image image-2"><img src="assets/images/resource/about-3.jpg" alt="" /></figure>
|
||||
<div className="icon-box"><i className="icon-14"></i></div>
|
||||
</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_15">
|
||||
<span className="sub-title"> What To Expect</span>
|
||||
<h2>What to Expect – Physiotherapy Etobicoke</h2>
|
||||
</div>
|
||||
<div className="text-box mb_40">
|
||||
<p>On the first day of your visit, you will receive a thorough assessment allows our healthcare professionals to understand your injury to determine how we can help. Following the initial assessment at our physiotherapy clinic etobicoke, we will discuss our ¬findings, and set a realistic treatment plan to help you gain long-term results. All of your questions will be answered.</p>
|
||||
<p>On the second day at our etobicoke physiotherapy clinic, you will receive your first full treatment. The treatment session time will vary based on the level of injury and also after treatment session we will teach you pain management techniques.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{/* chooseus-section end */}
|
||||
{/* subscibe */}
|
||||
<section className="subscribe-section">
|
||||
<div className="auto-container">
|
||||
<div className="inner-container">
|
||||
<div className="row align-items-center">
|
||||
<div className="col-lg-6 col-md-12 col-sm-12 text-column">
|
||||
<div className="text-box">
|
||||
<h2><span>Subscribe</span> for the exclusive updates!</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-lg-6 col-md-12 col-sm-12 form-column">
|
||||
<div className="form-inner">
|
||||
<form method="post" action="contact">
|
||||
<div className="form-group">
|
||||
<input type="email" name="email" placeholder="Enter Your Email Address" required />
|
||||
<button type="submit" className="theme-btn btn-one"><span>Subscribe Now</span></button>
|
||||
</div>
|
||||
<div className="form-group">
|
||||
<div className="check-box">
|
||||
<input className="check" type="checkbox" id="checkbox1" />
|
||||
<label htmlFor="checkbox1">I agree to the <Link href="index">Privacy Policy.</Link></label>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{/* subscibe end */}
|
||||
</Layout>
|
||||
</>
|
||||
)
|
||||
}
|
||||
164
app/why-rapha-physiotherapy-etobicoke/page.js
Normal file
@ -0,0 +1,164 @@
|
||||
'use client';
|
||||
import Layout from "@/components/layout/Layout";
|
||||
import Link from "next/link";
|
||||
export default function Team() {
|
||||
const teamMembers = [
|
||||
// { name: 'Musculoskeletal Physiotherapy', role: 'Medical Assistant', image: 'assets/images/team/team-1.jpg' },
|
||||
{ name: 'Musculoskeletal Physiotherapy', image: 'assets/images/team/team-1.jpg' },
|
||||
{ name: 'Sports Physiotherapy', image: 'assets/images/team/team-1.jpg' },
|
||||
{ name: 'Clinical Pilates', image: 'assets/images/team/team-1.jpg' },
|
||||
{ name: 'Workplace & Occupational', image: 'assets/images/team/team-1.jpg' },
|
||||
{ name: 'Sports Rehabilitation', image: 'assets/images/team/team-1.jpg' },
|
||||
{ name: 'Women’s health', image: 'assets/images/team/team-1.jpg' },
|
||||
{ name: 'Back & Neck Pain', image: 'assets/images/team/team-1.jpg' },
|
||||
{ name: 'Fitness & Exercise Programs', image: 'assets/images/team/team-1.jpg' },
|
||||
{ name: 'Pregnancy and Post-natal', image: 'assets/images/team/team-1.jpg' },
|
||||
{ name: 'Headaches & Dizziness', image: 'assets/images/team/team-1.jpg' },
|
||||
{ name: 'Injury Management', image: 'assets/images/team/team-1.jpg' },
|
||||
{ name: 'Pre/Post Surgical Management', image: 'assets/images/team/team-1.jpg' },
|
||||
];
|
||||
return (
|
||||
<Layout headerStyle={2} footerStyle={1} breadcrumbTitle="Why Us">
|
||||
<section className="team-section sec-pad centred pb-0">
|
||||
<div className="pattern-layer">
|
||||
<div className="pattern-1" style={{ backgroundImage: 'url(assets/images/shape/shape-13.png)' }}></div>
|
||||
<div className="pattern-2" style={{ backgroundImage: 'url(assets/images/shape/shape-14.png)' }}></div>
|
||||
</div>
|
||||
<div className="shape">
|
||||
<div className="shape-1 float-bob-y" style={{ backgroundImage: 'url(assets/images/shape/shape-15.png)' }}></div>
|
||||
<div className="shape-2"></div>
|
||||
<div className="shape-3 float-bob-x" style={{ backgroundImage: 'url(assets/images/shape/shape-16.png)' }}></div>
|
||||
</div>
|
||||
<div className="auto-container">
|
||||
<div className="sec-title mb_50">
|
||||
<span className="sub-title">Why Choose Us</span>
|
||||
<h2>We have licensed and experienced therapists with particular interests and expertise in</h2>
|
||||
</div>
|
||||
<div className="row clearfix">
|
||||
{teamMembers.map((member, index) => (
|
||||
<div key={index} className="col-lg-3 col-md-6 col-sm-12 team-block">
|
||||
<div className="team-block-one wow fadeInUp animated" data-wow-delay={`${index * 200}ms`} data-wow-duration="1500ms">
|
||||
<div className="inner-box">
|
||||
<div className="image-box">
|
||||
<figure className="image"><img src={member.image} alt={`${member.name}'s photo`} /></figure>
|
||||
{/* <ul className="social-links clearfix">
|
||||
<li><Link href="/#"><i className="icon-4"></i></Link></li>
|
||||
<li><Link href="/#"><i className="icon-5"></i></Link></li>
|
||||
<li><Link href="/#"><i className="icon-6"></i></Link></li>
|
||||
<li><Link href="/#"><i className="icon-7"></i></Link></li>
|
||||
</ul> */}
|
||||
</div>
|
||||
<div className="lower-content">
|
||||
<h3>{member.name}</h3>
|
||||
<span className="designation">{member.role}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<section className="testimonial-style-two p_relative">
|
||||
<div className="pattern-layer" style={{ backgroundImage: 'url(assets/images/shape/shape-19.png)' }}></div>
|
||||
<div className="auto-container">
|
||||
<div className="row align-items-center">
|
||||
{/* LEFT IMAGE / RIGHT CONTENT */}
|
||||
<div className="col-lg-6 col-md-12 col-sm-12 image-column order-2 order-lg-1">
|
||||
<div className="image_block_two pr_30">
|
||||
<div className="image-box">
|
||||
<figure className="image image-1"><img src="assets/images/resource/skills-1.jpg" alt="" /></figure>
|
||||
<figure className="image image-2"><img src="assets/images/resource/skills-2.jpg" alt="" /></figure>
|
||||
<div className="icon-box"><i className="icon-33"></i></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-lg-6 col-md-12 col-sm-12 content-column order-1 order-lg-2">
|
||||
<div className="content_block_one pl_30">
|
||||
<div className="content-box">
|
||||
{/* <div className="sec-title mb_15">
|
||||
<span className="sub-title">About Us</span>
|
||||
<h2>Medical services & diagnostics</h2>
|
||||
</div> */}
|
||||
<div className="text-box mb_40">
|
||||
<ul className="list-style-one clearfix">
|
||||
<li>Team of health care professionals – We are a team of health care professionals working together to help get you better, faster. This helps us in rendering our best possible services to our clients</li>
|
||||
<li>Our health care team consists of Physiotherapists, Massage Therapists, acupuncture specialists & other health care professionals, each bringing you their distinctive skills and abilities to assist you in improving your health & providing you with the latest evidence-based treatments.</li>
|
||||
<li>Health insurance – If you have a health insurance, we treat you without asking for an upfront payment. Instead we bill your insurance company directly without creating a hassle for you.</li>
|
||||
<li>Wide range of services and treatments – We offer wide range of unique services such as physiotherapy, sports rehabilitation, acupuncture, manual therapy, motor vehicle accident rehabilitation, work related injury treatments, chronic injury management and other services so we can assist you in recovering to the best possible condition</li>
|
||||
<li>Flexible opening hours – Our clinic is conveniently located in etobicoke and scarborough and provide you the best services even in early mornings and late evenings</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section className="testimonial-style-two p_relative pt-0">
|
||||
{/* <div className="pattern-layer" style={{ backgroundImage: 'url(assets/images/shape/shape-19.png)' }}></div> */}
|
||||
<div className="auto-container">
|
||||
<div className="row align-items-center flex-row-reverse">
|
||||
{/* RIGHT IMAGE / LEFT CONTENT */}
|
||||
<div className="col-lg-6 col-md-12 col-sm-12 image-column order-2 order-lg-1">
|
||||
<div className="image_block_two pl_30">
|
||||
<div className="image-box">
|
||||
<figure className="image image-1"><img src="assets/images/resource/skills-1.jpg" alt="" /></figure>
|
||||
<figure className="image image-2"><img src="assets/images/resource/skills-2.jpg" alt="" /></figure>
|
||||
<div className="icon-box"><i className="icon-33"></i></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-lg-6 col-md-12 col-sm-12 content-column order-1 order-lg-2">
|
||||
<div className="content_block_one pr_30">
|
||||
<div className="content-box">
|
||||
{/* <div className="sec-title mb_15">
|
||||
<span className="sub-title">About Us</span>
|
||||
<h2>Medical services & diagnostics</h2>
|
||||
</div> */}
|
||||
<div className="text-box mb_40">
|
||||
<ul className="list-style-one clearfix">
|
||||
<li>Top-Notch Treatment – Under our care, you will be placed in a supportive and comfortable environment helping you receive care in comfortable and supportive environment designed to address your issues</li>
|
||||
<li>Personalized Treatment Plan – We offer One-on-one care with a skilled therapist allows us to develop a plan specific to your particular needs results in a faster recovery.</li>
|
||||
<li>We listen & take time – We listen & take time to get to know you properly – Right from the start with your inquiry, we are here to listen and help find the root cause of your problem.</li>
|
||||
<li>Our treatment rooms – Our treatment rooms are fully equipped and private.</li>
|
||||
<li>Strong network of health professionals – We have a strong network of health professionals to refer to, making sure you get the right diagnosis and correct treatment for your condition.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section className="video-section p_relative">
|
||||
<div className="bg-layer parallax-bg" data-parallax='{"y": 100}' style={{ backgroundImage: 'url(assets/images/background/video-bg.jpg)' }}></div>
|
||||
<figure className="image-layer"><img src="assets/images/resource/video-1.png" alt="" /></figure>
|
||||
<div className="auto-container">
|
||||
<div className="inner-box">
|
||||
<div className="shape new-arrow" style={{ backgroundImage: 'url(assets/images/shape/shape-17.png)' }}></div>
|
||||
{/* <div className="video-btn">
|
||||
<a onClick={() => setOpen(true)}><i className="fas fa-play"></i>
|
||||
<span className="border-animation border-1"></span>
|
||||
<span className="border-animation border-2"></span>
|
||||
<span className="border-animation border-3"></span>
|
||||
</a>
|
||||
</div> */}
|
||||
<p className="inner-box-new-color">Rapha rehab offers patients in etobicoke and scarborough exceptional care with a personalized treatment plan to suit your specific needs. If you are suffering from pain or have recently experienced an injury, our etobicoke and scarborough Physiotherapists will ensure you get back to the activities you enjoy and love. Call us at 647-722-3434 for an appointment today or email us at info@rapharehab.ca to book a consultation.</p>
|
||||
<div className="btn-box mt-4">
|
||||
<Link href="tel:647-722-3434" className="theme-btn btn-one">
|
||||
<span>Make an Appointment</span>
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</Layout>
|
||||
);
|
||||
}
|
||||
@ -1,11 +1,16 @@
|
||||
import Link from "next/link"
|
||||
|
||||
export default function Breadcrumb({ breadcrumbTitle }) {
|
||||
export default function Breadcrumb({ breadcrumbTitle, bannerImage }) {
|
||||
return (
|
||||
<>
|
||||
|
||||
<section className="page-title p_relative centred">
|
||||
<div className="bg-layer" style={{ backgroundImage: 'url(assets/images/background/page-title.jpg)' }}></div>
|
||||
<div
|
||||
className="bg-layer"
|
||||
style={{
|
||||
backgroundImage: `url(${bannerImage || '/assets/images/background/page-title.jpg'})`
|
||||
}}
|
||||
/>
|
||||
<div className="pattern-layer">
|
||||
<div className="pattern-1" style={{ backgroundImage: 'url(assets/images/shape/shape-14.png)' }}></div>
|
||||
<div className="pattern-2" style={{ backgroundImage: 'url(assets/images/shape/shape-14.png)' }}></div>
|
||||
|
||||
@ -18,7 +18,7 @@ import Header2 from './header/Header2';
|
||||
import Header3 from "./header/Header3";
|
||||
import Header4 from "./header/Header4";
|
||||
|
||||
export default function Layout({ headerStyle, footerStyle, headTitle, breadcrumbTitle, children, wrapperCls }) {
|
||||
export default function Layout({ headerStyle, footerStyle, headTitle, breadcrumbTitle, bannerImage, children, wrapperCls }) {
|
||||
const [scroll, setScroll] = useState(0);
|
||||
const [isMobileMenu, setMobileMenu] = useState(false);
|
||||
const handleMobileMenu = () => {
|
||||
@ -57,7 +57,9 @@ export default function Layout({ headerStyle, footerStyle, headTitle, breadcrumb
|
||||
<Sidebar isSidebar={isSidebar} handleSidebar={handleSidebar} />
|
||||
<SearchPopup isPopup={isPopup} handlePopup={handlePopup} />
|
||||
|
||||
{breadcrumbTitle && <Breadcrumb breadcrumbTitle={breadcrumbTitle} />}
|
||||
{breadcrumbTitle && (
|
||||
<Breadcrumb breadcrumbTitle={breadcrumbTitle} bannerImage={bannerImage} />
|
||||
)}
|
||||
|
||||
{children}
|
||||
|
||||
|
||||
@ -29,7 +29,7 @@ export default function MobileMenu({ isSidebar, handleMobileMenu, handleSidebar
|
||||
<nav className="menu-box">
|
||||
<div className="nav-logo">
|
||||
<Link href="/">
|
||||
<img src="assets/images/logo.png" alt="" />
|
||||
<img src="/assets/images/logo.png" alt="" />
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
|
||||
@ -20,7 +20,7 @@ export default function Sidebar({ isSidebar, handleSidebar }) {
|
||||
<div className="sidebar-info-contents">
|
||||
<div className="content-inner">
|
||||
<div className="logo">
|
||||
<Link href="/"><img src="assets/images/logo.png" alt="" /></Link>
|
||||
<Link href="/"><img src="/assets/images/logo.png" alt="" /></Link>
|
||||
</div>
|
||||
<div className="content-box">
|
||||
<h4>About Us</h4>
|
||||
|
||||
@ -55,7 +55,7 @@ export default function Header1({ scroll, isMobileMenu, handleMobileMenu, isSide
|
||||
<div className="outer-box">
|
||||
<div className="logo-box">
|
||||
<figure className="logo">
|
||||
<Link href="/"><img src="assets/images/logo.png" alt="" /></Link>
|
||||
<Link href="/"><img src="/assets/images/logo.png" alt="" /></Link>
|
||||
</figure>
|
||||
</div>
|
||||
<div className="menu-area">
|
||||
@ -83,7 +83,7 @@ export default function Header1({ scroll, isMobileMenu, handleMobileMenu, isSide
|
||||
<div className="auto-container">
|
||||
<div className="outer-box">
|
||||
<div className="logo-box">
|
||||
<figure className="logo"><Link href="/"><img src="assets/images/logo.png" alt="" /></Link></figure>
|
||||
<figure className="logo"><Link href="/"><img src="/assets/images/logo.png" alt="" /></Link></figure>
|
||||
</div>
|
||||
|
||||
<nav className="main-menu navbar-expand-md navbar-light clearfix">
|
||||
|
||||
@ -32,7 +32,7 @@ export default function Header2({ scroll, isMobileMenu, handleMobileMenu, isSide
|
||||
<div className="outer-container">
|
||||
<div className="outer-box">
|
||||
<div className="logo-box">
|
||||
<figure className="logo"><Link href="/"><img src="assets/images/logo.png" alt="" /></Link></figure>
|
||||
<figure className="logo"><Link href="/"><img src="/assets/images/logo.png" alt="" /></Link></figure>
|
||||
</div>
|
||||
<div className="menu-area">
|
||||
{/* Mobile Navigation Toggler */}
|
||||
@ -68,7 +68,7 @@ export default function Header2({ scroll, isMobileMenu, handleMobileMenu, isSide
|
||||
<div className="auto-container">
|
||||
<div className="outer-box">
|
||||
<div className="logo-box">
|
||||
<figure className="logo"><Link href="/"><img src="assets/images/logo.png" alt="" /></Link></figure>
|
||||
<figure className="logo"><Link href="/"><img src="/assets/images/logo.png" alt="" /></Link></figure>
|
||||
</div>
|
||||
|
||||
<nav className="main-menu navbar-expand-md navbar-light clearfix">
|
||||
|
||||
@ -31,7 +31,7 @@ export default function Header3({ scroll, isMobileMenu, handleMobileMenu, isSide
|
||||
<div className="auto-container">
|
||||
<div className="outer-box">
|
||||
<div className="logo-box">
|
||||
<figure className="logo"><Link href="/"><img src="assets/images/logo.png" alt="" /></Link></figure>
|
||||
<figure className="logo"><Link href="/"><img src="/assets/images/logo.png" alt="" /></Link></figure>
|
||||
</div>
|
||||
<div className="menu-area">
|
||||
{/* Mobile Navigation Toggler */}
|
||||
@ -68,7 +68,7 @@ export default function Header3({ scroll, isMobileMenu, handleMobileMenu, isSide
|
||||
<div className="auto-container">
|
||||
<div className="outer-box">
|
||||
<div className="logo-box">
|
||||
<figure className="logo"><Link href="/"><img src="assets/images/logo.png" alt="" /></Link></figure>
|
||||
<figure className="logo"><Link href="/"><img src="/assets/images/logo.png" alt="" /></Link></figure>
|
||||
</div>
|
||||
|
||||
<nav className="main-menu navbar-expand-md navbar-light clearfix">
|
||||
|
||||
@ -32,7 +32,7 @@ export default function Header4({ scroll, isMobileMenu, handleMobileMenu, isSide
|
||||
<div className="auto-container">
|
||||
<div className="outer-box">
|
||||
<div className="logo-box">
|
||||
<figure className="logo"><Link href="/"><img src="assets/images/logo.png" alt=""/></Link></figure>
|
||||
<figure className="logo"><Link href="/"><img src="/assets/images/logo.png" alt=""/></Link></figure>
|
||||
</div>
|
||||
<div className="menu-area">
|
||||
{/* Mobile Navigation Toggler */}
|
||||
@ -67,7 +67,7 @@ export default function Header4({ scroll, isMobileMenu, handleMobileMenu, isSide
|
||||
<div className="auto-container">
|
||||
<div className="outer-box">
|
||||
<div className="logo-box">
|
||||
<figure className="logo"><Link href="/"><img src="assets/images/logo.png" alt=""/></Link></figure>
|
||||
<figure className="logo"><Link href="/"><img src="/assets/images/logo.png" alt=""/></Link></figure>
|
||||
</div>
|
||||
|
||||
<div className="menu-area">
|
||||
|
||||
@ -29,7 +29,7 @@ export default function about() {
|
||||
</div>
|
||||
<div className="col-lg-6 col-md-12 col-sm-12 content-column">
|
||||
<div className="content_block_one">
|
||||
<div className="content-box ml_30">
|
||||
<div className="text-box ml_30">
|
||||
<div className="sec-title mb_15">
|
||||
<span className="sub-title">About Us</span>
|
||||
<h2>Medical services & diagnostics</h2>
|
||||
|
||||
316
package-lock.json
generated
@ -8,6 +8,7 @@
|
||||
"name": "start-app-dir",
|
||||
"version": "0.1.0",
|
||||
"dependencies": {
|
||||
"axios": "^1.11.0",
|
||||
"bootstrap-touchspin": "^4.7.3",
|
||||
"isotope-layout": "^3.0.6",
|
||||
"lightgallery": "^2.7.2",
|
||||
@ -15,6 +16,7 @@
|
||||
"react": "18.2.0",
|
||||
"react-curved-text": "^2.0.2",
|
||||
"react-dom": "18.2.0",
|
||||
"react-google-recaptcha": "^3.1.0",
|
||||
"react-modal-video": "^2.0.1",
|
||||
"sass": "^1.66.1",
|
||||
"swiper": "^10.2.0",
|
||||
@ -498,6 +500,23 @@
|
||||
"integrity": "sha512-+mRmCTv6SbCmtYJCN4faJMNFVNN5EuCTTprDTAo7YzIGji2KADmakjVA3+8mVDkZ2Bf09vayB35lSQIex2+QaQ==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/asynckit": {
|
||||
"version": "0.4.0",
|
||||
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
|
||||
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/axios": {
|
||||
"version": "1.11.0",
|
||||
"resolved": "https://registry.npmjs.org/axios/-/axios-1.11.0.tgz",
|
||||
"integrity": "sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"follow-redirects": "^1.15.6",
|
||||
"form-data": "^4.0.4",
|
||||
"proxy-from-env": "^1.1.0"
|
||||
}
|
||||
},
|
||||
"node_modules/bootstrap-touchspin": {
|
||||
"version": "4.7.3",
|
||||
"resolved": "https://registry.npmjs.org/bootstrap-touchspin/-/bootstrap-touchspin-4.7.3.tgz",
|
||||
@ -528,6 +547,19 @@
|
||||
"node": ">=10.16.0"
|
||||
}
|
||||
},
|
||||
"node_modules/call-bind-apply-helpers": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
|
||||
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"es-errors": "^1.3.0",
|
||||
"function-bind": "^1.1.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/caniuse-lite": {
|
||||
"version": "1.0.30001737",
|
||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001737.tgz",
|
||||
@ -569,6 +601,18 @@
|
||||
"integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/combined-stream": {
|
||||
"version": "1.0.8",
|
||||
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
|
||||
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"delayed-stream": "~1.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.8"
|
||||
}
|
||||
},
|
||||
"node_modules/core-js": {
|
||||
"version": "3.45.1",
|
||||
"resolved": "https://registry.npmjs.org/core-js/-/core-js-3.45.1.tgz",
|
||||
@ -586,6 +630,15 @@
|
||||
"integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/delayed-stream": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
||||
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=0.4.0"
|
||||
}
|
||||
},
|
||||
"node_modules/desandro-matches-selector": {
|
||||
"version": "2.0.2",
|
||||
"resolved": "https://registry.npmjs.org/desandro-matches-selector/-/desandro-matches-selector-2.0.2.tgz",
|
||||
@ -622,6 +675,65 @@
|
||||
"deprecated": "dommatrix is no longer maintained. Please use @thednp/dommatrix.",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/dunder-proto": {
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
||||
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"call-bind-apply-helpers": "^1.0.1",
|
||||
"es-errors": "^1.3.0",
|
||||
"gopd": "^1.2.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/es-define-property": {
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
|
||||
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/es-errors": {
|
||||
"version": "1.3.0",
|
||||
"resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
|
||||
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/es-object-atoms": {
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
|
||||
"integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"es-errors": "^1.3.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/es-set-tostringtag": {
|
||||
"version": "2.1.0",
|
||||
"resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
|
||||
"integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"es-errors": "^1.3.0",
|
||||
"get-intrinsic": "^1.2.6",
|
||||
"has-tostringtag": "^1.0.2",
|
||||
"hasown": "^2.0.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/ev-emitter": {
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/ev-emitter/-/ev-emitter-1.1.1.tgz",
|
||||
@ -650,18 +762,160 @@
|
||||
"desandro-matches-selector": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/follow-redirects": {
|
||||
"version": "1.15.11",
|
||||
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz",
|
||||
"integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==",
|
||||
"funding": [
|
||||
{
|
||||
"type": "individual",
|
||||
"url": "https://github.com/sponsors/RubenVerborgh"
|
||||
}
|
||||
],
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=4.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"debug": {
|
||||
"optional": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"node_modules/form-data": {
|
||||
"version": "4.0.4",
|
||||
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz",
|
||||
"integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"asynckit": "^0.4.0",
|
||||
"combined-stream": "^1.0.8",
|
||||
"es-set-tostringtag": "^2.1.0",
|
||||
"hasown": "^2.0.2",
|
||||
"mime-types": "^2.1.12"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 6"
|
||||
}
|
||||
},
|
||||
"node_modules/function-bind": {
|
||||
"version": "1.1.2",
|
||||
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
||||
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
||||
"license": "MIT",
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/get-intrinsic": {
|
||||
"version": "1.3.0",
|
||||
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
|
||||
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"call-bind-apply-helpers": "^1.0.2",
|
||||
"es-define-property": "^1.0.1",
|
||||
"es-errors": "^1.3.0",
|
||||
"es-object-atoms": "^1.1.1",
|
||||
"function-bind": "^1.1.2",
|
||||
"get-proto": "^1.0.1",
|
||||
"gopd": "^1.2.0",
|
||||
"has-symbols": "^1.1.0",
|
||||
"hasown": "^2.0.2",
|
||||
"math-intrinsics": "^1.1.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/get-proto": {
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
|
||||
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"dunder-proto": "^1.0.1",
|
||||
"es-object-atoms": "^1.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/get-size": {
|
||||
"version": "2.0.3",
|
||||
"resolved": "https://registry.npmjs.org/get-size/-/get-size-2.0.3.tgz",
|
||||
"integrity": "sha512-lXNzT/h/dTjTxRbm9BXb+SGxxzkm97h/PCIKtlN/CBCxxmkkIVV21udumMS93MuVTDX583gqc94v3RjuHmI+2Q==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/gopd": {
|
||||
"version": "1.2.0",
|
||||
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
|
||||
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/graceful-fs": {
|
||||
"version": "4.2.11",
|
||||
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
|
||||
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
|
||||
"license": "ISC"
|
||||
},
|
||||
"node_modules/has-symbols": {
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
|
||||
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/has-tostringtag": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
|
||||
"integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"has-symbols": "^1.0.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/hasown": {
|
||||
"version": "2.0.2",
|
||||
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
|
||||
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"function-bind": "^1.1.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/hoist-non-react-statics": {
|
||||
"version": "3.3.2",
|
||||
"resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
|
||||
"integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==",
|
||||
"license": "BSD-3-Clause",
|
||||
"dependencies": {
|
||||
"react-is": "^16.7.0"
|
||||
}
|
||||
},
|
||||
"node_modules/immutable": {
|
||||
"version": "5.1.3",
|
||||
"resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.3.tgz",
|
||||
@ -751,6 +1005,15 @@
|
||||
"outlayer": "^2.1.0"
|
||||
}
|
||||
},
|
||||
"node_modules/math-intrinsics": {
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
|
||||
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/micromatch": {
|
||||
"version": "4.0.8",
|
||||
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
|
||||
@ -765,6 +1028,27 @@
|
||||
"node": ">=8.6"
|
||||
}
|
||||
},
|
||||
"node_modules/mime-db": {
|
||||
"version": "1.52.0",
|
||||
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
|
||||
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 0.6"
|
||||
}
|
||||
},
|
||||
"node_modules/mime-types": {
|
||||
"version": "2.1.35",
|
||||
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
|
||||
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"mime-db": "1.52.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.6"
|
||||
}
|
||||
},
|
||||
"node_modules/nanoid": {
|
||||
"version": "3.3.11",
|
||||
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
|
||||
@ -918,6 +1202,12 @@
|
||||
"react-is": "^16.13.1"
|
||||
}
|
||||
},
|
||||
"node_modules/proxy-from-env": {
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
|
||||
"integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/react": {
|
||||
"version": "18.2.0",
|
||||
"resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz",
|
||||
@ -930,6 +1220,19 @@
|
||||
"node": ">=0.10.0"
|
||||
}
|
||||
},
|
||||
"node_modules/react-async-script": {
|
||||
"version": "1.2.0",
|
||||
"resolved": "https://registry.npmjs.org/react-async-script/-/react-async-script-1.2.0.tgz",
|
||||
"integrity": "sha512-bCpkbm9JiAuMGhkqoAiC0lLkb40DJ0HOEJIku+9JDjxX3Rcs+ztEOG13wbrOskt3n2DTrjshhaQ/iay+SnGg5Q==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"hoist-non-react-statics": "^3.3.0",
|
||||
"prop-types": "^15.5.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": ">=16.4.1"
|
||||
}
|
||||
},
|
||||
"node_modules/react-curved-text": {
|
||||
"version": "2.0.2",
|
||||
"resolved": "https://registry.npmjs.org/react-curved-text/-/react-curved-text-2.0.2.tgz",
|
||||
@ -956,6 +1259,19 @@
|
||||
"react": "^18.2.0"
|
||||
}
|
||||
},
|
||||
"node_modules/react-google-recaptcha": {
|
||||
"version": "3.1.0",
|
||||
"resolved": "https://registry.npmjs.org/react-google-recaptcha/-/react-google-recaptcha-3.1.0.tgz",
|
||||
"integrity": "sha512-cYW2/DWas8nEKZGD7SCu9BSuVz8iOcOLHChHyi7upUuVhkpkhYG/6N3KDiTQ3XAiZ2UAZkfvYKMfAHOzBOcGEg==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"prop-types": "^15.5.0",
|
||||
"react-async-script": "^1.2.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": ">=16.4.1"
|
||||
}
|
||||
},
|
||||
"node_modules/react-is": {
|
||||
"version": "16.13.1",
|
||||
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
|
||||
|
||||
@ -10,6 +10,7 @@
|
||||
"sass": "sass --watch public/assets/scss/main.scss:public/assets/css/main.css"
|
||||
},
|
||||
"dependencies": {
|
||||
"axios": "^1.11.0",
|
||||
"bootstrap-touchspin": "^4.7.3",
|
||||
"isotope-layout": "^3.0.6",
|
||||
"lightgallery": "^2.7.2",
|
||||
@ -17,6 +18,7 @@
|
||||
"react": "18.2.0",
|
||||
"react-curved-text": "^2.0.2",
|
||||
"react-dom": "18.2.0",
|
||||
"react-google-recaptcha": "^3.1.0",
|
||||
"react-modal-video": "^2.0.1",
|
||||
"sass": "^1.66.1",
|
||||
"swiper": "^10.2.0",
|
||||
|
||||
@ -99,7 +99,7 @@
|
||||
|
||||
.content_block_one .content-box .list-style-one li{
|
||||
float: left;
|
||||
width: 50%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.content_block_one .content-box h6{
|
||||
|
||||
@ -94,7 +94,7 @@
|
||||
|
||||
.team-block-one .inner-box .lower-content h3{
|
||||
display: block;
|
||||
font-size: 26px;
|
||||
font-size: 20px;
|
||||
line-height: 36px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 5px;
|
||||
@ -116,7 +116,7 @@
|
||||
|
||||
.team-section .pattern-layer .pattern-1{
|
||||
position: absolute;
|
||||
top: -105px;
|
||||
top: 0px;
|
||||
right: 0px;
|
||||
width: 884px;
|
||||
height: 331px;
|
||||
|
||||
@ -56,13 +56,24 @@
|
||||
|
||||
.video-section .inner-box .shape{
|
||||
position: absolute;
|
||||
right: 185px;
|
||||
right: 573px;
|
||||
top: 242px;
|
||||
bottom: 0px;
|
||||
width: 278px;
|
||||
height: 139px;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.inner-box-new-color{
|
||||
|
||||
color: #fff;
|
||||
font-size: 18px;
|
||||
line-height: 36px;
|
||||
/* font-weight: 600; */
|
||||
margin-bottom: 5px;
|
||||
|
||||
}
|
||||
|
||||
.video-section .image-layer{
|
||||
position: absolute;
|
||||
right: 60px;
|
||||
@ -108,6 +119,66 @@
|
||||
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1440px){
|
||||
|
||||
.video-section .image-layer{
|
||||
display: none;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@media only screen and (max-width: 1440px){
|
||||
|
||||
.video-section .inner-box .shape{
|
||||
|
||||
position: absolute;
|
||||
right: 587px;
|
||||
top: 176px;
|
||||
bottom: 0px;
|
||||
width: 278px;
|
||||
height: 139px;
|
||||
background-repeat: no-repeat;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1024px){
|
||||
|
||||
.video-section .inner-box .shape{
|
||||
|
||||
position: absolute;
|
||||
right: 470px;
|
||||
top: 174px;
|
||||
bottom: 0px;
|
||||
width: 278px;
|
||||
height: 139px;
|
||||
background-repeat: no-repeat;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 768px){
|
||||
|
||||
.video-section .inner-box .shape{
|
||||
|
||||
position: absolute;
|
||||
right: 226px;
|
||||
top: 242px;
|
||||
bottom: 0px;
|
||||
width: 278px;
|
||||
height: 139px;
|
||||
background-repeat: no-repeat;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 991px){
|
||||
|
||||
.video-section .inner-box .video-btn{
|
||||
|
||||
@ -1836,6 +1836,16 @@ button.ltr {
|
||||
padding-left: 40px;
|
||||
margin-bottom: 17px;
|
||||
}
|
||||
.list-style-two li{
|
||||
position: relative;
|
||||
display: block;
|
||||
font-size: 16px;
|
||||
line-height: 26px;
|
||||
color: #0E1136;
|
||||
font-weight: 500;
|
||||
padding-left: 10px;
|
||||
margin-bottom: 17px;
|
||||
}
|
||||
|
||||
.list-style-one li:before{
|
||||
position: absolute;
|
||||
@ -2622,7 +2632,14 @@ button.ltr {
|
||||
|
||||
|
||||
}
|
||||
|
||||
blockquote {
|
||||
font-size: 1.1rem;
|
||||
font-style: italic;
|
||||
border-left: 4px solid var(--theme-color);
|
||||
margin: 1rem 0;
|
||||
padding-left: 1rem;
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
.sub-title-2{
|
||||
font-size: 16px;
|
||||
|
||||
BIN
public/assets/images/rehabilitation/amputee.webp
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
public/assets/images/rehabilitation/fracture.webp
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
public/assets/images/rehabilitation/icons/amputee.webp
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
public/assets/images/rehabilitation/icons/fracture.webp
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
public/assets/images/rehabilitation/icons/neurological.webp
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
public/assets/images/rehabilitation/icons/spinal.webp
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
public/assets/images/rehabilitation/neurological.webp
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
public/assets/images/rehabilitation/rehabilation-banner.webp
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
public/assets/images/rehabilitation/spinal.webp
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
@ -0,0 +1,566 @@
|
||||
const Accident = [
|
||||
{
|
||||
id: 1,
|
||||
slug: "minor-injury-etobicoke",
|
||||
title: "MINOR INJURY",
|
||||
shortDesc: "Minor injury rehabilitation relieves pain, restores movement, and prevents long-term complications.",
|
||||
mainImage: "/assets/images/service/service-4.jpg",
|
||||
content: `
|
||||
<div class="content-one mb_30">
|
||||
<figure class="image-box mb_40" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-7.jpg" alt="Cardiology" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
<div class="text-box">
|
||||
<h2>MINOR INJURY</h2>
|
||||
<p>Physiotherapy is an excellent treatment for minor injury caused by poor posture or repetitive trauma to the muscle and the joints</p>
|
||||
|
||||
<p class="mt-3 mb-2">There are many symptoms associated with a injury and the possible symptoms may include:</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">pain</li>
|
||||
<li style="list-style-type: disc;">reduced range of movement</li>
|
||||
<li style="list-style-type: disc;">swelling/inflammation</li>
|
||||
<li style="list-style-type: disc;">stiffness</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="text-box">
|
||||
<h3>What should I do if I have an injury?</h3>
|
||||
<p class="mt-2">If you are experiencing any of the symptoms listed above, it is important to have a physiotherapy assessment to resolve the problem associated with injury as soon as possible.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="content-two">
|
||||
<div class="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-8.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-9.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<p class="mt-3 mb-2">Physiotherapy treatment for an injury:</p>
|
||||
<p class="mb-2">At rapharehab, we offer customized treatment based on your needs and problems. Physiotherapy may include electrotherapy, home exercise programme and postural education. We also offer other treatment options like:</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Soft Tissue Treatment</li>
|
||||
<li style="list-style-type: disc;">Joint mobilization techniques</li>
|
||||
<li style="list-style-type: disc;">Hydrotherapy</li>
|
||||
<li style="list-style-type: disc;">Massage techniques</li>
|
||||
<li style="list-style-type: disc;">Proprioceptive Exercise</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="text-box">
|
||||
<h3>What shouldn’t I do if I have a minor injury?</h3>
|
||||
<p class="mt-2">If you notice symptoms of minor injury, you immediately need consult with the registered physiotherapist for the physiotherapy assessment. If you ignore the symptoms and continue with your normal activities, the injury may aggravate further delaying the recovery and end up with long term problems</p>
|
||||
</div>
|
||||
</div>
|
||||
`
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
slug: "catastropic-injury-etobicoke",
|
||||
title: "CATASTROPIC INJURY",
|
||||
shortDesc: "Catastrophic injury rehab restores mobility, independence, and quality of life.",
|
||||
mainImage: "/assets/images/service/service-4.jpg",
|
||||
content: `
|
||||
<div class="content-one mb_30">
|
||||
<figure class="image-box mb_40" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-7.jpg" alt="Cardiology" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
<div class="text-box">
|
||||
<h2>CATASTROPIC INJURY</h2>
|
||||
<p>A catastrophic injury is one that has serious, long-term life-altering consequences and any injury that requires extensive treatment or severely disrupts your life can be considered catastrophic</p>
|
||||
|
||||
<h3 class="mt-3 mb-2">Catastrophic injuries can be</h3>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Physical injuries include amputation, burns, fractures</li>
|
||||
<li style="list-style-type: disc;">Spinal cord injuries exclusively affect the spinal cord</li>
|
||||
<li style="list-style-type: disc;">Cognitive injuries arise from brain damage that takes away a person’s ability to work and speak</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="text-box">
|
||||
|
||||
<p class="mt-2">As a Registered Physiotherapists in etobicoke, we frequently consulted to care for patients with basic fractures, severe fractures or multiple injuries and other orthopedic problems.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="content-two">
|
||||
<div class="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-8.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-9.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
|
||||
<p class="mb-2">Being registered physiotherapists backed by the multidisciplinary team, we provide on optimal management of your catastrophic injuries. Our rehabilitation program includes:</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">identifying the injury,</li>
|
||||
<li style="list-style-type: disc;">Assessing impairments, activity limitations</li>
|
||||
<li style="list-style-type: disc;">grading the severity of the injury</li>
|
||||
<li style="list-style-type: disc;">Setting goals relevant to activity limitations</li>
|
||||
<li style="list-style-type: disc;">Designing a treatment plan</li>
|
||||
<li style="list-style-type: disc;">Identifying key impairments that are limiting achievement of goals</li>
|
||||
<li style="list-style-type: disc;">Identifying and administering physiotherapy treatments like strengthening, joint mobility, motor skill development, pain management, cardiovascular fitness, respiratory functioning</li>
|
||||
<li style="list-style-type: disc;">Measuring the outcome of treatments</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="text-box">
|
||||
<p class="mt-2">The rehabilitation plan coordinated by registered physiotherapists and other health professionals aims at improving your mobility through strengthening exercises, co-ordination and functional training to ensure achieving optimal outcomes.</p>
|
||||
</div>
|
||||
|
||||
<div class="text-box">
|
||||
|
||||
<p class="mb-2">Treatment objectives of the catastrophic injury rehabilitation include:</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">To establish patient focused co-orinated multidisciplinary approach</li>
|
||||
<li style="list-style-type: disc;">To address physical motor functional activities with early intervention and management to prevent further complications</li>
|
||||
<li style="list-style-type: disc;">To improve an individual’s independence in activities of daily living, such as bathing, eating, dressing, grooming, and mobility</li>
|
||||
<li style="list-style-type: disc;">To achieve functional independence</li>
|
||||
<li style="list-style-type: disc;">To achieve and maintain successful reintegration into the community.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
`
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
slug: "slip-and-fall-injury-etobicoke",
|
||||
title: "SLIP AND FALL INJURY",
|
||||
shortDesc: "Slip and fall rehabilitation helps relieve pain, restore strength and balance, and improve mobility for a safe recovery.",
|
||||
mainImage: "/assets/images/service/service-4.jpg",
|
||||
content: `
|
||||
<div class="content-one mb_30">
|
||||
<figure class="image-box mb_40" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-7.jpg" alt="Cardiology" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
<div class="text-box">
|
||||
<h2>SLIP AND FALL INJURY</h2>
|
||||
<p>Injury due to slip and fall may range from mild ligament sprains to fractures that permanently affect your mobility and independence. A licensed physiotherapist in etobicoke can help you prevent falls and recover from fall-related injuries</p>
|
||||
|
||||
<p class="mt-3 mb-2">Physiotherapist plays an important role in your care following medical treatment for slips and fall injuries. Physiotherapy is integral for concussion rehabilitation, helping to reduce headaches and dizziness, restore strength and balance, and help you return to normal activities.</p>
|
||||
|
||||
<p class="mt-3 mb-2">The most common area of injuries with slip and falls include those to the wrist, ankle, shoulder, and low back. Injuries range from simple sprains and strains to more serious injuries including concussions and broken bones</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="content-two">
|
||||
<div class="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-8.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-9.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
|
||||
<h3 class="mb-2">How Physical Therapy Can Help</h3>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="text-box">
|
||||
<p class="mt-2">When you experience an injury from a slip and fall in etobicoke, you need to see your doctor. Your doctor can give you a full assessment and recommend a treatment plan to aid you in a full recovery.</p>
|
||||
</div>
|
||||
|
||||
<p class="mt-3">Other than that, you need to consult a physical therapist in etobicoke. Your team of etobicoke physical therapists at Rapharehab Physical Therapy Now will customize a treatment plan for you and your injuries</p>
|
||||
</div>
|
||||
|
||||
<h3 class="mt-3">Physical Therapy for Slip and Fall Accidents in Etobicoke</h3>
|
||||
</div>
|
||||
|
||||
<p class="mt-3">If you need a physical therapist in Etobicoke for a slip and fall accident, reach out to us today. With your Rapharehab Physical Therapy team by your side, you will heal to your maximum potential</p>
|
||||
</div>
|
||||
</div>
|
||||
`
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
slug: "concussion-management-etobicoke",
|
||||
title: "CONCUSSION MANAGEMENT",
|
||||
shortDesc: "Concussion rehabilitation helps restore balance, strength, and daily function while supporting brain recovery.",
|
||||
mainImage: "/assets/images/service/service-4.jpg",
|
||||
content: `
|
||||
<div class="content-one mb_30">
|
||||
<figure class="image-box mb_40" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-7.jpg" alt="Cardiology" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
<div class="text-box">
|
||||
<h2>CONCUSSION MANAGEMENT</h2>
|
||||
<p>Concussion is a traumatic brain injury that can cause lasting effects on brain tissue occurs when the brain is violently shaken and changes the chemical balance of the brain</p>
|
||||
|
||||
<p class="mt-3 mb-2">Concussion may cause physical, cognitive, and behavioral symptoms and problems and recovery from a concussion can take several weeks to several months depending on many factors, including severity of the injury and the age of the affected person</p>
|
||||
<p class="mt-3 mb-2">The injury can happen during rapid movement changes when the head is directly hit. This shaking or hitting of the head causes unpredictable injury to any area of the brain which can affect your physical, emotional, and mental well-being. It is important to seek medical treatment immediately following any head injury.</p>
|
||||
<p class="mt-3 mb-2">Concussions can occur at any age, from a variety of causes, including:</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Motor vehicle collisions (whiplash)</li>
|
||||
<li style="list-style-type: disc;">Sports injury to the head or neck</li>
|
||||
<li style="list-style-type: disc;">Falls</li>
|
||||
<li style="list-style-type: disc;">Work accidents</li>
|
||||
<li style="list-style-type: disc;">Playground accidents (ie, falling from a slide or swing)</li>
|
||||
<li style="list-style-type: disc;">Violent events like Physical abuse during which the head is shaken</li>
|
||||
<li style="list-style-type: disc;">Direct blow to the head, face, or neck</li>
|
||||
<li style="list-style-type: disc;">Assaults, domestic violence</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="text-box">
|
||||
<p class="mt-3 mb-2">Physical symptoms of a concussion can include:</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Headache</li>
|
||||
<li style="list-style-type: disc;">Dizziness</li>
|
||||
<li style="list-style-type: disc;">Difficulty with balance and coordination</li>
|
||||
<li style="list-style-type: disc;">Double or blurred vision</li>
|
||||
<li style="list-style-type: disc;">Seizures</li>
|
||||
<li style="list-style-type: disc;">Fatigue</li>
|
||||
<li style="list-style-type: disc;">Nausea/vomiting</li>
|
||||
<li style="list-style-type: disc;">Difficulty sleeping</li>
|
||||
<li style="list-style-type: disc;">Increased sleepiness</li>
|
||||
<li style="list-style-type: disc;">Sensitivity to light and sound</li>
|
||||
<li style="list-style-type: disc;">Slurred speech</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="text-box">
|
||||
<p class="mt-3 mb-2">Cognitive symptoms can include:</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Difficulty with short-term or long-term memory</li>
|
||||
<li style="list-style-type: disc;">Confusion</li>
|
||||
<li style="list-style-type: disc;">Difficulty concentrating</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="text-box">
|
||||
<p class="mt-3 mb-2">Emotional symptoms can include:</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Anxiety</li>
|
||||
<li style="list-style-type: disc;">Depression</li>
|
||||
<li style="list-style-type: disc;">Aggression</li>
|
||||
<li style="list-style-type: disc;">Irritability</li>
|
||||
<li style="list-style-type: disc;">Decreased tolerance of stress</li>
|
||||
<li style="list-style-type: disc;">Restlessness</li>
|
||||
<li style="list-style-type: disc;">Mood swings</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="text-box">
|
||||
<p class="mt-3 mb-2">Longer-term symptoms of concussion</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Fatigue</li>
|
||||
<li style="list-style-type: disc;">Muscle weakness</li>
|
||||
<li style="list-style-type: disc;">Low blood pressure</li>
|
||||
<li style="list-style-type: disc;">Loss of libido</li>
|
||||
<li style="list-style-type: disc;">Loss of menstruation</li>
|
||||
<li style="list-style-type: disc;">Growth problems (children)</li>
|
||||
<li style="list-style-type: disc;">Weight gain</li>
|
||||
<li style="list-style-type: disc;">Chronic headaches or dizziness</li>
|
||||
<li style="list-style-type: disc;">Muscle spasticity</li>
|
||||
<li style="list-style-type: disc;">Early dementia/chronic traumatic encephalopathy (brain disorder)</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="content-two">
|
||||
<div class="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-8.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-9.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="text-box">
|
||||
<h3 class="mt-3 mb-2">Longer-term symptoms of concussion</h3>
|
||||
<p class="mt-3">Physical therapists can evaluate and treat many problems related to concussion. Our physical therapist will examine your neurological, orthopedic, and cardiovascular systems in order to design a treatment program to address your particular symptoms and yourneeds.</p>
|
||||
|
||||
<p class="mt-3">Treatment may include:</p>
|
||||
<p class="mt-2">Rest and recovery of the patient- A period of rest helps the brain heal and helps symptoms reduce soon after concussion. Our registered physical therapist will prescribe the rest and recovery program best suited for your condition.</p>
|
||||
|
||||
<p class="mt-2">Strength and endurance. – Our registered physical therapist will help you regain your strength and endurance. Our licensed physical therapist will design a therapeutic treatment program, monitor your symptoms on regular basis and treat your symptoms related to concussion</p>
|
||||
|
||||
<p class="mt-2">Balance Training – If you have dizziness or difficulty following the concussion, our vestibular physical therapist will design a treatment program that will help you overcome balance problems. Our qualified vestibular physical therapist will help you in reducing dizziness or balance problems after a concussion by applying special treatments or teaching you specific exercises.</p>
|
||||
|
||||
<p class="mt-2">Headaches and management – Our physical therapist will use specific treatments and exercises to reduce and eliminate headaches following concussion. The physiotherapy treatment may include stretches, strength and motion exercises, eye exercises, and other treatments like specialized massage and other electrical modalities</p>
|
||||
|
||||
<p class="mt-2">Returning to normal activity – Once the symptom ease, our physical therapist will help you gradually add normal activities back into your daily routine. Our licensed physical therapist will help you return to the normal life the best way possible
|
||||
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
`
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
slug: "psychotherapy-management-etobicoke",
|
||||
title: "PSYCHOTHERAPY MANAGEMENT",
|
||||
shortDesc: "Psychotherapy management helps overcome trauma, reduce anxiety, and improve mental wellness.",
|
||||
mainImage: "/assets/images/service/service-4.jpg",
|
||||
content: `
|
||||
<div class="content-one mb_30">
|
||||
<figure class="image-box mb_40" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-7.jpg" alt="Cardiology" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
<div class="text-box">
|
||||
<h2>PSYCHOTHERAPY MANAGEMENT</h2>
|
||||
<p>After a motor vehicle accident, individuals have often suffered trauma and have symptoms such as anxiety, depression, sleep problems, flashbacks and somatic pain. Psychological assessment and counselling can give you the support needed towards achieving mental wellness and regaining a sense of control in your life.</p>
|
||||
|
||||
<p class="mt-3 mb-2">We offer specialized assessment, treatment and consultation for individuals who have had Motor Vehicle Accidents. We have extensive experience in conducting psychological assessments and providing needed treatment for individuals involved in Motor Vehicle Accidents.</p>
|
||||
|
||||
<p class="mt-3 mb-2">Psychological problems associated with motor vehicle accident</p>
|
||||
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Increase or decrease in appetite</li>
|
||||
<li style="list-style-type: disc;">Anxious about driving or being in traffic</li>
|
||||
<li style="list-style-type: disc;">Strong distressing emotions</li>
|
||||
<li style="list-style-type: disc;">Altered sleep routines</li>
|
||||
<li style="list-style-type: disc;">Altered mood state (e.g. feeling emotionally low, anxious, irritable, etc.)</li>
|
||||
<li style="list-style-type: disc;">Difficulty with concentration, focus and memory</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="content-two">
|
||||
<div class="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-8.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-9.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<p class="mt-3 mb-2">Benefits from Psychological counseling:</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Counseling with a mental health professional, you can gain support towards achieving mental wellness</li>
|
||||
<li style="list-style-type: disc;">Supporting you towards your goals</li>
|
||||
<li style="list-style-type: disc;">Helping you identify the changes and challenges you are experiencing</li>
|
||||
<li style="list-style-type: disc;">Providing strategies to help you positively manage the changes and challenges</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="text-box">
|
||||
<p class="mt-3 mb-2">Counseling treatment:</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Telephone pre-screen interview</li>
|
||||
<li style="list-style-type: disc;">Complete in-person psychological assessment</li>
|
||||
<li style="list-style-type: disc;">Communication to you of your diagnosis and recommended treatment plan</li>
|
||||
<li style="list-style-type: disc;">Connection with an appropriate mental health professional to carry out the treatment plan</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
`
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
slug: "hydrotherapy-etobicoke",
|
||||
title: "HYDROTHERAPY",
|
||||
shortDesc: "Hydrotherapy aids recovery by reducing pain, relaxing muscles, improving mobility, and strengthening the body.",
|
||||
mainImage: "/assets/images/service/service-4.jpg",
|
||||
content: `
|
||||
<div class="content-one mb_30">
|
||||
<figure class="image-box mb_40" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-7.jpg" alt="Cardiology" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
<div class="text-box">
|
||||
<h2>HYDROTHERAPY</h2>
|
||||
<p>Hydrotherapy is any activity performed in water to assist in rehabilitation and recovery from serious injury</p>
|
||||
|
||||
<p class="mt-3 mb-2">Conditions Helped by Hydrotherapy</p>
|
||||
|
||||
<p class="mt-3 mb-2">Chronic Pain conditions- Hydrotherapy is a recommended course of treatment for patients to reduce pain by promoting normal movement and control.</p>
|
||||
|
||||
<p class="mt-3 mb-2">Neurological conditions – Hydrotherapy is used to reduce muscle spasm in patients with severe traumatic brain injury</p>
|
||||
|
||||
<p class="mt-3 mb-4">Musculoskeletal Injuries – Hydrotherapy help to improve function following a musculoskeletal injury. like osteoarthritis, rheumatoid arthritis, ankylosing spondylitis and low back pain.</p>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="content-two">
|
||||
<div class="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-8.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-9.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p class="mt-3 mb-2">The goals of hydrotherapy are</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Muscle relaxation, improving joint motion and reducing pain</li>
|
||||
<li style="list-style-type: disc;">Relieve pain and muscle spasm</li>
|
||||
<li style="list-style-type: disc;">To strengthen weak muscles</li>
|
||||
<li style="list-style-type: disc;">To maintain or increase the range of joint movement</li>
|
||||
<li style="list-style-type: disc;">To re-educate paralyzed muscles</li>
|
||||
<li style="list-style-type: disc;">To encourage walking and other functional and recreational activities</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
`
|
||||
},
|
||||
{
|
||||
id: 7,
|
||||
slug: "chronic-pain-management-etobicoke",
|
||||
title: "CHRONIC PAIN MANAGEMENT",
|
||||
shortDesc: "Chronic pain management at Rapharehab helps relieve pain, restore mobility, and improve quality of life.",
|
||||
mainImage: "/assets/images/service/service-4.jpg",
|
||||
content: `
|
||||
<div class="content-one mb_30">
|
||||
<figure class="image-box mb_40" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-7.jpg" alt="Cardiology" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
<div class="text-box">
|
||||
<h2>Chronic Pain Management in Etobicoke – Personalized Physiotherapy at Rapha Rehab</h2>
|
||||
<h3 class="mb-2">Expert Chronic Pain Treatment in Etobicoke</h3>
|
||||
<p>Are you suffering from long-term pain that impacts your daily life? At Rapha Rehab in Etobicoke, we specialize in chronic pain management through evidence-based physiotherapy, manual therapy, and functional rehab programs.</p>
|
||||
|
||||
<h3 class="mt-3 mb-2">What Is Chronic Pain?</h3>
|
||||
<p>Chronic pain lasts beyond the expected period of healing—often for more than 3 months. It can stem from injuries, underlying medical conditions, or unknown causes. Common chronic pain conditions we treat in Etobicoke include:</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Low back pain</li>
|
||||
<li style="list-style-type: disc;">Neck and shoulder pain</li>
|
||||
<li style="list-style-type: disc;">Fibromyalgia</li>
|
||||
<li style="list-style-type: disc;">Arthritis</li>
|
||||
<li style="list-style-type: disc;">Post-surgical pain</li>
|
||||
<li style="list-style-type: disc;">Sciatica and nerve-related pain</li>
|
||||
<li style="list-style-type: disc;">Chronic headaches and migraines</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="content-two">
|
||||
<div class="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-8.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-9.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 class="mt-3 mb-2">Why Choose Rapha Rehab for Chronic Pain in Etobicoke?</h3>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Highly trained registered physiotherapists</li>
|
||||
<li style="list-style-type: disc;">Individualized care plans based on your condition</li>
|
||||
<li style="list-style-type: disc;">Friendly, supportive, and judgment-free environment</li>
|
||||
<li style="list-style-type: disc;">Covered by most insurance plans & direct billing available</li>
|
||||
<li style="list-style-type: disc;">Convenient Etobicoke location with easy parking access</li>
|
||||
<li style="list-style-type: disc;">Our experienced team designs personalized pain relief solutions to help you regain mobility, reduce inflammation, and restore your quality of life.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p class="mt-3 mb-2">A common symptom, although not necessarily a pain, common to motor vehicle accidents is a change in personality or physical function. This could be a sign of a traumatic brain injury resulting from a concussion. Other symptoms to watch for include impaired thinking or memory, movement, problems with vision or hearing, and personality changes or depression. Motor vehicle crashes are a leading cause of traumatic brain injuries.</p>
|
||||
|
||||
<p class="mt-3 mb-2">What Are Common Injuries Following a Motor Vehicle Accident?</p>
|
||||
<p class="mt-3 mb-2">Some of the more common injuries that can result from a vehicle accident include:</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Head injury – A vehicle’s sudden stop or change in direction can cause the head to experience sudden and unnatural movements. This sudden movement can cause muscle strains in the neck and back. The injury can range from a concussion to brain damage.</li>
|
||||
<li style="list-style-type: disc;">Neck and Back injuries- Neck and back injuries are common in motor vehicle accidents ranging from a mild strain to chronic injury. Injury to neck and back can cause severe pain, loss of feeling, and even loss of muscle control.</li>
|
||||
<li style="list-style-type: disc;">Shoulder injuries – Shoulder pain is one of the common injury site after an accident. Injury to the shoulder can cause deep bruising, shoulder strains, and shoulder ligament tear.</li>
|
||||
<li style="list-style-type: disc;">Knee injuries – knee pain can be the result of damage to the cartilage of the knee, patella (knee cap), or torn meniscus. These injuries can be painful and often take time to show the pain and severity of the injury.</li>
|
||||
<li style="list-style-type: disc;">Arm and leg injuries – Injuries to arms and legs can range from simple bruises or sprains and even broken bones depending on the nature of the collision.</li>
|
||||
<li style="list-style-type: disc;">Soft Tissue injuries – The most common type of injury resulting from a motor vehicle accident is an injury to soft tissue. A soft tissue injury is damage to connective tissue (muscles, ligaments, and tendons) in the body. Motor vehicle accidents often result in soft tissue injuries in the neck, and muscle sprains in other areas of the body. The injury can cause mid-back and low-back pain.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<p class="mt-3 mb-2">What are Common Pains Following a Motor Vehicle Accident?</p>
|
||||
<p class="mt-3 mb-2">Some of the pains that occur following a motor vehicle accident are readily apparent. However, some pains may appear even after weeks after the accident. These pains include:</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">It is common for headaches to develop several days after a vehicle accident, but it can be more than a common pain. Sometimes a headache can signal a serious problem, such as a blood clot in the brain.</li>
|
||||
<li style="list-style-type: disc;">Neck or shoulder pain or stiffness: Whiplash is a delayed symptom injury associated with accidents occurs as the result of rear-end vehicle collisions at low speeds.</li>
|
||||
<li style="list-style-type: disc;">A loss of feeling in the arms and hands is often the result of a whiplash injury resulting from damage to the neck or spinal column.</li>
|
||||
<li style="list-style-type: disc;">Back pain: Pain in the back after an accident could be the result of an injury to muscles, ligaments or nerves in the back. Low back pain is found in a majority of motor vehicle accidents that could damage your vertebrae and discs of the spine. Back strains are common, but severe back injury can cause slipped disc or rupture of the disc. These injuries can cause long-term disability and the symptom may take even weeks after accident.</li>
|
||||
<li style="list-style-type: disc;">Abdominal pain or swelling: Internal bleeding can cause bruising, dizziness, and fainting can be a result of internal bleeding which can remain undiscovered for several days.</li>
|
||||
</ul>
|
||||
</div>
|
||||
`
|
||||
}
|
||||
|
||||
];
|
||||
|
||||
export default Accident;
|
||||
@ -0,0 +1,334 @@
|
||||
export const areaOfInjuryData = [
|
||||
{
|
||||
id: 1,
|
||||
slug: "head-injury-physiotherapy-management-etobicoke",
|
||||
title: "HEAD INJURIES",
|
||||
shortDescription: "Recover faster from head injuries with expert physiotherapy and personalized care.",
|
||||
image: "/assets/images/service/service-5.jpg",
|
||||
mainImage: "/assets/images/service/service-7.jpg",
|
||||
icon: "icon-30",
|
||||
content: `
|
||||
<div class="content-one mb_60">
|
||||
<p>We treat conditions like</p>
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Concussion</li>
|
||||
<li style="list-style-type: disc;">Slip and fall</li>
|
||||
<li style="list-style-type: disc;">Skull fracture etc …</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="content-two">
|
||||
<div class="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-8.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-9.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<p>Our trained professionals (physiotherapist, chiropractors and massage therapist)will assess each condition and establish treatment plan according to patient short term and long term goals.</p>
|
||||
`,
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
slug: "neck-injury-physiotherapy-management-etobicokeneck-injury-physiotherapy-management-etobicoke",
|
||||
title: "NECK INJURIES",
|
||||
shortDescription: "Relieve neck pain, restore flexibility, and strengthen muscles with professional physiotherapy.",
|
||||
image: "/assets/images/service/service-5.jpg",
|
||||
mainImage: "/assets/images/service/service-7.jpg",
|
||||
icon: "icon-31",
|
||||
content: `
|
||||
<div class="content-one mb_60">
|
||||
<p>We treat conditions like</p>
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Whiplash Injuries</li>
|
||||
<li style="list-style-type: disc;">Cervical Spondylitis</li>
|
||||
<li style="list-style-type: disc;">Strains and Sprains</li>
|
||||
<li style="list-style-type: disc;">Compression and Stress Fracture Etc…</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="content-two">
|
||||
<div class="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-8.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-9.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<p>Our trained professionals (physiotherapist, chiropractors and massage therapist in Etobicoke)will assess each condition and establish treatment plan according to patient short term and long term goals.</p>
|
||||
`,
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
slug: "shoulder-injury-physiotherapy-management-etobicoke",
|
||||
title: "SHOULDER INJURIES",
|
||||
shortDescription: "Improve shoulder mobility and heal injuries effectively through advanced physiotherapy sessions.",
|
||||
image: "/assets/images/service/service-5.jpg",
|
||||
mainImage: "/assets/images/service/service-7.jpg",
|
||||
icon: "icon-31",
|
||||
content: `
|
||||
<div class="content-one mb_60">
|
||||
<p>We treat conditions like</p>
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Dislocation and Subluxation</li>
|
||||
<li style="list-style-type: disc;">Fall Of Outstretched Hand</li>
|
||||
<li style="list-style-type: disc;">Rotator Cuff Injuries</li>
|
||||
<li style="list-style-type: disc;">Fractures and Strains ect</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="content-two">
|
||||
<div class="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-8.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-9.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<p>Our trained professionals (physiotherapist, chiropractors and massage therapist)will assess each condition and establish treatment plan according to patient short term and long term goals.</p>
|
||||
`,
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
slug: "elbow-injury-physiotherapy-management-etobicoke",
|
||||
title: "ELBOW INJURIES",
|
||||
shortDescription: "Overcome elbow injuries with targeted treatments ensuring strength and faster recovery.",
|
||||
image: "/assets/images/service/service-5.jpg",
|
||||
mainImage: "/assets/images/service/service-7.jpg",
|
||||
icon: "icon-31",
|
||||
content: `
|
||||
<div class="content-one mb_60">
|
||||
<p>At Etobicoke Physiotherapy, we treat conditions like</p>
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Tennis Elbow & Golfers Elbox</li>
|
||||
<li style="list-style-type: disc;">Tendonitis</li>
|
||||
<li style="list-style-type: disc;">Avulsion Injury</li>
|
||||
<li style="list-style-type: disc;">Strains and Sprains</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="content-two">
|
||||
<div class="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-8.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-9.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<p>Our trained professionals (physiotherapist, chiropractors and massage therapist)will assess each condition and establish treatment plan according to patient short term and long term goals.</p>
|
||||
`,
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
slug: "wristhand-injury-physiotherapy-management-etobicoke",
|
||||
title: "WRIST AND HAND INJURIES",
|
||||
shortDescription: "Restore hand strength and mobility with physiotherapy designed for you.",
|
||||
image: "/assets/images/service/service-5.jpg",
|
||||
mainImage: "/assets/images/service/service-7.jpg",
|
||||
icon: "icon-31",
|
||||
content: `
|
||||
<div class="content-one mb_60">
|
||||
<p>We treat conditions like</p>
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Carpal Tunnel Syndrome</li>
|
||||
<li style="list-style-type: disc;">Colles Fracture</li>
|
||||
<li style="list-style-type: disc;">Nerve Compression Injury</li>
|
||||
<li style="list-style-type: disc;">Crush Injury etc</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="content-two">
|
||||
<div class="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-8.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-9.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<p>Our trained professionals (physiotherapist, chiropractors and massage therapist)will assess each condition and establish treatment plan according to patient short term and long term goals.</p>
|
||||
`,
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
slug: "lowback-injury-physiotherapy-management-etobicoke",
|
||||
title: "LOW BACK INJURY",
|
||||
shortDescription: "Reduce back pain, improve posture, and enhance recovery with expert physiotherapy.",
|
||||
image: "/assets/images/service/service-5.jpg",
|
||||
mainImage: "/assets/images/service/service-7.jpg",
|
||||
icon: "icon-31",
|
||||
content: `
|
||||
<div class="content-one mb_60">
|
||||
<p>We treat conditions like</p>
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Sciatica Nerve Compression</li>
|
||||
<li style="list-style-type: disc;">Degenrative Disc Diseases</li>
|
||||
<li style="list-style-type: disc;">Piriformis Syndrome</li>
|
||||
<li style="list-style-type: disc;">Compression and Stress Fracture etc…</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="content-two">
|
||||
<div class="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-8.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-9.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<p>Our trained professionals (physiotherapist, chiropractors and massage therapist)will assess each condition and establish treatment plan according to patient short term and long term goals.</p>
|
||||
`,
|
||||
},
|
||||
{
|
||||
id: 7,
|
||||
slug: "hip-injury-physiotherapy-management-etobicoke",
|
||||
title: "HIP INJURIES",
|
||||
shortDescription: "Rebuild hip strength, improve stability, and recover mobility with personalized care.",
|
||||
image: "/assets/images/service/service-5.jpg",
|
||||
mainImage: "/assets/images/service/service-7.jpg",
|
||||
icon: "icon-31",
|
||||
content: `
|
||||
<div class="content-one mb_60">
|
||||
<p>We treat conditions like</p>
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Fracture</li>
|
||||
<li style="list-style-type: disc;">Valgus and Varum Disorders</li>
|
||||
<li style="list-style-type: disc;">Dislocation Of Hip</li>
|
||||
<li style="list-style-type: disc;">Arthritis etc</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="content-two">
|
||||
<div class="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-8.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-9.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<p>Our trained professionals (physiotherapist, chiropractors and massage therapist)will assess each condition and establish treatment plan according to patient short term and long term goals</p>
|
||||
`,
|
||||
},
|
||||
{
|
||||
id: 8,
|
||||
slug: "legknee-injury-physiotherapy-management-etobicoke",
|
||||
title: "LEG & KNEE INJURIES",
|
||||
shortDescription: "Heal knee injuries faster, regain strength, and restore balance with advanced physiotherapy.",
|
||||
image: "/assets/images/service/service-5.jpg",
|
||||
mainImage: "/assets/images/service/service-7.jpg",
|
||||
icon: "icon-31",
|
||||
content: `
|
||||
<div class="content-one mb_60">
|
||||
<p>We treat knee physiotherapy conditions like</p>
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Meniscus and Ligament Injuries</li>
|
||||
<li style="list-style-type: disc;">Patella Fracture</li>
|
||||
<li style="list-style-type: disc;">Arthritis</li>
|
||||
<li style="list-style-type: disc;">Degenerative Condition etc</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="content-two">
|
||||
<div class="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-8.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-9.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<p>Our trained professionals (physiotherapist, chiropractors and massage therapist)will assess each condition and establish treatment plan according to patient short term and long term goals.</p>
|
||||
`,
|
||||
},
|
||||
{
|
||||
id: 9,
|
||||
slug: "anklefoot-injury-physiotherapy-management-etobicoke",
|
||||
title: "ANKLE & FOOT INJURIES",
|
||||
shortDescription: "Recover from ankle injuries quickly with physiotherapy improving movement and strength.",
|
||||
image: "/assets/images/service/service-5.jpg",
|
||||
mainImage: "/assets/images/service/service-7.jpg",
|
||||
icon: "icon-31",
|
||||
content: `
|
||||
<div class="content-one mb_60">
|
||||
<p>We treat knee physiotherapy conditions like</p>
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Meniscus and Ligament Injuries</li>
|
||||
<li style="list-style-type: disc;">Patella Fracture</li>
|
||||
<li style="list-style-type: disc;">Arthritis</li>
|
||||
<li style="list-style-type: disc;">Degenerative Condition etc</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="content-two">
|
||||
<div class="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-8.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-9.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<p>Our trained professionals (physiotherapist, chiropractors and massage therapist)will assess each condition and establish treatment plan according to patient short term and long term goals.</p>
|
||||
`,
|
||||
},
|
||||
];
|
||||
@ -0,0 +1,358 @@
|
||||
const Rehabilitation = [
|
||||
{
|
||||
id: 1,
|
||||
slug: "spinalcord-rehabilitation-clinic-etobicoke",
|
||||
title: "SPINAL CORD INJURY REHABILITATION",
|
||||
shortDesc: "Spinal cord injury rehabilitation restores mobility, strength, and independence for a better quality of life.",
|
||||
mainImage: "/assets/images/rehabilitation/spinal.webp",
|
||||
icon: "/assets/images/rehabilitation/icons/spinal.webp",
|
||||
bannerImage:"/assets/images/rehabilitation/rehabilation-banner.webp",
|
||||
content: `
|
||||
<div class="content-one mb_30">
|
||||
<figure class="image-box mb_40" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-7.jpg" alt="Cardiology" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
<div class="text-box">
|
||||
<h2>SPINAL CORD INJURY REHABILITATION</h2>
|
||||
<p>Spinal cord injury is classified by the level and severity of the lesion. There are typically two types of lesions associated with a spinal cord injury which include complete spinal cord injury and incomplete spinal cord injury.</p>
|
||||
|
||||
<p class="mt-3">A person affected by complete spinal cord injury will have paralysis and loss of sensation below the level of injury while an incomplete spinal cord injury will affect different parts of the body depending on the level of injury.</p>
|
||||
|
||||
<p class="mt-3 mb-2">The most common causes of damage to the spinal cord are trauma which includes:-</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Road traffic accidents</li>
|
||||
<li style="list-style-type: disc;">Sports injuries</li>
|
||||
<li style="list-style-type: disc;">Domestic injuries</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="content-two">
|
||||
<div class="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-8.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-9.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<p class="mb-2">Common symptoms associated with spinal cord injury:</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Problems with bowel and bladder function,</li>
|
||||
<li style="list-style-type: disc;">Respiratory difficulties,</li>
|
||||
<li style="list-style-type: disc;">Loss of sexual dysfunction,</li>
|
||||
<li style="list-style-type: disc;">Spasticity (increased reflexes and stiffness of the limbs),</li>
|
||||
<li style="list-style-type: disc;">Neuropathic pain,</li>
|
||||
<li style="list-style-type: disc;">Muscle wasting and weakness</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="text-box">
|
||||
<p class="mb-2">Physiotherapy for a complete spinal cord injury</p>
|
||||
<p class="mb-2">Physiotherapy for people with spinal cord injury will concentrate on maintaining tissue capability increasing muscle strength and maximizing potential and promoting independence. Treatment will focus on:</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Reducing pain and muscle spasms</li>
|
||||
<li style="list-style-type: disc;"> Increasing strength of the muscle above the level of injury</li>
|
||||
<li style="list-style-type: disc;">Maintaining muscle length and range of movement below the level of injury</li>
|
||||
<li style="list-style-type: disc;">Muscle stretching below the level of injury</li>
|
||||
<li style="list-style-type: disc;">Exercises to improve balance and confidence</li>
|
||||
<li style="list-style-type: disc;"> Increasing control of movement of the arms, legs and trunk</li>
|
||||
<li style="list-style-type: disc;"> Promoting activities of daily living</li>
|
||||
<li style="list-style-type: disc;"> Mobilization exercises to improve circulation and range of movement</li>
|
||||
<li style="list-style-type: disc;"> Promoting independence</li>
|
||||
<li style="list-style-type: disc;">Improving quality of life</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
`
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
slug: "amputee-rehabilitation-clinic-etobicoke",
|
||||
title: "AMPUTEE REHABILITATION",
|
||||
shortDesc: "Amputee rehabilitation helps restore mobility, independence, and quality of life.",
|
||||
mainImage: "/assets/images/rehabilitation/amputee.webp",
|
||||
icon: "/assets/images/rehabilitation/icons/amputee.webp",
|
||||
content: `
|
||||
<div class="content-one mb_30">
|
||||
<figure class="image-box mb_40" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-7.jpg" alt="Cardiology" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
<div class="text-box">
|
||||
<h2>AMPUTEE REHABILITATION</h2>
|
||||
<p>Loss of a limb produces a permanent disability that can impact a patient’s self-image, self-care and movement. Rehabilitation of the patient with an amputation begins after surgery to maximize a person’s functional mobility, minimize a person’s deficits, and enhance quality of life. As the patient’s condition improves, a more extensive rehabilitation program is often started.</p>
|
||||
|
||||
<p class="mt-3">The goal of rehabilitation after an amputation is to help the patient return to the highest level of functional independence while improving the overall quality of life—physically, emotionally, and socially.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="content-two">
|
||||
<div class="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-8.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-9.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="text-box">
|
||||
<p class="mb-2">Amputation rehabilitation programs may include the following:</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Pain management for both post-operative and phantom pain</li>
|
||||
<li style="list-style-type: disc;">Treatments to help improve wound healing and stump care</li>
|
||||
<li style="list-style-type: disc;">Activities to help improve motor skills, restore activities of daily living (ADLs), and help the patient reach maximum independence</li>
|
||||
<li style="list-style-type: disc;">Exercises that promote muscle strength, endurance, and control</li>
|
||||
<li style="list-style-type: disc;">Fitting and use of artificial limbs (prostheses)</li>
|
||||
<li style="list-style-type: disc;"> Use of assistive devices</li>
|
||||
<li style="list-style-type: disc;"> Vocational counseling</li>
|
||||
<li style="list-style-type: disc;"> Adapting the home environment for ease of function, safety, accessibility, and mobility</li>
|
||||
<li style="list-style-type: disc;"> Patient and family education</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
`
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
slug: "fracture-rehabilitation-clinic-etobicoke",
|
||||
title: "FRACTURE REHABILITATION",
|
||||
shortDesc: "Fracture rehabilitation helps relieve pain, restore movement, strengthen muscles, and regain normal function after injury.",
|
||||
mainImage: "/assets/images/rehabilitation/fracture.webp",
|
||||
icon: "/assets/images/rehabilitation/icons/fracture.webp",
|
||||
content: `
|
||||
<div class="content-one mb_30">
|
||||
<figure class="image-box mb_40" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-7.jpg" alt="Cardiology" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
<div class="text-box">
|
||||
<h2>FRACTURE REHABILITATION</h2>
|
||||
<p>After a fracture, physical therapy may be ordered to help ensure you return to optimum function as quickly as possible. You may encounter a physical therapist at different times after suffering a fracture.</p>
|
||||
|
||||
<p class="mt-3 mb-2">Signs and symptoms:</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Pain with movement or immovable</li>
|
||||
<li style="list-style-type: disc;"> Soft tissue visible deformity</li>
|
||||
<li style="list-style-type: disc;">Muscle spasms of surrounding tissue</li>
|
||||
<li style="list-style-type: disc;">Swelling, bruising</li>
|
||||
<li style="list-style-type: disc;">Reduced movement and range of motion of the joint</li>
|
||||
</ul>
|
||||
</div>
|
||||
<p class="mt-3 mb-2">Your first visit with your physiotherapist will usually involve an evaluation and assessment. Your physiotherapist will likely take measurements of body
|
||||
parts around the fracture site.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="text-box">
|
||||
<p class="mb-2">This might include measurements of:</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Range of motion</li>
|
||||
<li style="list-style-type: disc;">Strength</li>
|
||||
<li style="list-style-type: disc;">Pain</li>
|
||||
<li style="list-style-type: disc;">Flexibility</li>
|
||||
<li style="list-style-type: disc;">Girth or swelling</li>
|
||||
<li style="list-style-type: disc;">Gait (for lower extremity fractures)</li>
|
||||
<li style="list-style-type: disc;">Function</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="text-box">
|
||||
<p class="mb-2">After the initial evaluation, your physical therapist can work with you to devise a treatment strategy to help you recover fully. Physical therapy after a fracture often focuses on overcoming the negative effects of being immobilized by a cast or sling. Immobilization may cause loss of motion and strength and decreased functional mobility.</p>
|
||||
<p class="mb-2">Physiotherapy should start immediately after the fracture has been immobilized.</p>
|
||||
<p class="mb-2">Physiotherapy during fracture healing will concentrate on:</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Relieve pain</li>
|
||||
<li style="list-style-type: disc;"> Improve range of motion and mobility</li>
|
||||
<li style="list-style-type: disc;">Strengthen surround tissue and muscle</li>
|
||||
<li style="list-style-type: disc;">Promoting healing</li>
|
||||
<li style="list-style-type: disc;">Encouraging weight bearing</li>
|
||||
<li style="list-style-type: disc;"> Maintaining strength of weakened muscles</li>
|
||||
<li style="list-style-type: disc;"> Maintaining range of movement of the affected and surrounding joints</li>
|
||||
<li style="list-style-type: disc;"> Reducing pain</li>
|
||||
<li style="list-style-type: disc;"> Reducing swelling</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content-two">
|
||||
<div class="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-8.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-9.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="text-box">
|
||||
<p class="mb-2">After your fracture has healed and/or your cast has been removed physiotherapy is continued until you have regained your full level of function.</p>
|
||||
<p class="mb-2">The aims of physiotherapy are to:</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Progress weight bearing activities</li>
|
||||
<li style="list-style-type: disc;"> Return to full function</li>
|
||||
<li style="list-style-type: disc;">Return strength and full range of movement to muscles / joints</li>
|
||||
<li style="list-style-type: disc;">Focus on sport-specific rehabilitation</li>
|
||||
<li style="list-style-type: disc;">Optimize the range of movement at the affected joint
|
||||
Your treatment will depend very much on the problems identified during your initial assessment, but may include a mixture of the following:</li>
|
||||
<li style="list-style-type: disc;"> Massage and mobilization can help reduce scar adhesions and improve mobility around the scar</li>
|
||||
<li style="list-style-type: disc;"> Scar management if you had surgery to fix the fracture</li>
|
||||
<li style="list-style-type: disc;"> Ice therapy</li>
|
||||
<li style="list-style-type: disc;"> Exercises to improve range of motion and strength</li>
|
||||
<li style="list-style-type: disc;"> Electrical stimulation may also be used to help improve muscle recruitment</li>
|
||||
<li style="list-style-type: disc;"> Stretching exercises to regain joint range of movement</li>
|
||||
<li style="list-style-type: disc;"> Joint manual therapy and mobilizations to assist you in regaining joint mobility</li>
|
||||
<li style="list-style-type: disc;"> Structured and progressive strengthening regime</li>
|
||||
<li style="list-style-type: disc;"> Balance and control work and gait (walking) re-education where appropriate</li>
|
||||
<li style="list-style-type: disc;"> Taping to support the injured area/help with swelling management</li>
|
||||
<li style="list-style-type: disc;"> Return to sport preparatory work and advice where required</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
`
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
slug: "neurological-rehabilitation-clinic-etobicoke",
|
||||
title: "NEUROLOGICAL INJURY REHABILITATION",
|
||||
shortDesc: "Neurological rehabilitation improves movement, strength, balance, and independence for better quality of life.",
|
||||
mainImage: "/assets/images/rehabilitation/neurological.webp",
|
||||
icon: "/assets/images/rehabilitation/icons/neurological.webp",
|
||||
content: `
|
||||
<div class="content-one mb_30">
|
||||
<figure class="image-box mb_40" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-7.jpg" alt="Cardiology" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
<div class="text-box">
|
||||
<h2>NEUROLOGICAL INJURY REHABILITATION</h2>
|
||||
<p>Neurological physiotherapy involves rehabilitation of people with neurological conditions such as problems with the brain, spinal cord or peripheral nerves. Neurological Physiotherapy aims to increase the quality of life of people with neurological conditions through physical Therapy modalities and exercises.</p>
|
||||
|
||||
<p class="mt-3 mb-2">Rapharehab neurological physiotherapy clinic in etobicoke offers neurological
|
||||
physiotherapy and rehabilitation to treat neurological conditions such as:</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;"> Paediatric motor development conditions</li>
|
||||
<li style="list-style-type: disc;"> Parkinson’s disease</li>
|
||||
<li style="list-style-type: disc;">Vestibular dysfunction</li>
|
||||
<li style="list-style-type: disc;">Multiple sclerosis</li>
|
||||
<li style="list-style-type: disc;">Guillain-Barre Syndrome</li>
|
||||
<li style="list-style-type: disc;">Nerve palsies</li>
|
||||
<li style="list-style-type: disc;">Peripheral neuropathy</li>
|
||||
<li style="list-style-type: disc;">Balance issues and fall prevention</li>
|
||||
</ul>
|
||||
</div>
|
||||
<p class="mt-3 mb-2">We provide customized physiotherapy program for people with diseases, injury, or disorders of the nervous system based on the condition of the patient. Our neurological rehabilitation can often reduce pain, minimize discomfort, improve function, reduce symptoms, and improve the well-being of the patient.</p>
|
||||
|
||||
<p class="mt-3 mb-2">Our Physiotherapist will undertake a comprehensive assessment of your strength, coordination and balance and will then tailor a treatment program to your unique needs.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="text-box">
|
||||
<p class="mb-2">Our neurological physiotherapy rehabilitation plan can include:</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Bed Exercises to stretch and strengthen your muscles</li>
|
||||
<li style="list-style-type: disc;">Breathing and Circulation Exercises to prevent respiratory and vascular complications</li>
|
||||
<li style="list-style-type: disc;">Therapeutic exercises to improve mobility, flexibility, motor control and strength.</li>
|
||||
<li style="list-style-type: disc;">Exercises to improve balance and coordination</li>
|
||||
<li style="list-style-type: disc;">Mobility Aids: prescription, advice and instruction on how to safely use a walking frame, or other walking aids</li>
|
||||
<li style="list-style-type: disc;">Manual therapy techniques</li>
|
||||
<li style="list-style-type: disc;">Massage Therapy</li>
|
||||
<li style="list-style-type: disc;">Stress-management sessions to reduce the impact of psychosocial factors on your pain and symptoms</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="content-two">
|
||||
<div class="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-8.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30" style="text-align:center;">
|
||||
<img src="/assets/images/service/service-9.jpg" alt="Cardiology Extra" style="max-width:100%;height:auto;" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="text-box">
|
||||
<p class="mb-2">Other physiotherapy rehabilitation includes:</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Implementation of realistic goals that are measured and time-framed</li>
|
||||
<li style="list-style-type: disc;"> Actively engaging the patient in treatment sessions</li>
|
||||
<li style="list-style-type: disc;">Encouragement of normal movement and function</li>
|
||||
<li style="list-style-type: disc;">Encouraging available movement and improving it through strengthening and verbal commands</li>
|
||||
<li style="list-style-type: disc;">Posture correction</li>
|
||||
<li style="list-style-type: disc;"> posture correction and exercises to improve</li>
|
||||
<li style="list-style-type: disc;"> Promotion of functional activities based around daily tasks</li>
|
||||
<li style="list-style-type: disc;"> Prevention of muscle shortening as this leads to spasticity and abnormal movement.</li>
|
||||
<li style="list-style-type: disc;"> Achieving as great a degree of independence and quality of life possible</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="text-box">
|
||||
|
||||
<p class="mb-2">Neurological Physiotherapy treatment will help:</p>
|
||||
<div class="content-one mb_30">
|
||||
<ul style="padding-left: 30px; list-style-type: disc; margin: 0; display: block;">
|
||||
<li style="list-style-type: disc;">Relieve pain</li>
|
||||
<li style="list-style-type: disc;"> Improve ability with everyday activities</li>
|
||||
<li style="list-style-type: disc;">Retrain normal patterns of movement</li>
|
||||
<li style="list-style-type: disc;">Increase muscle strength</li>
|
||||
<li style="list-style-type: disc;">Improve posture</li>
|
||||
<li style="list-style-type: disc;"> Increase balance</li>
|
||||
<li style="list-style-type: disc;"> Increase range of movement</li>
|
||||
<li style="list-style-type: disc;"> Improve gross or fine motor skills</li>
|
||||
<li style="list-style-type: disc;"> Increase fitness levels and endurance</li>
|
||||
<li style="list-style-type: disc;"> Help problems with breathing</li>
|
||||
<li style="list-style-type: disc;"> Reduce risk of falling</li>
|
||||
<li style="list-style-type: disc;"> Increase independence</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
`
|
||||
},
|
||||
];
|
||||
|
||||
export default Rehabilitation;
|
||||
@ -0,0 +1,510 @@
|
||||
export const servicesList = [
|
||||
{
|
||||
id:"1",
|
||||
slug: "physiotherapy-clinic-etobicoke",
|
||||
shortTitle: "Physiotherapy",
|
||||
title: "Trusted Physiotherapy Clinic in Etobicoke – Rapha Rehab",
|
||||
sidebarImg:"/assets/images/service/service-4.jpg",
|
||||
bigImg:"/assets/images/service/service-7.jpg",
|
||||
shortDescrition: "Sed ut perspiciatis unde omnis iste natus error sit voluptatem",
|
||||
description: `<div>
|
||||
<div class="text-box ">
|
||||
<h2>Trusted Physiotherapy Clinic in Etobicoke – Rapha Rehab</h2>
|
||||
<p>Rapha Rehab is one of the premier physical therapy clinics in Etobicoke for physiotherapy and wellness. We are leading provider of <a href="https://www.instagram.com/rapharehab/" target="_blank">physiotherapy services</a> offering exceptional patient-focused care and strive to exceed your expectations.</p>
|
||||
<p class="mb_40">Our licensed Physiotherapists have years of advanced training and our treatment is based on the latest research to provide our patients with effective, evidence-based <a href="https://rapharehab.ca/" target="_blank">physiotherapy care</a> in and around in Etobicoke.</p>
|
||||
|
||||
<h5 class="mb_15">Indications for Physiotherapy Recommendations:</h5>
|
||||
|
||||
<ul class="list-style-one clearfix mb_40">
|
||||
<li>Injuries to the soft tissue</li>
|
||||
<li>Injuries to the joints and functional limitation of the joint</li>
|
||||
<li>Movement that cause pain during day to day activities</li>
|
||||
<li>Repetitive strain</li>
|
||||
<li>Limitations of the joint mobility after post surgery</li>
|
||||
</ul>
|
||||
<h5 class="mb_15">What is Expected During my First Physiotherapy Appointment?</h5>
|
||||
|
||||
<ul class="list-style-two clearfix mb_30">
|
||||
<li>1. Your first appointment may last for an hour and begins with a discussion of the factors in your medical history and a lifestyle analysis like occupation to pinpoint the cause of the problem and any if there are any other factors that may influence your pain.</li>
|
||||
<li>2. Then we will assess other factors contributing to the pain and examine other areas that contribute to pain.</li>
|
||||
<li>3. We will share all the relevant information and results to you and design a customized treatment program that are beneficial to your recovery to meet your needs and goals. We will continually monitor your recovery process and re-evaluate the treatment program and make changes when needed.</li>
|
||||
<li>4. Further follow up appointments will be handled as a private one-on-one session and may take 30 minutes depending on the condition</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="content-two">
|
||||
<div className="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30"><img src="/assets/images/service/service-8.jpg" alt="" /></figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30"><img src="/assets/images/service/service-9.jpg" alt="" /></figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-box mt_10">
|
||||
<h5 class="mb_15">OUR PHYSIOTHERAPY TREATMENT PROGRAM INCLUDES</h5>
|
||||
<ul class="list-style-one clearfix mb_40">
|
||||
<li>Manual Therapy</li>
|
||||
<li>Exercise Therapy to strengthen the muscle groups and increase the range of motion of the joints</li>
|
||||
<li>Laser & Shock wave therapy</li>
|
||||
<li>Balance & Coordination and movement training</li>
|
||||
<li>Vestibular Rehabilitation</li>
|
||||
<li>Cardio Pulmonary Rehabilitation</li>
|
||||
<li>Therapeutic Taping</li>
|
||||
<li>Modalities to reduce pain and recover functional abilities</li>
|
||||
<li>Education and injury prevention</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="text-box">
|
||||
<h5 class="mb_15">Common Conditions that can Benefit from Physiotherapy</h5>
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<ul class="list-style-one clearfix">
|
||||
<li>Acute & chronic pain</li>
|
||||
<li>Arthritis including rheumatoid arthritis, Osteoarthritis and Gouty arthritis</li>
|
||||
<li>Back and neck pain including Sciatica & Radiculopathy</li>
|
||||
<li>Carpal tunnel syndrome (CTS)</li>
|
||||
<li>Degenerative disc disease (DDD)</li>
|
||||
<li>Disc dysfunctions</li>
|
||||
<li>Dupuytren’s contracture</li>
|
||||
<li>Facial palsy</li>
|
||||
<li>Frozen shoulder</li>
|
||||
<li>Myofascial disorders</li>
|
||||
<li>Nerve root impingement</li>
|
||||
<li>Pain management</li>
|
||||
<li>Patello-femoral pain syndrome (PFPS)</li>
|
||||
<li>Plantar fasciitis, heel spurs</li>
|
||||
<li>Postoperative scar reduction</li>
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<ul class="list-style-one clearfix">
|
||||
<li>Pre & post natal exercise program</li>
|
||||
<li>Pre and Post-surgical rehabilitation (e.g. hip/knee replacement)</li>
|
||||
<li>Postural pain</li>
|
||||
<li>Repetitive strain injuries</li>
|
||||
<li>Rotator cuff injuries</li>
|
||||
<li>Sports injuries</li>
|
||||
<li>Strains & Sprains</li>
|
||||
<li>Tendonitis and brusitis</li>
|
||||
<li>Tennis elbow & Golfer’s elbow</li>
|
||||
<li>Whiplash injuries</li>
|
||||
<li>Torticollis</li>
|
||||
<li>Vestibular rehabilitation</li>
|
||||
<li>Cardio pulmonary rehabilitation</li>
|
||||
<li>Workplace injuries (WSIB)</li>
|
||||
<li>Motor vehicle accident injuries (MVA)</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>`
|
||||
},
|
||||
{
|
||||
id:"2",
|
||||
slug: "sportsinjury-physiotherapy-clinic-etobicoke",
|
||||
shortTitle: "Sports Injury",
|
||||
title: "Sports Injury",
|
||||
sidebarImg:"/assets/images/service/service-4.jpg",
|
||||
bigImg:"/assets/images/service/service-7.jpg",
|
||||
shortDescrition: "Sed ut perspiciatis unde omnis iste natus error sit voluptatem",
|
||||
description: `<div>
|
||||
<div class="text-box ">
|
||||
<h2>Sports Injury</h2>
|
||||
<blockquote class="mb_30">
|
||||
Sports physiotherapy is a speciality dedicated to the assessment and treatment of injuries related to sports and exercise at all levels and ages. Rather than the other injuries, Sports injuries are different since the demands of sport on the body are higher than the other everyday activities.
|
||||
</blockquote>
|
||||
|
||||
|
||||
<h5 class="mb_15">What does a Sports Physiotherapist do?</h5>
|
||||
|
||||
<ul class="list-style-one clearfix mb_40">
|
||||
<li>We at Rapharehab, follow a Comprehensive and careful Assessment of injuries will involve a thorough examination of the body.</li>
|
||||
<li>Thorough assessment in finding the root cause of the injury will identify the factors that have contributed to the injury.</li>
|
||||
<li>We develop individualized treatment plan that will address all imbalances and prevent re-occurrence of the injury.</li>
|
||||
<li>We follow realistic timescale for the recovery of the patient based on the condition of the patient.</li>
|
||||
<li>Injury prevention – We take measures through the expertise of a Multidisciplinary <a href="https://www.instagram.com/rapharehab/" target="_blank">Therapeutic Treatment</a> Team in order to prevent a recurrent sports injury.</li>
|
||||
</ul>
|
||||
<h5 class="mb_15">Common Sports Injury:</h5>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<ul class="list-style-one clearfix">
|
||||
<li>Ankle sprain</li>
|
||||
<li>Groin pull</li>
|
||||
<li>Shoulder Injury</li>
|
||||
<li>Hamstring strain</li>
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<ul class="list-style-one clearfix">
|
||||
<li>Shin splints</li>
|
||||
<li>Sciatica</li>
|
||||
<li>Back injuries/back pain</li>
|
||||
<li>Concussion</li>
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<ul class="list-style-one clearfix">
|
||||
<li>Knee injury: ACL tear</li>
|
||||
<li>Knee injury: Patellofemoral syndrome</li>
|
||||
<li>Tennis elbow (epicondylitis)</li>
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="content-two">
|
||||
<div className="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30"><img src="/assets/images/service/service-8.jpg" alt="" /></figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30"><img src="/assets/images/service/service-9.jpg" alt="" /></figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="text-box">
|
||||
<h5 class="mb_15">Physiotherapy for Sports Injuries:</h5>
|
||||
|
||||
<ul class="list-style-one clearfix">
|
||||
<li>Ice pack applications –helpful in minimizing the swelling and pain caused by the injury.</li>
|
||||
<li>Hot pack applications –is effective in alleviating pain and joint or muscle stiffness.</li>
|
||||
<li>TENS – also known as Transcutaneous Electrical Nerve Simulation effective for temporary pain relief.</li>
|
||||
<li>Ultrasound therapy – Applying sound vibrations directly into the tissues will greatly help the healing process.</li>
|
||||
<li>Massage and stretching help in relaxing the muscles.</li>
|
||||
<li>Exercises are helpful for improving and maintaining the joint’s range of motion.</li>
|
||||
<li>Strengthening exercises are a great way to maintain the strength of your muscles.</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>`
|
||||
},
|
||||
{
|
||||
id:"3",
|
||||
slug: "pelvic-floor-physiotherapy-clinic-etobicoke",
|
||||
shortTitle: "Pelvic Floor Physiotherapy",
|
||||
title: "Pelvic Floor Physiotherapy",
|
||||
sidebarImg:"/assets/images/service/service-4.jpg",
|
||||
bigImg:"/assets/images/service/service-7.jpg",
|
||||
shortDescrition: "Sed ut perspiciatis unde omnis iste natus error sit voluptatem",
|
||||
description: `<div>
|
||||
<div class="text-box ">
|
||||
<h2>Pelvic Floor Physiotherapy</h2>
|
||||
<p>Rapha Rehab is one of the premier physical therapy clinics in Etobicoke for physiotherapy and wellness. We are leading provider of <a href="https://rapharehab.ca/" target="_blank">physiotherapy services</a> offering exceptional patient-focused care and strive to exceed your expectations.</p>
|
||||
<p class="mb_40">Our licensed Physiotherapists have years of advanced training and our treatment is based on the latest research to provide our patients with effective, evidence-based <a href="https://www.instagram.com/rapharehab/" target="_blank">physiotherapy care</a> in and around in Etobicoke.</p>
|
||||
|
||||
<h5 class="mb_15">Indications for Physiotherapy Recommendations:</h5>
|
||||
<div>
|
||||
<ul class="list-style-one clearfix mb_40">
|
||||
<li>Injuries to the soft tissue</li>
|
||||
<li>Injuries to the joints and functional limitation of the joint</li>
|
||||
<li>Movement that cause pain during day to day activities</li>
|
||||
<li>Repetitive strain</li>
|
||||
<li>Limitations of the joint mobility after post surgery</li>
|
||||
</ul>
|
||||
</div>
|
||||
<h5 class="mb_15">What is expected during my First Physiotherapy Appointment?</h5>
|
||||
<div>
|
||||
<ul class="list-style-two clearfix mb_30">
|
||||
<li>1. Your first appointment may last for an hour and begins with a discussion of the factors in your medical history and a lifestyle analysis like occupation to pinpoint the cause of the problem and any if there are any other factors that may influence your pain.</li>
|
||||
<li>2. Then we will assess other factors contributing to the pain and examine other areas that contribute to pain.</li>
|
||||
<li>3. We will share all the relevant information and results to you and design a customized treatment program that are beneficial to your recovery to meet your needs and goals. We will continually monitor your recovery process and re-evaluate the treatment program and make changes when needed.</li>
|
||||
<li>4. Further follow up appointments will be handled as a private one-on-one session and may take 30 minutes depending on the condition.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="content-two">
|
||||
<div className="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30"><img src="/assets/images/service/service-8.jpg" alt="" /></figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30"><img src="/assets/images/service/service-9.jpg" alt="" /></figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-box mt_10">
|
||||
<h5 class="mb_15">OUR PHYSIOTHERAPY TREATMENT PROGRAM INCLUDES</h5>
|
||||
<ul class="list-style-one clearfix mb_40">
|
||||
<li>Manual Therapy</li>
|
||||
<li>Exercise Therapy to strengthen the muscle groups and increase the range of motion of the joints</li>
|
||||
<li>Laser & Shock wave therapy</li>
|
||||
<li>Balance & Coordination and movement training</li>
|
||||
<li>Vestibular Rehabilitation</li>
|
||||
<li>Cardio Pulmonary Rehabilitation</li>
|
||||
<li>Therapeutic Taping</li>
|
||||
<li>Modalities to reduce pain and recover functional abilities</li>
|
||||
<li>Education and injury prevention</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="text-box">
|
||||
<h5 class="mb_15">Common Conditions that can Benefit from Physiotherapy</h5>
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<ul class="list-style-one clearfix">
|
||||
<li>Acute & chronic pain</li>
|
||||
<li>Arthritis including rheumatoid arthritis, Osteoarthritis and Gouty arthritis</li>
|
||||
<li>Back and neck pain including Sciatica & Radiculopathy</li>
|
||||
<li>Carpal tunnel syndrome (CTS)</li>
|
||||
<li>Degenerative disc disease (DDD)</li>
|
||||
<li>Disc dysfunctions</li>
|
||||
<li>Dupuytren’s contracture</li>
|
||||
<li>Facial palsy</li>
|
||||
<li>Frozen shoulder</li>
|
||||
<li>Myofascial disorders</li>
|
||||
<li>Nerve root impingement</li>
|
||||
<li>Pain management</li>
|
||||
<li>Patello-femoral pain syndrome (PFPS)</li>
|
||||
<li>Plantar fasciitis, heel spurs</li>
|
||||
<li>Postoperative scar reduction</li>
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<ul class="list-style-one clearfix">
|
||||
<li>Pre & post natal exercise program</li>
|
||||
<li>Pre and Post-surgical rehabilitation (e.g. hip/knee replacement)</li>
|
||||
<li>Postural pain</li>
|
||||
<li>Repetitive strain injuries</li>
|
||||
<li>Rotator cuff injuries</li>
|
||||
<li>Sports injuries</li>
|
||||
<li>Strains & Sprains</li>
|
||||
<li>Tendonitis and brusitis</li>
|
||||
<li>Tennis elbow & Golfer’s elbow</li>
|
||||
<li>Whiplash injuries</li>
|
||||
<li>Torticollis</li>
|
||||
<li>Vestibular rehabilitation</li>
|
||||
<li>Cardio pulmonary rehabilitation</li>
|
||||
<li>Workplace injuries (WSIB)</li>
|
||||
<li>Motor vehicle accident injuries (MVA)</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>`
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
slug: "massage-therapy-clinic-etobicoke",
|
||||
shortTitle: "Massage Therapy Etobicoke",
|
||||
title: "Massage Therapy Etobicoke",
|
||||
sidebarImg:"/assets/images/service/service-4.jpg",
|
||||
bigImg:"/assets/images/service/service-7.jpg",
|
||||
shortDescrition: "Sed ut perspiciatis unde omnis iste natus error sit voluptatem",
|
||||
description: `<div>
|
||||
<div class="content-two">
|
||||
<div class="text-box ">
|
||||
<h2>Massage Therapy Etobicoke</h2>
|
||||
<p>Massage Therapy Etobicoke is the scientific manipulation of the soft tissues of the body, consisting primarily of manual techniques such as applying fixed or movable pressure, holding, and moving muscles and body tissues. Massage therapy in etobicoke by <a href="https://rapharehab.ca/" target="_blank">professional massage therapist</a> is one of the most versatile, most effective forms of treatment to relieve structural issues in the body, and can treat muscle imbalance.</p>
|
||||
<p >Swedish massage <a href="https://www.instagram.com/rapharehab/" target="_blank">therapy etobicoke</a> is the most commonly used form of massage involving long gliding strokes, kneading, and friction techniques on the superficial layers of muscles. It is used to promote general relaxation, improve circulation, relieve muscle tension and range of motion. We at massage therapy etobicoke, offer massage therapy services by experienced etobicoke massage therapy professionals that can help reduce stress, pain and muscle tension.</p>
|
||||
<p>Deep tissue massage in etobicoke massage therapy clinic involves slow strokes, direct pressure, or friction directed across the grain of the muscles. It is applied with greater pressure and to deeper layers of muscle effective for chronic muscular tension.</p>
|
||||
<p>Neuromuscular massage <a href="https://rapharehab.ca/contact-us/" target="_blank">therapy in etobicoke</a> is a form of deep massage that is applied to individual muscles primarily used to release trigger points and also to increase blood flow. It is often used to reduce pain.</p>
|
||||
<p class="mb_40">Acupressure therapy in etobicoke applies finger or thumb pressure to specific points located on the energy pathways in order to release blocked energy along these meridians that cause physical discomfort. The rebalance of energy flow releases tension and restores function of organs and muscles in the body.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="content-two mt_40">
|
||||
<div className="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30"><img src="/assets/images/service/service-8.jpg" alt="" /></figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30"><img src="/assets/images/service/service-9.jpg" alt="" /></figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-box mt_10">
|
||||
<h5 class="mb_15">Therapeutic massage therapy etobicoke may be recommended to deliver benefits such as:</h5>
|
||||
<ul class="list-style-one clearfix mb_40">
|
||||
<li>Reducing muscle tension and stiffness</li>
|
||||
<li>Eliminate Toxins</li>
|
||||
<li>Improve Flexibility</li>
|
||||
<li>Improve Sleep</li>
|
||||
<li>Enhance Immunity</li>
|
||||
<li>Relieving muscle spasms</li>
|
||||
<li>Increasing joint and limb flexibility and range of motion</li>
|
||||
<li> Increasing ease and efficiency of movement</li>
|
||||
<li>Relieving points of tension and overall stress; inducing relaxation</li>
|
||||
<li>Promoting deeper and easier breathing</li>
|
||||
<li>Improving blood circulation and movement of lymph</li>
|
||||
<li>Relieving tension-related headaches and eyestrain</li>
|
||||
<li>Promoting faster healing of soft tissue injuries, such as pulled muscles and sprained ligaments</li>
|
||||
<li>Reducing pain and swelling related to injuries</li>
|
||||
<li>Reducing the formation of scar tissue following soft tissue injuries</li>
|
||||
<li>Enhancing health and nourishment of skin</li>
|
||||
<li>Improving posture by changing tension patterns that affect posture</li>
|
||||
<li>Reducing emotional or physical stress and reducing anxiety</li>
|
||||
<li>Promoting feelings of well-being</li>
|
||||
<li>Increasing awareness of the mind-body connection and improving mental awareness and alertness generally</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="text-box">
|
||||
<h5 class="mb_15">Massage Therapy Clinic in Etobicoke may also be helpful for:</h5>
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<ul class="list-style-one clearfix">
|
||||
<li>Anxiety</li>
|
||||
<li>Digestive disorders</li>
|
||||
<li>Fibromyalgia</li>
|
||||
<li>Relieve tension headaches</li>
|
||||
<li>Insomnia related to stress</li>
|
||||
<li>Low back pain</li>
|
||||
<li>Myofascial pain syndrome</li>
|
||||
<li>Nerve pain</li>
|
||||
<li>Soft tissue strains or injuries</li>
|
||||
<li>Sports injuries</li>
|
||||
<li>Temporomandibular joint pain</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<ul class="list-style-one clearfix">
|
||||
|
||||
<li>Upper back and neck pain</li>
|
||||
<li>Enhance exercise performance</li>
|
||||
<li>Ease symptoms of depression</li>
|
||||
<li>Improve cardiovascular health</li>
|
||||
<li>Reduce pain of osteoarthritis</li>
|
||||
<li>Decrease stress in cancer patients</li>
|
||||
<li>Improve balance in older adults</li>
|
||||
<li>Decrease rheumatoid arthritis pain</li>
|
||||
<li>Temper effects of dementia</li>
|
||||
<li>Decrease migraine frequency</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>`
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
slug: "chiropractic-clinic-etobicoke",
|
||||
shortTitle: "Chiropractor",
|
||||
title: "Chiropractor",
|
||||
sidebarImg:"/assets/images/service/service-4.jpg",
|
||||
bigImg:"/assets/images/service/service-7.jpg",
|
||||
shortDescrition: "Sed ut perspiciatis unde omnis iste natus error sit voluptatem",
|
||||
description: `<div>
|
||||
<div class="text-box ">
|
||||
<h2>Chiropractor</h2>
|
||||
<p class="mb_40"><a href="https://rapharehab.ca/contact-us/" target="_blank">Chiropractic clinic</a> in etobicoke is a healthcare profession that cares for a patient’s neuromusculoskeletal system like bones, nerves, muscles, tendons and ligaments. A <a href="https://rapharehab.ca/" target="_blank">chiropractor in etobicoke</a> helps manage back and neck pain through the use of spinal adjustments to maintain good alignment. Our chiropractic treatment can restore the structural integrity of the spine, reduce pressure on the sensitive neurological tissue, and consequently improve the health of the individual.</p>
|
||||
|
||||
<h5 class="mb_15">Our Chiropractor Treatments Etobicoke</h5>
|
||||
<div>
|
||||
<ul class="list-style-one clearfix mb_40">
|
||||
<li>Manual Procedures</li>
|
||||
<li>Spinal Manipulation</li>
|
||||
<li>Joint Manipulation and Mobilization</li>
|
||||
<li>Soft-tissue and Reflex Techniques</li>
|
||||
<li>Bio Mechanical Gait Analysis</li>
|
||||
<li>Rehabilitative treatment Programs</li>
|
||||
<li>Psychosocial Aspects of Patient Management</li>
|
||||
<li>Patient Education on Spinal Health</li>
|
||||
<li>Posture Correction</li>
|
||||
<li>Nutrition and Lifestyle Modifications</li>
|
||||
<li>Emergency Treatment and Acute Pain Management Procedures</li>
|
||||
<li>Supportive Measures (Use of back supports and Orthotics)</li>
|
||||
</ul>
|
||||
</div>
|
||||
<h5 class="mb_15">Common Conditions Treated by the Chiropractor Etobicoke:</h5>
|
||||
<div>
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<ul class="list-style-one clearfix mb_30">
|
||||
<li>Asthma</li>
|
||||
<li>Attention Deficit Disorder</li>
|
||||
<li>Headache</li>
|
||||
<li>Immune Function</li>
|
||||
<li>Autism</li>
|
||||
<li>Infertility</li>
|
||||
<li>Bell’s Palsy</li>
|
||||
<li>Blindness/Visual Disorders</li>
|
||||
<li>Blood Pressure</li>
|
||||
<li>Low Back Pain</li>
|
||||
<li>Multiple Sclerosis</li>
|
||||
<li>Cancer</li>
|
||||
<li>Non musculoskeletal Disorders</li>
|
||||
<li>Carpal Tunnel Syndrome</li>
|
||||
<li>Otitis Media</li>
|
||||
<li>Cerebral Palsy</li>
|
||||
<li>Parkinson’s Disease</li>
|
||||
<li>Chronic Neck Pain</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<ul class="list-style-one clearfix">
|
||||
<li>Pregnancy-related Pain</li>
|
||||
<li>Radiculopathy</li>
|
||||
<li>Deafness</li>
|
||||
<li>Degenerative Joint Disease</li>
|
||||
<li>Repetitive Stress</li>
|
||||
<li>Scoliosis</li>
|
||||
<li>Spinal Alignment/Cervical Curve</li>
|
||||
<li>Disc Herniation</li>
|
||||
<li>Spinal Pain</li>
|
||||
<li>Epilepsy</li>
|
||||
<li>Stress</li>
|
||||
<li>Female Issues</li>
|
||||
<li>Subluxation</li>
|
||||
<li>Fibromyalgia</li>
|
||||
<li>Forward Head Posture</li>
|
||||
<li>Temporomandibular Joint Disorders</li>
|
||||
<li>Vertigo and Balance</li>
|
||||
<li>Whiplash</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="content-two">
|
||||
<div className="image-inner">
|
||||
<div class="row clearfix">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30"><img src="/assets/images/service/service-8.jpg" alt="" /></figure>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 image-column">
|
||||
<figure class="image-box mb_30"><img src="/assets/images/service/service-9.jpg" alt="" /></figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-box mt_10">
|
||||
<h5 class="mb_15">Conditions Etobicoke Chiropractors Typically Treat are:</h5>
|
||||
<ul class="list-style-one clearfix mb_40">
|
||||
<li>Low Back Pain is one of the most common reasons people seek treatment from a chiropractor.</li>
|
||||
<li>Neck Pain can be treated with neck manipulations, neck adjustments along with exercises.</li>
|
||||
<li>Tension Headaches that causes pain in the back of your head and neck can be relieved by the <a href="https://www.instagram.com/rapharehab/" target="_blank">chiropractor</a> with some stretching exercises that reduce stress and relieve your headaches, including proper posture and body mechanics.</li>
|
||||
<li>Migraine Headaches can be relieved by spinal manipulations and reduce the need for migraine medication.</li>
|
||||
<li>Shoulder Pain/ Stiff Shoulder and restriction in range of motion of the joint will tend to ease by stretching of the muscles by the chiropractor.</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>`
|
||||
},
|
||||
];
|
||||