// 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 ( ); }