Why Choose Us
@@ -64,12 +62,6 @@ export default function Team() {
- {/*
-
-
-
-
-
*/}
{member.name}
@@ -83,11 +75,9 @@ export default function Team() {
-
- {/* LEFT IMAGE / RIGHT CONTENT */}
@@ -109,10 +98,6 @@ export default function Team() {
- {/*
- About Us
-
Medical services & diagnostics
-
*/}
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.
@@ -146,10 +129,6 @@ export default function Team() {
- {/*
- About Us
-
Medical services & diagnostics
-
*/}
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.
@@ -169,7 +148,6 @@ export default function Team() {
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 bloor@rapharehab.ca to book a consultation.
+
+ 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 {email ? (
+ {email}
+ ) : (
+ Loading...
+ )} to book a consultation.
+
Make an Appointment
-
-
);
-}
+}
\ No newline at end of file
diff --git a/components/layout/MobileMenu.js b/components/layout/MobileMenu.js
index 32cd05d..6e73b69 100644
--- a/components/layout/MobileMenu.js
+++ b/components/layout/MobileMenu.js
@@ -1,6 +1,6 @@
'use client'
import Link from "next/link";
-import { useState } from "react";
+import { useState, useEffect } from "react";
import { servicesList } from "@/utils/Services.utils";
import { areaOfInjuryData } from "@/utils/AreaOfInjery.utils";
import Rehabilitation from "@/utils/Rehabilitation.utils";
@@ -12,6 +12,14 @@ export default function MobileMenu({ isSidebar, handleMobileMenu, handleSidebar
key: "",
subMenuKey: "",
});
+
+ const [email, setEmail] = useState("");
+
+ useEffect(() => {
+ const user = "bloor";
+ const domain = "rapharehab.ca";
+ setEmail(`${user}@${domain}`);
+ }, []);
const handleToggle = (key, subMenuKey = "") => {
if (isActive.key === key && isActive.subMenuKey === subMenuKey) {
@@ -200,9 +208,13 @@ export default function MobileMenu({ isSidebar, handleMobileMenu, handleSidebar