27 lines
717 B
JavaScript
27 lines
717 B
JavaScript
// src/app/faq/page.jsx
|
||
import dynamic from "next/dynamic";
|
||
import Layout from "@/components/layout/Layout";
|
||
|
||
const FaqClient = dynamic(
|
||
() => import("../faq-physiotherapy-etobicoke/FaqClient"),
|
||
{ ssr: false }
|
||
);
|
||
|
||
export const metadata = {
|
||
title: "FAQs – Answers from Rapharehab’s Expert Team",
|
||
description:
|
||
"Get answers to common questions about our services, treatments, and care at Rapharehab. Learn what to expect and how we help you recover confidently.",
|
||
};
|
||
|
||
export default function FaqPage() {
|
||
return (
|
||
<Layout
|
||
headerStyle={1}
|
||
footerStyle={1}
|
||
breadcrumbTitle="FAQ’s"
|
||
bannerImage="/assets/images/faq/faq-banner.webp"
|
||
>
|
||
<FaqClient />
|
||
</Layout>
|
||
);
|
||
} |