27 lines
679 B
JavaScript
27 lines
679 B
JavaScript
// src/app/faq/page.jsx
|
||
import dynamic from "next/dynamic";
|
||
import Layout from "@/components/layout/Layout";
|
||
|
||
const FaqClient = dynamic(
|
||
() => import("../faq/FaqClient"),
|
||
{ ssr: false }
|
||
);
|
||
|
||
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>
|
||
);
|
||
} |