18 lines
524 B
JavaScript

import dynamic from "next/dynamic";
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 <RefugeeIFHPPage />;
}