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