18 lines
655 B
JavaScript
18 lines
655 B
JavaScript
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.",
|
|
};
|
|
|
|
// 👇 Disable SSR to prevent hydration mismatch issues
|
|
const RefugeeIFHPPage = dynamic(() => import("../payment-insurance/PaymentInsurence"), {
|
|
ssr: false,
|
|
});
|
|
|
|
export default function Page() {
|
|
return <RefugeeIFHPPage />;
|
|
}
|