23 lines
643 B
JavaScript
23 lines
643 B
JavaScript
import Layout from "@/components/layout/Layout";
|
|
import RefugeeIFHPPage from "./PaymentInsurence";
|
|
|
|
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.",
|
|
};
|
|
|
|
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>
|
|
);
|
|
}
|