2025-09-25 17:04:14 +05:30

22 lines
616 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Layout from "@/components/layout/Layout";
import FaqClient from "../faq-physiotherapy-etobicoke/FaqClient";
export const metadata = {
title: "FAQs Answers from Rapharehabs 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="FAQs"
bannerImage="/assets/images/faq/faq-banner.webp"
>
<FaqClient />
</Layout>
);
}