27 lines
770 B
JavaScript
27 lines
770 B
JavaScript
import dynamic from "next/dynamic";
|
||
import Layout from "@/components/layout/Layout";
|
||
|
||
export const metadata = {
|
||
title: "Contact Rapharehab – Book Your Appointment Today",
|
||
description:
|
||
"Reach out to Rapharehab for expert rehab and therapy services. Call or message us to schedule your consultation with our professional care team.",
|
||
};
|
||
|
||
// 👇 Dynamically import ContactClient to disable SSR (fix hydration issues)
|
||
const ContactClient = dynamic(() => import("../contact/ContactClient"), {
|
||
ssr: false,
|
||
});
|
||
|
||
export default function Page() {
|
||
return (
|
||
<Layout
|
||
headerStyle={1}
|
||
footerStyle={1}
|
||
breadcrumbTitle="Contact Us"
|
||
bannerImage="/assets/images/contact/contact-us-banner.webp"
|
||
>
|
||
<ContactClient />
|
||
</Layout>
|
||
);
|
||
}
|