From 8b07f54ae80167345f7912cc927dd20952976e38 Mon Sep 17 00:00:00 2001 From: akash Date: Sat, 30 Aug 2025 16:56:31 +0530 Subject: [PATCH] Footer New structure updated --- components/layout/footer/Footer1.js | 299 +++++++++++++++++++--------- components/layout/footer/Footer2.js | 289 ++++++++++++++++++--------- 2 files changed, 404 insertions(+), 184 deletions(-) diff --git a/components/layout/footer/Footer1.js b/components/layout/footer/Footer1.js index e153da2..3c0c6fd 100644 --- a/components/layout/footer/Footer1.js +++ b/components/layout/footer/Footer1.js @@ -1,98 +1,209 @@ import Link from "next/link" +import Rehabilitation from "@/utils/Rehabilitation.utils" +import Accident from "@/utils/Accident.utils" +import { areaOfInjuryData } from "@/utils/AreaOfInjery.utils" +import { servicesList } from "@/utils/Services.utils" -export default function Footer1() { - return ( - <> - +export default function Footer2() { - - ) +const servicesCols = [ + servicesList.slice(0, 6), + servicesList.slice(6, 12), + servicesList.slice(12, 18), +]; + + + + return ( + <> + + + ) } diff --git a/components/layout/footer/Footer2.js b/components/layout/footer/Footer2.js index 1f20217..3c0c6fd 100644 --- a/components/layout/footer/Footer2.js +++ b/components/layout/footer/Footer2.js @@ -1,100 +1,209 @@ import Link from "next/link" +import Rehabilitation from "@/utils/Rehabilitation.utils" +import Accident from "@/utils/Accident.utils" +import { areaOfInjuryData } from "@/utils/AreaOfInjery.utils" +import { servicesList } from "@/utils/Services.utils" export default function Footer2() { + +const servicesCols = [ + servicesList.slice(0, 6), + servicesList.slice(6, 12), + servicesList.slice(12, 18), +]; + + + return ( - <> - + <> +
+
+
+
+
+
+
+
+
+
+
+
+ + + +
+

+ Welcome to Rapha Rehab Physiotherapy & Massage Therapy Clinic in Etobicoke. +

+
    +
  • + +
  • +
  • + +
  • +
  • + +
  • +
  • + +
  • +
+
+
+
+
+
+

SERVICES

+
+
+ {servicesCols.map((col, index) => ( +
+
    + {col.map((item) => ( +
  • + + {item.shortTitle} + +
  • + ))} +
+
+ ))} +
+
+
+
+ +
+
+
+
+

AREA OF INJURY

+
+
+
    + {areaOfInjuryData.map((item) => ( +
  • + + {item.title} + +
  • + ))} +
+
+
+
+ +
+
+
+

REHABILITATION

+
+
+
    + {Rehabilitation.map((item) => ( +
  • + + {item.title} + +
  • + ))} +
+
+
+
+ +
+
+
+

ACCIDENT

+
+
+
    + {Accident.map((item) => ( +
  • + + {item.title} + +
  • + ))} +
+
+
+
+ +
+
+
+

CONTACT US

+
+
+
    +
  • + 3891 Ranchview Dr. Richardson, California USA +
  • +
  • + + 0198-9526503 +
  • +
  • + + + example@info.com + +
  • +
+
+
+
+
+
+
+ +
+
+
+
+

+ © Copyright {new Date().getFullYear()} Rapha Rehab | Powered by{" "} + + MetatronCube + {" "} + All Rights Reserved +

+
+
+ +
+
+ + ) }