From 4ed7d601a5700672db137772fec87b7ff1461e54 Mon Sep 17 00:00:00 2001 From: selvi Date: Wed, 17 Sep 2025 15:04:54 +0530 Subject: [PATCH] meta titles and discription updated --- app/accident/[slug]/page.js | 16 + app/accident/page.js | 7 +- app/area-of-injury/[slug]/page.js | 19 +- app/area-of-injury/page.js | 101 ++--- app/blog/page.js | 7 +- app/chooseus/HomePage.js | 345 ------------------ app/chooseus/page.js | 12 - .../[slug]/page.js | 15 + app/etobicoke-treatment-service/page.js | 7 +- app/rehabilitation/[slug]/page.js | 11 + app/rehabilitation/page.js | 7 +- app/tesmonial/page.js | 95 ----- public/assets/css/module-css/solutions.css | 8 + utils/Accident.utils.js | 14 + utils/AreaOfInjery.utils.js | 19 +- utils/Rehabilitation.utils.js | 8 + utils/Services.utils.js | 42 +++ 17 files changed, 225 insertions(+), 508 deletions(-) delete mode 100644 app/chooseus/HomePage.js delete mode 100644 app/chooseus/page.js delete mode 100644 app/tesmonial/page.js diff --git a/app/accident/[slug]/page.js b/app/accident/[slug]/page.js index e880479..823eb02 100644 --- a/app/accident/[slug]/page.js +++ b/app/accident/[slug]/page.js @@ -10,6 +10,22 @@ export async function generateStaticParams() { })); } +export async function generateMetadata({ params }) { + const service = Accident.find((item) => item.slug === params.slug); + + if (!service) { + return { + title: "Accident Services | MySite", + description: "Explore our accident-related services", + }; + } + + return { + title: service.metaTitle || service.title, + description: service.metaDescription || service.shortDesc, + }; +} + export default function AccidentDetailsPage({ params }) { const service = Accident.find((item) => item.slug === params.slug); diff --git a/app/accident/page.js b/app/accident/page.js index d5f235c..28ab7e0 100644 --- a/app/accident/page.js +++ b/app/accident/page.js @@ -1,8 +1,13 @@ -'use client'; + import Layout from "@/components/layout/Layout"; import Link from "next/link"; import Accident from "@/utils/Accident.utils"; +export const metadata = { + title: "Accident Injury Rehab Services – Rapharehab Experts", + description: "Recover confidently after an accident with Rapharehab. Our professional team provides personalized care to manage pain, restore mobility, and rebuild strength.", +}; + export default function AccidentPage() { return ( diff --git a/app/area-of-injury/[slug]/page.js b/app/area-of-injury/[slug]/page.js index 52020ec..c7a840b 100644 --- a/app/area-of-injury/[slug]/page.js +++ b/app/area-of-injury/[slug]/page.js @@ -9,12 +9,27 @@ export async function generateStaticParams() { })); } +export async function generateMetadata({ params }) { + const service = areaOfInjuryData.find((item) => item.slug === params.slug); + + if (!service) { + return { + title: "Area of Injury Not Found – Rapharehab Clinic", + description: "The requested area of injury page could not be found.", + }; + } + + return { + title: `${service.metaTitle} – Rapharehab Clinic`, + description: service.metaDescription || "Expert physiotherapy and pain relief treatments.", + }; +} + export default function AreaOfInjuryDetails({ params }) { const service = areaOfInjuryData.find((item) => item.slug === params.slug); if (!service) return notFound(); - // Alt text (always uppercase) const altText = service.title ? service.title.toUpperCase() : "AREA OF INJURY"; return ( @@ -96,4 +111,4 @@ export default function AreaOfInjuryDetails({ params }) { ); -} +} \ No newline at end of file diff --git a/app/area-of-injury/page.js b/app/area-of-injury/page.js index 486acba..65d7a0b 100644 --- a/app/area-of-injury/page.js +++ b/app/area-of-injury/page.js @@ -1,55 +1,58 @@ -'use client'; -import Layout from "@/components/layout/Layout" -import Link from "next/link" -import { areaOfInjuryData } from "@/utils/AreaOfInjery.utils" +import Layout from "@/components/layout/Layout"; +import Link from "next/link"; +import { areaOfInjuryData } from "@/utils/AreaOfInjery.utils"; + +export const metadata = { + title: "Expert Injury Area – Rapharehab Physiotherapy", + description: "Explore Rapharehab’s specialized treatment plans for each injury area—from head to toe—designed to support full recovery with professional.", +}; export default function AreaOfInjury() { - return ( - -
-
-
- {areaOfInjuryData.map((item) => { - // Always use TITLE in uppercase - const altText = item.title ? item.title.toUpperCase() : "AREA OF INJURY"; + return ( + +
+
+
+ {areaOfInjuryData.map((item) => { + const altText = item.title ? item.title.toUpperCase() : "AREA OF INJURY"; - return ( -
-
-
-
-
- - {altText} - -
-
-
-
- {altText} -
-

- {item.title} -

-

{item.shortDescription}

-
-
-
-
- ) - })} + return ( +
+
+
+
+
+ + {altText} + +
+
+
+
+ {altText} +
+

+ {item.title} +

+

{item.shortDescription}

+
+
-
-
- ) + ) + })} +
+
+
+
+ ); } diff --git a/app/blog/page.js b/app/blog/page.js index 3d74c1d..470f29e 100644 --- a/app/blog/page.js +++ b/app/blog/page.js @@ -1,8 +1,13 @@ -'use client' + import Layout from "@/components/layout/Layout"; import Link from "next/link"; import Blogs from "@/utils/Blog.utils"; +export const metadata = { + title: "Rapharehab Blog – Wellness Tips & Rehab Insights", + description: "Explore expert articles from Rapharehab on physiotherapy, injury recovery, and wellness. Stay informed with trusted health tips and rehab advice.", +}; + export default function Blog() { return ( diff --git a/app/chooseus/HomePage.js b/app/chooseus/HomePage.js deleted file mode 100644 index bb115bf..0000000 --- a/app/chooseus/HomePage.js +++ /dev/null @@ -1,345 +0,0 @@ -'use client' -import CounterUp from "@/components/elements/CounterUp" -import Layout from "@/components/layout/Layout" - -import Link from "next/link" -import { useState } from 'react' -import ModalVideo from 'react-modal-video' -const ProgressBar = ({ label, percent }) => ( -
-

{label}

-
-
-
{`${percent}%`}
-
-
- ); -export default function Home() { - const [isOpen, setOpen] = useState(false) - const [isActive, setIsActive] = useState({ - status: false, - key: 1, - }) - - const handleToggle = (key) => { - if (isActive.key === key) { - setIsActive({ - status: false, - }) - } else { - setIsActive({ - status: true, - key, - }) - } - } - - return ( - <> - - {/* chooseus-section */} -
-
-
-
-
-
-
-
- Why Choose Us -

Choose The Best For Your
Health

-
-
-
-
-
-
-

Professional Staff

-

Amet minim mollit non deserunt aliqua dolor do amet sint.

-
-
-
-
-
-
-
-

Emergency Case

-

Amet minim mollit non deserunt aliqua dolor do amet sint.

-
-
-
-
-
-
-
-

Online Appointment

-

Amet minim mollit non deserunt aliqua dolor do amet sint.

-
-
-
-
-
-
-
-

24/7 Services

-

Amet minim mollit non deserunt aliqua dolor do amet sint.

-
-
-
-
-
-
-
-
-
- {/* chooseus-section end */} - - - {/* cta */} -
-
-
-
-
-
- Need a Doctor for Check-up? -

Call for an emergency service when you have a need!

-
- Make an Appointment -
-
-
-
-
- {/* cta end */} - - - {/* funfact-section */} -
-
-
-
-
-
-
- -
- + -
- Expert Doctors -
-
-
-
-
-
- -
- k -
- Happy Patients -
-
-
-
-
-
- -
- -
- Modern Rooms -
-
-
-
-
-
- -
- -
- Awards Win -
-
-
-
-
-
-
- {/* funfact-section */} - - {/* */} -
-
-
-
-
-
- Better Solutions -

Quality Medical Service with Experts

-
-
- - - - -
-
- Discover More -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- - {/* */} - {/* */} -
-
-
-
-
-
-
-
- Our Team -

Meet our experienced doctors
for the best treatment

-
-
-
-
-
-
-
-
-
-

Black Marvin

- Medical Assistant -
    -
  • -
  • -
  • -
  • -
-
-
-
-
-
-
-
-
-
-
-
-

Eleanor Pena

- Doctor -
    -
  • -
  • -
  • -
  • -
-
-
-
-
-
-
-
-
-
-
-
-

Arlene Maccy

- Nursing Assistant -
    -
  • -
  • -
  • -
  • -
-
-
-
-
-
-
-
-
-
-
-
-

Jenny Wilson

- Senior Doctor -
    -
  • -
  • -
  • -
  • -
-
-
-
-
-
-
-
- - {/* */} - - - - - {/* subscibe */} -
-
-
-
-
-
-

Subscribe for the exclusive updates!

-
-
-
-
-
-
- - -
-
-
- - -
-
-
-
-
-
-
-
-
- {/* subscibe end */} - - setOpen(false)} /> - - -
- - ) -} - - diff --git a/app/chooseus/page.js b/app/chooseus/page.js deleted file mode 100644 index 19a8443..0000000 --- a/app/chooseus/page.js +++ /dev/null @@ -1,12 +0,0 @@ -// app/choose-us/page.js -import HomePage from "../chooseus/HomePage"; - -export const metadata = { - title: "Why Choose Us – Rapharehab Clinic", - description: - "Discover why Rapharehab Clinic is trusted for expert doctors, modern facilities, and dedicated care. Learn what makes us the best choice for your health.", -}; - -export default function Page() { - return ; -} diff --git a/app/etobicoke-treatment-service/[slug]/page.js b/app/etobicoke-treatment-service/[slug]/page.js index db09138..b99335c 100644 --- a/app/etobicoke-treatment-service/[slug]/page.js +++ b/app/etobicoke-treatment-service/[slug]/page.js @@ -2,6 +2,21 @@ import Layout from "@/components/layout/Layout"; import { servicesList } from "@/utils/Services.utils"; import ServiceDetailClient from "./ServiceDetailClient"; +export async function generateMetadata({ params }) { + const service = servicesList.find((item) => item.slug === params.slug); + + if (!service) { + return { + title: "Service | MySite", + description: "Explore our services", + }; + } + + return { + title: service.metaTitle || service.shortTitle || service.title, + description: service.metaDescription || service.shortDesc || "Explore this service in detail", + }; +} export async function generateStaticParams() { diff --git a/app/etobicoke-treatment-service/page.js b/app/etobicoke-treatment-service/page.js index b86ada9..759e980 100644 --- a/app/etobicoke-treatment-service/page.js +++ b/app/etobicoke-treatment-service/page.js @@ -1,8 +1,13 @@ -'use client'; + import Layout from "@/components/layout/Layout" import Link from "next/link" import { servicesList } from "@/utils/Services.utils" +export const metadata = { + title: "Our Professional Services – Rapharehab Physiotherapy", + description: "Explore a full range of trusted services at Rapharehab, from physiotherapy to acupuncture, massage, osteopathy, chiropody, and more.", +}; + export default function ServicesPage() { return ( item.slug === params.slug); + + if (!service) return { title: "Rehabilitation | MySite", description: "Explore our rehabilitation services" }; + + return { + title: service.metaTitle || service.title, + description: service.metaDescription || service.shortDesc, + }; +} + export default function RehabilitationDetailsPage({ params }) { const service = Rehabilitation.find((item) => item.slug === params.slug); diff --git a/app/rehabilitation/page.js b/app/rehabilitation/page.js index 154ae23..ddfab1f 100644 --- a/app/rehabilitation/page.js +++ b/app/rehabilitation/page.js @@ -1,8 +1,13 @@ -'use client'; + import Layout from "@/components/layout/Layout"; import Link from "next/link"; import Rehabilitation from "@/utils/Rehabilitation.utils"; +export const metadata = { + title: "Comprehensive Rehabilitation – Rapharehab Professionals", + description: "Rapharehab offers expert rehabilitation services tailored to your recovery needs. Regain strength, mobility, and independence with trusted.", +}; + export default function RehabilitationPage() { return ( diff --git a/app/tesmonial/page.js b/app/tesmonial/page.js deleted file mode 100644 index 7df1585..0000000 --- a/app/tesmonial/page.js +++ /dev/null @@ -1,95 +0,0 @@ - -import Layout from "@/components/layout/Layout" -import Link from "next/link" -export default function Home() { - const getTestimonialName = (index) => { - // Replace with actual names based on the index or fetch from a data source - const names = ['Jane Cooper', 'Black, Marvin', 'Jenny Wilson', 'Devon Lane', 'Jacob Jones', 'Ralph Edwards']; - return names[index - 1] || 'Unknown'; - }; - - const getTestimonialDesignation = (index) => { - // Replace with actual designations based on the index or fetch from a data source - const designations = ['Marketing Coordinator', 'Web Designer', 'Medical Assistant', 'President of Sales', 'Nursing Assistant', 'Dog Trainer']; - return designations[index - 1] || 'Unknown Designation'; - }; - - return ( - <> - -
-
-
-
- {/* Repeat the testimonial blocks for each testimonial */} - {[1, 2, 3, 4, 5, 6].map((index) => ( -
-
-
-
-

Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia coequat duis enim velit mollit.

-
-
-
    -
  • -
  • -
  • -
  • -
  • -
- {/* Replace the names and designations dynamically */} -

{getTestimonialName(index)}

- {getTestimonialDesignation(index)} -
-
-
-
- ))} -
-
-
    -
  • 1
  • -
  • 2
  • -
  • 3
  • -
  • -
-
-
-
- {/* subscibe */} -
-
-
-
-
-
-

Subscribe for the exclusive updates!

-
-
-
-
-
-
- - -
-
-
- - -
-
-
-
-
-
-
-
-
- {/* subscibe end */} -
- -
- - ) -} \ No newline at end of file diff --git a/public/assets/css/module-css/solutions.css b/public/assets/css/module-css/solutions.css index 55dc0e7..b31b85e 100644 --- a/public/assets/css/module-css/solutions.css +++ b/public/assets/css/module-css/solutions.css @@ -73,6 +73,14 @@ background: var(--theme-color); } +@media (max-width: 1200px) { + .image_block_two .image-box .icon-box { + left: 222px; + top: 300px; + } +} + + @media (max-width: 425px) { .image_block_two .image-box .icon-box { top: 250px; diff --git a/utils/Accident.utils.js b/utils/Accident.utils.js index 97da0da..adfff52 100644 --- a/utils/Accident.utils.js +++ b/utils/Accident.utils.js @@ -7,6 +7,8 @@ const Accident = [ mainImage: "/assets/images/accident/minor.webp", icon: "/assets/images/accident/icons/minor.webp", bannerImage: "/assets/images/accident/minor/minor-injury-banner.webp", + metaTitle: "Minor Injury Treatment – Rapharehab Professionals", + metaDiscription: "Get fast and effective care for minor injuries at Rapharehab. Our expert team ensures proper healing with personalized treatment and guidance.", content: `
@@ -76,6 +78,8 @@ const Accident = [ mainImage: "/assets/images/accident/catastrophic.webp", icon: "/assets/images/accident/icons/catastrophic.webp", bannerImage: "/assets/images/accident/catastrophic/catastrophic-banner.webp", + metaTitle: "Catastrophic Injury Rehab – Rapharehab Experts", + metaDiscription: "Rapharehab offers specialized rehabilitation for catastrophic injuries. Our professional care supports long-term recovery and improved.", content: `
@@ -160,6 +164,8 @@ const Accident = [ mainImage: "/assets/images/accident/slip.webp", icon: "/assets/images/accident/icons/slip.webp", bannerImage: "/assets/images/accident/slip/slip-fall-banner.webp", + metaTitle: "Slip & Fall Injury Care – Rapharehab Clinic", + metaDiscription: "Recover safely from slip and fall injuries with expert care at Rapharehab. We help you regain mobility, manage pain, and prevent.", content: `
@@ -213,6 +219,8 @@ const Accident = [ mainImage: "/assets/images/accident/concussion.webp", icon: "/assets/images/accident/icons/concussion.webp", bannerImage: "/assets/images/accident/concussion/concussion-banner.webp", + metaTitle: "Trusted Concussion Management – Rapharehab", + metaDiscription: "Rapharehab provides professional concussion management. Our team ensures a safe and guided recovery with neurologically-focused therapy plans.", content: `
@@ -353,6 +361,8 @@ const Accident = [ mainImage: "/assets/images/accident/psychotherapy.webp", icon: "/assets/images/accident/icons/psychotherapy.webp", bannerImage: "/assets/images/accident/psychotherapy/psychotherapy-banner.webp", + metaTitle: "Professional Hydrotherapy Services – Rapharehab Clinic", + metaDiscription: "Rapharehab offers trusted hydrotherapy sessions to relieve pain, improve mobility, and support recovery with expert care tailored.", content: `
@@ -431,6 +441,8 @@ const Accident = [ mainImage: "/assets/images/accident/hydrotherapy.webp", icon: "/assets/images/accident/icons/hydrotherapy.webp", bannerImage: "/assets/images/accident/hydrotherapy/hydrotherapy-banner.webp", + metaTitle: "Hydrotherapy Treatment – Rapharehab Experts", + metaDiscription: "Experience the healing power of water with hydrotherapy at Rapharehab. Safe and effective therapy for pain relief, mobility, and relaxation.", content: `
@@ -488,6 +500,8 @@ const Accident = [ mainImage: "/assets/images/accident/chronic.webp", icon: "/assets/images/accident/icons/chronic.webp", bannerImage: "/assets/images/accident/chronic/chronic-pain-banner.webp", + metaTitle: "Ankle & Foot Injury Rehab – Rapharehab Clinic", + metaDiscription: "Rapharehab offers expert treatment for ankle and foot injuries. Get back on your feet with our personalized, professional recovery plans.", content: `
diff --git a/utils/AreaOfInjery.utils.js b/utils/AreaOfInjery.utils.js index dc2d661..ba699bf 100644 --- a/utils/AreaOfInjery.utils.js +++ b/utils/AreaOfInjery.utils.js @@ -8,6 +8,8 @@ export const areaOfInjuryData = [ bannerImage: "/assets/images/areas-of-injury/head-injury/head-injury-banner.webp", mainImage: "/assets/images/areas-of-injury/head-injury/big-img.webp", icon: "/assets/images/areas-of-injury/icon/head.webp", + metaTitle: "Head Injury Treatment by Experts – Rapharehab", + metaDiscription: "Rapharehab offers trusted treatment for head injuries with professional care focused on recovery, pain management, and neurological support.", content: `
We treat conditions like:
@@ -45,6 +47,8 @@ export const areaOfInjuryData = [ bannerImage: "/assets/images/areas-of-injury/neck-injury/neck-injury-banner.webp", mainImage: "/assets/images/areas-of-injury/neck-injury/big-img.webp", icon: "/assets/images/areas-of-injury/icon/neck.webp", + metaTitle: "Trusted Neck Injury Rehab – Rapharehab Clinic", + metaDiscription: "Relieve pain and restore movement with expert neck injury therapy at Rapharehab. Personalized care to help you heal and prevent future strain.", content: `
We treat conditions like:
@@ -83,6 +87,8 @@ export const areaOfInjuryData = [ mainImage: "/assets/images/areas-of-injury/shoulder-injury/big-img.webp", bannerImage: "/assets/images/areas-of-injury/shoulder-injury/shoulder-injury-banner.webp", icon: "/assets/images/areas-of-injury/icon/shoulder.webp", + metaTitle: "Professional Shoulder Injury Care – Rapharehab", + metaDiscription: "Get expert help for shoulder pain and injuries at Rapharehab. Our team designs targeted treatment plans to restore function and mobility.", content: `
We treat conditions like:
@@ -120,6 +126,8 @@ export const areaOfInjuryData = [ image: "/assets/images/areas-of-injury/elbo-injury/left.webp", bannerImage: "/assets/images/areas-of-injury/elbo-injury/elbow-injury-banner.webp", icon: "/assets/images/areas-of-injury/icon/elbow.webp", + metaTitle: "Elbow Injury Recovery Services – Rapharehab", + metaDiscription: "Rapharehab provides trusted elbow injury treatment. From tennis elbow to trauma care, our professionals guide your complete recovery process.", mainImage: "/assets/images/areas-of-injury/elbo-injury/big-img.webp", content: `
@@ -159,6 +167,8 @@ export const areaOfInjuryData = [ mainImage: "/assets/images/areas-of-injury/wrist-hand-injury/big-img.webp", bannerImage: "/assets/images/areas-of-injury/wrist-hand-injury/wrist-hand-injury-banner.webp", icon: "/assets/images/areas-of-injury/icon/wrist.webp", + metaTitle: "Wrist & Hand Injury Therapy – Rapharehab Experts", + metaDiscription: "Rapharehab offers expert treatment for wrist and hand injuries. Restore grip strength, reduce pain, and regain confidence in daily movements.", content: `
We treat conditions like:
@@ -196,7 +206,8 @@ export const areaOfInjuryData = [ image: "/assets/images/areas-of-injury/low-back-injury/left.webp", mainImage: "/assets/images/areas-of-injury/low-back-injury/big-img.webp", bannerImage: "/assets/images/areas-of-injury/low-back-injury/low-back-injury-banner.webp", - + metaTitle: "Low Back Pain & Injury Care – Rapharehab Clinic", + metaDiscription: "Ease lower back pain with professional treatment at Rapharehab. We focus on long-term relief through customized rehab and physiotherapy.", icon: "/assets/images/areas-of-injury/icon/low-back.webp", content: `
@@ -236,6 +247,8 @@ export const areaOfInjuryData = [ mainImage: "/assets/images/areas-of-injury/hip-injury/big-img.webp", bannerImage: "/assets/images/areas-of-injury/hip-injury/hip-injury-banner.webp", icon: "/assets/images/areas-of-injury/icon/hip.webp", + metaTitle: "Hip Injury Therapy by Professionals – Rapharehab", + metaDiscription: "Rapharehab provides expert care for hip injuries, improving mobility and reducing pain with targeted treatment plans by our trusted.", content: `
We treat conditions like:
@@ -274,6 +287,8 @@ export const areaOfInjuryData = [ bannerImage: "/assets/images/areas-of-injury/leg-knee-injury/leg-knee-injury-banner.webp", mainImage: "/assets/images/areas-of-injury/leg-knee-injury/big-img.webp", icon: "/assets/images/areas-of-injury/icon/knee.webp", + metaTitle: "Knee & Leg Injury Treatment – Rapharehab Services", + metaDiscription: "Heal faster from leg and knee injuries with Rapharehab. We deliver expert care focused on pain relief, movement, and strength recovery.", content: `
We treat knee physiotherapy conditions like:
@@ -312,6 +327,8 @@ export const areaOfInjuryData = [ mainImage: "/assets/images/areas-of-injury/ankle-foot-injury/big-img.webp", bannerImage: "/assets/images/areas-of-injury/ankle-foot-injury/ankle-foot-injury-banner.webp", icon: "/assets/images/areas-of-injury/icon/ankle.webp", + metaTitle: "Ankle & Foot Injury Rehab – Rapharehab Clinic", + metaDiscription: "Rapharehab offers expert treatment for ankle and foot injuries. Get back on your feet with our personalized, professional recovery plans.", content: `
We treat knee physiotherapy conditions like:
diff --git a/utils/Rehabilitation.utils.js b/utils/Rehabilitation.utils.js index 4e346a0..e55a214 100644 --- a/utils/Rehabilitation.utils.js +++ b/utils/Rehabilitation.utils.js @@ -6,6 +6,8 @@ const 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", + metaTitle: "Spinal Cord Rehab Services – Rapharehab Experts", + metaDiscription: "Rapharehab offers trusted spinal cord injury rehabilitation. Our expert care team provides personalized plans to restore movement.", bannerImage:"/assets/images/rehabilitation/spinal/spinal-banner.webp", content: `
@@ -85,6 +87,8 @@ const 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", + metaTitle: "Amputee Rehabilitation Services – Rapharehab Care Team", + metaDiscription: "Experience compassionate amputee rehabilitation at Rapharehab. Our professionals guide you through recovery, mobility training, and strength.", bannerImage:"/assets/images/rehabilitation/amputee/amputee-banner.webp", content: `
@@ -141,6 +145,8 @@ const 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", + metaTitle: "Fracture Rehab Specialists – Rapharehab Clinic", + metaDiscription: "Heal right with Rapharehab’s expert fracture rehabilitation. We provide personalized therapy to regain strength, mobility, and full recovery.", bannerImage:"/assets/images/rehabilitation/fracture/fracture-banner.webp", content: `
@@ -253,6 +259,8 @@ Your treatment will depend very much on the problems identified during your init 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", + metaTitle: "Neuro Rehab Therapy – Rapharehab Professionals", + metaDiscription: "Rapharehab provides advanced neurological injury rehabilitation. Our team supports recovery from stroke, trauma, and other neuro conditions.", bannerImage:"/assets/images/rehabilitation/neurological/neurological-banner.webp", content: `
diff --git a/utils/Services.utils.js b/utils/Services.utils.js index 33f5723..6b9fd46 100644 --- a/utils/Services.utils.js +++ b/utils/Services.utils.js @@ -11,6 +11,8 @@ export const servicesList = [ icon: "/assets/images/services/icons/trusted-physiotherapy-clinic.webp", alt: "Physiotherapy | Rapharehab", icon2: "/assets/images/mobile-view/services/trusted-physiotherapy-clinic.webp", + metaTitle: "Best Pain Relief & Physiotherapy – Rapharehab Clinic", + metaDiscription: "Rapharehab offers trusted Best Pain Relief & Physiotherapy treatments with professional care tailored to restore your health and mobility.", shortDescription: "Rapha Rehab is one of the premier Physiotherapy clinics in Etiobicoke Scarborough & Mississauga.", description: `
@@ -124,6 +126,8 @@ export const servicesList = [ bigImg: "/assets/images/services/sports-injury/big-img.webp", icon: "/assets/images/services/icons/sports-injury.webp", icon2: "/assets/images/mobile-view/services/sports-injury.webp", + metaTitle: "Professional Sports Injury Rehab – Rapharehab Experts", + metaDiscription: "Recover confidently from sports injuries with Rapharehab. Our professional team ensures safe, effective treatment for a full comeback.", shortDescription: "Sports physiotherapy is a speciality dedicated to the assessment and treatment of injuries related to sports.", description: `
@@ -217,6 +221,8 @@ export const servicesList = [ bigImg: "/assets/images/services/pelvic-floor/big-img.webp", icon: "/assets/images/services/icons/pelvic-floor.webp", icon2: "/assets/images/mobile-view/services/pelvic-floor-physiotherapy.webp", + metaTitle: "Best Pelvic Floor Therapy – Rapharehab Clinic", + metaDiscription: "Rapharehab provides professional pelvic floor physiotherapy to help you regain control and comfort with private, compassionate care.", shortDescription: "Pelvic floor physiotherapy is a specialized branch of physiotherapy involving internal and external assessment.", description: `
@@ -332,6 +338,8 @@ export const servicesList = [ bigImg: "/assets/images/services/massage-therapy/big-img.webp", icon: "/assets/images/services/icons/massage-therapy.webp", icon2: "/assets/images/mobile-view/services/massage-therapy.webp", + metaTitle: "Professional Massage Therapy – Rapharehab Team", + metaDiscription: "Relax and restore with massage therapy from Rapharehab. Our trusted therapists tailor every session to your body’s healing needs.", shortDescription: "Massage therapy is the scientific manipulation of the soft tissues of the body, consisting primarily of manual.", description: `
@@ -433,6 +441,8 @@ export const servicesList = [ bigImg: "/assets/images/services/chiropractor/big-img.webp", icon: "/assets/images/services/icons/chiropractor.webp", icon2: "/assets/images/mobile-view/services/chiropractor.webp", + metaTitle: "Trusted Chiropractic Care – Rapharehab Specialists", + metaDiscription: "Rapharehab delivers expert chiropractic care to realign your spine, reduce pain, and improve your mobility through proven techniques.", shortDescription: "Chiropractic is a healthcare profession that cares for a patient’s neuromusculoskeletal system like bones.", description: `
@@ -544,6 +554,8 @@ export const servicesList = [ bigImg: "/assets/images/services/chiropody/big-img.webp", icon: "/assets/images/services/icons/chiropody.webp", icon2: "/assets/images/mobile-view/services/chiropody.webp", + metaTitle: "Expert Chiropody & Foot Care – Rapharehab Clinic", + metaDiscription: "Step into comfort with professional chiropody services at Rapharehab. We offer expert foot care for pain, nail, and skin conditions.", shortDescription: "Chiropody is a health profession who helps to make sure your feet are healthy and pain-free to allow you.", description: `
@@ -618,6 +630,8 @@ export const servicesList = [ bigImg: "/assets/images/services/acupuncture/big-img.webp", icon: "/assets/images/services/icons/acupuncture.webp", icon2: "/assets/images/mobile-view/services/acupuncture.webp", + metaTitle: "Trusted Acupuncture Therapy – Rapharehab Services", + metaDiscription: "Rapharehab offers professional acupuncture treatment for natural pain relief, energy balance, and stress reduction. Safe, trusted care.", shortDescription: "Acupuncture is a form of treatment that involves inserting very thin needles through a person’s skin.", description: `
@@ -697,6 +711,8 @@ export const servicesList = [ bigImg: "/assets/images/service/osteopathy/big-img.webp", icon: "/assets/images/services/icons/osteopathy.webp", icon2: "/assets/images/mobile-view/services/osteopathy.webp", + metaTitle: "Best Osteopathy Services – Rapharehab Experts", + metaDiscription: "Experience holistic healing through osteopathy at Rapharehab. Trusted techniques to ease pain, restore balance, and support mobility.", shortDescription: "Osteopathy is a type of alternative medicine that emphasizes physical on overall body health and wellbeing.", description: `
@@ -820,6 +836,8 @@ export const servicesList = [ sidebarImg: "/assets/images/services/foot-reflexology/left.webp", bigImg: "/assets/images/services/foot-reflexology/big-img.webp", icon: "/assets/images/services/icons/foot-reflexology.webp", + metaTitle: "Foot Reflexology Therapy – Rapharehab Professionals", + metaDiscription: "Relax and heal with expert foot reflexology at Rapharehab. Our therapy targets pressure points to relieve stress, pain, and body function", shortDescription: "Foot reflexology is a treatment involves applying pressure to different points on the bottom of the foot.", description: `
@@ -893,6 +911,8 @@ export const servicesList = [ sidebarImg: "/assets/images/services/custom-knee-braces/left.webp", bigImg: "/assets/images/services/custom-knee-braces/big-img.webp", icon: "/assets/images/services/icons/custom-knee-braces.webp", + metaTitle: "Custom Knee Braces – Support by Rapharehab Experts", + metaDiscription: "Rapharehab offers custom knee braces designed for comfort, support, and recovery. Get fitted by professionals for injury prevention.", shortDescription: "Custom knee braces are custom-fitted to your knee to help provide the right fit and protection for your knee.", description: `
@@ -949,6 +969,8 @@ export const servicesList = [ sidebarImg: "/assets/images/services/laser/left.webp", bigImg: "/assets/images/services/laser/big-img.webp", icon: "/assets/images/services/icons/laser.webp", + metaTitle: "Laser Therapy Services – Rapharehab Experts", + metaDiscription: "Experience trusted Laser Therapy at Rapharehab. Our advanced techniques relieve pain, stimulate muscles, and enhance physical.", shortDescription: "Therapeutic modalities are commonly used by registered physiotherapists.", description: `
@@ -1026,6 +1048,8 @@ export const servicesList = [ sidebarImg: "/assets/images/services/naturopathy/left.webp", bigImg: "/assets/images/services/naturopathy/big-img.webp", icon: "/assets/images/services/icons/naturopathy.webp", + metaTitle: "Professional Naturopathy Services – Rapharehab Experts", + metaDiscription: "Discover holistic healing with Rapharehab’s trusted naturopathy care. Personalized natural treatments to support your health and well-being.", shortDescription: "Naturopathic medicine is a system that uses natural remedies to help the body heal itself and the treatment plan uses therapies that are gentle.", description: `
@@ -1136,6 +1160,8 @@ export const servicesList = [ sidebarImg: "/assets/images/services/orthotics/left.webp", bigImg: "/assets/images/services/orthotics/big-img.webp", icon: "/assets/images/services/icons/orthotics.webp", + metaTitle: "Ankle & Foot Injury Rehab – Rapharehab Clinic", + metaDiscription: "Rapharehab offers expert treatment for ankle and foot injuries. Get back on your feet with our personalized, professional recovery plans.", shortDescription: "Etobicoke Orthotics are custom-designed shoe inserts to correct foot biomechanics, improve alignment, alleviate pain, support posture, and promote overall lower-limb function.", description: `
@@ -1194,6 +1220,8 @@ export const servicesList = [ sidebarImg: "/assets/images/services/spinal-decompression/left.webp", bigImg: "/assets/images/services/spinal-decompression/big-img.webp", icon: "/assets/images/services/icons/spinal-decompression.webp", + metaTitle: "Spinal Decompression Therapy – Rapharehab Trusted Care", + metaDiscription: "Rapharehab offers expert spinal decompression to relieve back pain, improve therapy posture, and support spine health with safe.", shortDescription: "Spinal Decompression Therapy is the non-surgical alternative for disc related syndromes of the lumbar.", description: `
@@ -1269,6 +1297,8 @@ export const servicesList = [ sidebarImg: "/assets/images/services/concussion-management/left.webp", bigImg: "/assets/images/services/concussion-management/big-img.webp", icon: "/assets/images/services/icons/concussion-management.webp", + metaTitle: "Ankle & Foot Injury Rehab – Rapharehab Clinic", + metaDiscription: "Rapharehab offers expert treatment for ankle and foot injuries. Get back on your feet with our personalized, professional recovery plans.", shortDescription: "Concussion is a brain injury that can cause lasting effects on brain tissue occurs when the brain is violently shaken and changes the chemical.", description: `
@@ -1400,6 +1430,8 @@ export const servicesList = [ sidebarImg: "/assets/images/services/chronic-pain/left.webp", bigImg: "/assets/images/services/chronic-pain/big-img.webp", icon: "/assets/images/services/icons/chronic-pain.webp", + metaTitle: "Trusted Chronic Pain Management at Rapharehab", + metaDiscription: "Rapharehab offers expert chronic pain management services designed to improve mobility, reduce discomfort, and enhance quality of life.", shortDescription: "The goal of physiotherapy is to empower the individual to regain control of their life, and reduce fear and avoidance.", description: `
@@ -1482,6 +1514,8 @@ export const servicesList = [ sidebarImg: "/assets/images/services/operative-management/left.webp", bigImg: "/assets/images/services/operative-management/big-img.webp", icon: "/assets/images/services/icons/operative-management.webp", + metaTitle: "Ankle & Foot Injury Rehab – Rapharehab Clinic", + metaDiscription: "Rapharehab offers expert treatment for ankle and foot injuries. Get back on your feet with our personalized, professional recovery plans.", shortDescription: "Etobicoke Pre and Post Operative Management is a physiotherapy service designed to optimize surgical outcomes.", description: `
@@ -1543,6 +1577,8 @@ export const servicesList = [ sidebarImg: "/assets/images/services/exercise-programming/left.webp", bigImg: "/assets/images/services/exercise-programming/big-img.webp", icon: "/assets/images/services/icons/exercise-programming.webp", + metaTitle: "Personalized Exercise Programs – Rapharehab Experts", + metaDiscription: "Rapharehab provides expert-designed exercise programming tailored to your recovery, fitness, and strength goals. Safe, guided.", shortDescription: "Exercise Therapy programmes is one of our core treatment approaches used in physical therapy rehabilitation and development.", description: `
@@ -1688,6 +1724,8 @@ export const servicesList = [ sidebarImg: "/assets/images/services/workplace-injury/left.webp", bigImg: "/assets/images/services/workplace-injury/big-img.webp", icon: "/assets/images/services/icons/workplace-injury.webp", + metaTitle: "Trusted Workplace Injury Care – Rapharehab Experts", + metaDiscription: "Rapharehab offers professional workplace injury management with tailored rehabilitation plans to ensure safe and effective return-to-work.", shortDescription: "Physiotherapy often plays a significant role in the management.", description: `
@@ -1851,6 +1889,8 @@ export const servicesList = [ sidebarImg: "/assets/images/services/home-care/left.webp", bigImg: "/assets/images/services/home-care/big-img.webp", icon: "/assets/images/services/icons/home-care.webp", + metaTitle: "Home Care Physiotherapy – Rapharehab Trusted Experts", + metaDiscription: "Rapharehab provides professional home Care physiotherapy services. Get personalized treatment and expert care from the comfort and safety.", shortDescription: "Home care physiotherapy mainly focuses on home-based physiotherapy treatment and management for the patients.", description: `
@@ -1916,6 +1956,8 @@ export const servicesList = [ sidebarImg: "/assets/images/services/virtual-care/left.webp", bigImg: "/assets/images/services/virtual-care/big-img.webp", icon: "/assets/images/services/icons/virtual-care.webp", + metaTitle: "Virtual Physiotherapy Care – Rapharehab Online Services", + metaDiscription: "Access expert physiotherapy from home with Rapharehab’s professional virtual care. Convenient, personalized treatment at your fingertips.", shortDescription: "Telehealth has been proven to be reliable in assessing pain, swelling, range of motion, strength, balance, and gait.", description: `