rapharehap/app/faq/page.js

27 lines
679 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.

// 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 RaphaRehabs physiotherapy, rehab, therapies, caregiver support and how to book or get insurance help.",
};
export default function FaqPage() {
return (
<Layout
headerStyle={1}
footerStyle={1}
breadcrumbTitle="FAQs"
bannerImage="/assets/images/faq/faq-banner.webp"
>
<FaqClient />
</Layout>
);
}