From a56e24ca70a7738099d0aa630182eb4896841edc Mon Sep 17 00:00:00 2001 From: akash Date: Thu, 30 Oct 2025 20:22:15 +0530 Subject: [PATCH] All h5 tag changed into a h4 & All link area-link updated and Home page area of injury mobile view image optimization updated --- app/blog/[slug]/page.js | 2 +- app/blog/page.js | 2 +- app/caregivers/CaregiversPage.js | 14 ++++++------ app/caregivers/page.js | 6 ++++- app/faq-physiotherapy-etobicoke/FaqClient.js | 6 ++--- app/faq-physiotherapy-etobicoke/page.js | 10 ++++++-- app/payment-insurance/PaymentInsurence.js | 8 +++---- app/payment-insurance/page.js | 24 ++++++++++---------- components/ContactFloat.js | 2 +- components/FaqSection.js | 2 +- components/elements/PortfolioFilter1.js | 10 ++++---- components/layout/Sidebar.js | 8 +++---- components/layout/footer/Footer1.js | 2 +- components/layout/footer/Footer2.js | 4 ++-- components/layout/header/Header1.js | 4 ++-- components/sections/home1/News.js | 2 +- components/sections/home2/Banner.js | 2 +- 17 files changed, 59 insertions(+), 49 deletions(-) diff --git a/app/blog/[slug]/page.js b/app/blog/[slug]/page.js index 39cdce8..db37d8b 100644 --- a/app/blog/[slug]/page.js +++ b/app/blog/[slug]/page.js @@ -87,7 +87,7 @@ export default function BlogDetails({ params }) {

- + {related.title}

diff --git a/app/blog/page.js b/app/blog/page.js index 6a60cfa..84832d8 100644 --- a/app/blog/page.js +++ b/app/blog/page.js @@ -39,7 +39,7 @@ export default function Blog() {
  • {blog.comments}
  • */}

    - + {blog.title.split(" ").length > 5 ? blog.title.split(" ").slice(0, 5).join(" ") + "..." : blog.title} diff --git a/app/caregivers/CaregiversPage.js b/app/caregivers/CaregiversPage.js index dd7ad59..169ac88 100644 --- a/app/caregivers/CaregiversPage.js +++ b/app/caregivers/CaregiversPage.js @@ -51,7 +51,7 @@ export default function Home() {
    Caring with a smile
    -

    Caring with a smile

    +

    Caring with a smile

    It’s not what we do as a home care agency, but how we do it. All of our elderly caregiving services are delivered with a smile. And we all know that a smile can be infectious.

    @@ -60,7 +60,7 @@ export default function Home() {
    Attentive listener
    -

    Attentive listener

    +

    Attentive listener

    How do you like things done? Where would you like to go? Listening to your needs, and having conversations with you, helps us make sure we bring you the perfect match.

    @@ -69,7 +69,7 @@ export default function Home() {
    Qualified
    -

    Qualified

    +

    Qualified

    Whether you just need someone to take you for a walk or a to provide attentive complex caring – we, as a home care agency, can provide a caregiver that is qualified to meet your needs.

    @@ -207,7 +207,7 @@ export default function Home() { onClick={() => handleToggle(1)} >
    -

    Why Should I apply to NanoCare?
    +

    Why Should I apply to NanoCare?

    @@ -225,7 +225,7 @@ export default function Home() { onClick={() => handleToggle(2)} >
    -
    Where can I work?
    +

    Where can I work?

    @@ -243,7 +243,7 @@ export default function Home() { onClick={() => handleToggle(3)} >
    -
    What types of shifts do you offer?
    +

    What types of shifts do you offer?

    @@ -261,7 +261,7 @@ export default function Home() { onClick={() => handleToggle(4)} >
    -
    Do you hire W-2, 1099, or private contractors?
    +

    Do you hire W-2, 1099, or private contractors?

    diff --git a/app/caregivers/page.js b/app/caregivers/page.js index fcbe478..4ed7acf 100644 --- a/app/caregivers/page.js +++ b/app/caregivers/page.js @@ -1,4 +1,4 @@ -import CaregiversPage from "../caregivers/CaregiversPage"; +import dynamic from "next/dynamic"; export const metadata = { title: "Trusted Caregiver Support Services – Rapharehab Clinic", @@ -6,6 +6,10 @@ export const metadata = { "Rapharehab offers professional caregiver services tailored to support patient recovery, ensuring comfort, safety, and dedicated assistance.", }; +const CaregiversPage = dynamic(() => import("../caregivers/CaregiversPage"), { + ssr: false, +}); + export default function Page() { return ; } diff --git a/app/faq-physiotherapy-etobicoke/FaqClient.js b/app/faq-physiotherapy-etobicoke/FaqClient.js index 0fdc396..608988c 100644 --- a/app/faq-physiotherapy-etobicoke/FaqClient.js +++ b/app/faq-physiotherapy-etobicoke/FaqClient.js @@ -61,7 +61,7 @@ export default function Faq() { onClick={() => handleToggle(1)} >
    -
    What is physiotherapy?
    +

    What is physiotherapy?

    @@ -79,7 +79,7 @@ export default function Faq() { onClick={() => handleToggle(2)} >
    -
    What does the physiotherapist do?
    +

    What does the physiotherapist do?

    @@ -97,7 +97,7 @@ export default function Faq() { onClick={() => handleToggle(3)} >
    -
    How long will your session take?
    +

    How long will your session take?

    diff --git a/app/faq-physiotherapy-etobicoke/page.js b/app/faq-physiotherapy-etobicoke/page.js index f0405ef..711b22e 100644 --- a/app/faq-physiotherapy-etobicoke/page.js +++ b/app/faq-physiotherapy-etobicoke/page.js @@ -1,5 +1,11 @@ +// src/app/faq/page.jsx +import dynamic from "next/dynamic"; import Layout from "@/components/layout/Layout"; -import FaqClient from "../faq-physiotherapy-etobicoke/FaqClient"; + +const FaqClient = dynamic( + () => import("../faq-physiotherapy-etobicoke/FaqClient"), + { ssr: false } +); export const metadata = { title: "FAQs – Answers from Rapharehab’s Expert Team", @@ -18,4 +24,4 @@ export default function FaqPage() { ); -} +} \ No newline at end of file diff --git a/app/payment-insurance/PaymentInsurence.js b/app/payment-insurance/PaymentInsurence.js index 86a6e2c..0c8aec7 100644 --- a/app/payment-insurance/PaymentInsurence.js +++ b/app/payment-insurance/PaymentInsurence.js @@ -170,7 +170,7 @@ export default function RefugeeIFHP() { onClick={() => handleToggle(1)} >
    -
    Do I need a referral?
    +

    Do I need a referral?

    @@ -191,7 +191,7 @@ export default function RefugeeIFHP() { onClick={() => handleToggle(2)} >
    -
    How many physio sessions are covered?
    +

    How many physio sessions are covered?

    @@ -213,7 +213,7 @@ export default function RefugeeIFHP() { onClick={() => handleToggle(3)} >
    -
    What if I can’t come to the clinic?
    +

    What if I can’t come to the clinic?

    @@ -236,7 +236,7 @@ export default function RefugeeIFHP() { onClick={() => handleToggle(4)} >
    -
    What happens when I get provincial coverage (like OHIP)?
    +

    What happens when I get provincial coverage (like OHIP)?

    diff --git a/app/payment-insurance/page.js b/app/payment-insurance/page.js index 6c5220a..0231382 100644 --- a/app/payment-insurance/page.js +++ b/app/payment-insurance/page.js @@ -1,17 +1,17 @@ -import Layout from "@/components/layout/Layout"; -import RefugeeIFHP from "./PaymentInsurence"; +import dynamic from "next/dynamic"; export const metadata = { - title: - "Refugee Physiotherapy & IFHP Claims (Canada) - Rapharehab Physiotherapy Etobicoke", - description: - "Access refugee physiotherapy covered by Canada's Interim Federal Health Program (IFHP) at Rapha Rehab Etobicoke. We handle paperwork, explain coverage clearly, and focus on your recovery. Book your IFHP-covered physiotherapy visit today.", + title: + "Refugee Physiotherapy & IFHP Claims (Canada) - Rapharehab Physiotherapy Etobicoke", + description: + "Access refugee physiotherapy covered by Canada's Interim Federal Health Program (IFHP) at Rapha Rehab Etobicoke. We handle paperwork, explain coverage clearly, and focus on your recovery. Book your IFHP-covered physiotherapy visit today.", }; -export default function FaqPage() { - return ( - <> - - - ); +// 👇 Disable SSR to prevent hydration mismatch issues +const RefugeeIFHPPage = dynamic(() => import("../payment-insurance/PaymentInsurence"), { + ssr: false, +}); + +export default function Page() { + return ; } diff --git a/components/ContactFloat.js b/components/ContactFloat.js index 6a17d0c..5d65f81 100644 --- a/components/ContactFloat.js +++ b/components/ContactFloat.js @@ -313,7 +313,7 @@ function ChatForm({ onClose }) { }} >
    -
    Chat with Us
    +

    Chat with Us

    diff --git a/components/FaqSection.js b/components/FaqSection.js index 68a0f4b..d7a5397 100644 --- a/components/FaqSection.js +++ b/components/FaqSection.js @@ -24,7 +24,7 @@ export default function FaqSection({ faqData }) { onClick={() => handleToggle(index)} >
    -
    {item.question}
    +

    {item.question}

    diff --git a/components/elements/PortfolioFilter1.js b/components/elements/PortfolioFilter1.js index 617ef26..8f9c57a 100644 --- a/components/elements/PortfolioFilter1.js +++ b/components/elements/PortfolioFilter1.js @@ -60,7 +60,7 @@ export default function PortfolioFilter1() {
    -
    + @@ -74,7 +74,7 @@ export default function PortfolioFilter1() {
    -
    + @@ -88,7 +88,7 @@ export default function PortfolioFilter1() {
    -
    + @@ -104,7 +104,7 @@ export default function PortfolioFilter1() {
    - +
    @@ -118,7 +118,7 @@ export default function PortfolioFilter1() {
    -
    + diff --git a/components/layout/Sidebar.js b/components/layout/Sidebar.js index 846e999..0ec39df 100644 --- a/components/layout/Sidebar.js +++ b/components/layout/Sidebar.js @@ -37,10 +37,10 @@ export default function Sidebar({ isSidebar, handleSidebar }) {
      -
    • -
    • -
    • -
    • +
    • +
    • +
    • +
    diff --git a/components/layout/footer/Footer1.js b/components/layout/footer/Footer1.js index 2352809..e513284 100644 --- a/components/layout/footer/Footer1.js +++ b/components/layout/footer/Footer1.js @@ -189,7 +189,7 @@ export default function Footer2() { target="_blank" rel="noopener noreferrer" style={{ color: "#fff", fontWeight: "700" }} - > + aria-label="Metatroncubesolutions"> MetatronCube {" "} All Rights Reserved diff --git a/components/layout/footer/Footer2.js b/components/layout/footer/Footer2.js index 6e503ca..5759ef6 100644 --- a/components/layout/footer/Footer2.js +++ b/components/layout/footer/Footer2.js @@ -48,7 +48,7 @@ export default function Footer2() {
    • + rel="noopener noreferrer" aria-label="Instagram">
    • + aria-label="Metatroncubesolutions"> MetatronCube {" "} All Rights Reserved diff --git a/components/layout/header/Header1.js b/components/layout/header/Header1.js index 7b28837..47d66b8 100644 --- a/components/layout/header/Header1.js +++ b/components/layout/header/Header1.js @@ -51,12 +51,12 @@ export default function Header1({ scroll, isMobileMenu, handleMobileMenu, isSide
    • Payment And Insurance
    • {/*
    • Refugee Physiotherapy
    • */}
    • - +
    • - +
    • diff --git a/components/sections/home1/News.js b/components/sections/home1/News.js index 4bcab5c..f45c42f 100644 --- a/components/sections/home1/News.js +++ b/components/sections/home1/News.js @@ -46,7 +46,7 @@ export default function News() {

      - + {blog.title.length > 40 ? blog.title.slice(0, 40) + "..." : blog.title}

      diff --git a/components/sections/home2/Banner.js b/components/sections/home2/Banner.js index 34de918..da9af27 100644 --- a/components/sections/home2/Banner.js +++ b/components/sections/home2/Banner.js @@ -166,7 +166,7 @@ export default function Banner() { )}

      {s.desc}

      - + {s.btn.text}