21 lines
572 B
JavaScript
21 lines
572 B
JavaScript
import Layout from "@/components/layout/Layout";
|
||
import FaqClient from "./FaqClient";
|
||
|
||
export const metadata = {
|
||
title: "RaphaRehab FAQs – Rehab & Wellness Help",
|
||
description:
|
||
"See answers to common questions about RaphaRehab’s physiotherapy, rehab, therapies, caregiver support and how to book or get insurance help.",
|
||
};
|
||
|
||
export default function FaqPage() {
|
||
return (
|
||
<Layout
|
||
headerStyle={1}
|
||
footerStyle={1}
|
||
breadcrumbTitle="FAQ’s"
|
||
bannerImage="/assets/images/faq/faq-banner.webp"
|
||
>
|
||
<FaqClient />
|
||
</Layout>
|
||
);
|
||
} |