22 lines
616 B
JavaScript
22 lines
616 B
JavaScript
import Layout from "@/components/layout/Layout";
|
||
import FaqClient from "../faq-physiotherapy-etobicoke/FaqClient";
|
||
|
||
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>
|
||
);
|
||
}
|