28 lines
794 B
JavaScript
28 lines
794 B
JavaScript
import dynamic from "next/dynamic";
|
|
import Layout from "@/components/layout/Layout";
|
|
|
|
export const metadata = {
|
|
title:
|
|
"RaphaRehab Payment & Insurance Info",
|
|
description:
|
|
"Learn about payment options, direct billing, insurance coverage, and how RaphaRehab helps you access physiotherapy, rehab, and wellness services easily.",
|
|
};
|
|
|
|
// 👇 Disable SSR to prevent hydration mismatch issues
|
|
const RefugeeIFHPPage = dynamic(() => import("../payment-insurance/PaymentInsurence"), {
|
|
ssr: false,
|
|
});
|
|
|
|
export default function Page() {
|
|
return (
|
|
<Layout
|
|
headerStyle={1}
|
|
footerStyle={1}
|
|
breadcrumbTitle="Refugee Physiotherapy & IFHP Claims"
|
|
bannerImage="/assets/images/payment-insurance/payment-banner.webp"
|
|
>
|
|
<RefugeeIFHPPage />
|
|
</Layout>
|
|
);
|
|
}
|