area of injury updated
This commit is contained in:
parent
3038013345
commit
e3ab5551d9
133
app/area-of-injury/[slug]/page.js
Normal file
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
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>
|
||||
)
|
||||
}
|
||||
@ -332,30 +332,45 @@ const Accident = [
|
||||
|
||||
<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>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
`
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
slug: "psychotherapy-management-etobicoke",
|
||||
title: "PSYCHOTHERAPY MANAGEMENT",
|
||||
shortDesc: "Amet minim mollit non deserunt ullamco aliqua dolor do amet sint.",
|
||||
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_60">
|
||||
<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>Quam arcu pretium quis quam sed, laorey afficits volutpat lobortis sem consq consequat lore dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut laboret dol aliqua.</p>
|
||||
<p>Velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proide in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis isten sit voluptatem accusantium doloremque laudantium.</p>
|
||||
<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">
|
||||
@ -371,30 +386,60 @@ const Accident = [
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium dolor mque lauda totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vite sunt explicabo.</p>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
|
||||
</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: "Amet minim mollit non deserunt ullamco aliqua dolor do amet sint.",
|
||||
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_60">
|
||||
<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>Quam arcu pretium quis quam sed, laorey afficits volutpat lobortis sem consq consequat lore dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut laboret dol aliqua.</p>
|
||||
<p>Velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proide in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis isten sit voluptatem accusantium doloremque laudantium.</p>
|
||||
</div>
|
||||
<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">
|
||||
@ -410,30 +455,54 @@ const Accident = [
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium dolor mque lauda totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vite sunt explicabo.</p>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
|
||||
|
||||
<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>
|
||||
</div>
|
||||
`
|
||||
},
|
||||
{
|
||||
id: 7,
|
||||
slug: "chronic-pain-management-etobicoke",
|
||||
title: " Chronic Pain Management",
|
||||
shortDesc: "Amet minim mollit non deserunt ullamco aliqua dolor do amet sint.",
|
||||
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_60">
|
||||
<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</h2>
|
||||
<p>Quam arcu pretium quis quam sed, laorey afficits volutpat lobortis sem consq consequat lore dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut laboret dol aliqua.</p>
|
||||
<p>Velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proide in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis isten sit voluptatem accusantium doloremque laudantium.</p>
|
||||
<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">
|
||||
@ -449,13 +518,49 @@ const Accident = [
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium dolor mque lauda totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vite sunt explicabo.</p>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
|
||||
|
||||
<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>
|
||||
`,
|
||||
},
|
||||
];
|
||||
Loading…
x
Reference in New Issue
Block a user