16 lines
460 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import dynamic from "next/dynamic";
export const metadata = {
title: "Trusted Caregiver Support Services Rapharehab Clinic",
description:
"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 <CaregiversPage />;
}