22 lines
623 B
JavaScript
Raw Permalink 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 ContactClient from "../contact/ContactClient";
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.",
};
export default function ContactPage() {
return (
<Layout
headerStyle={1}
footerStyle={1}
breadcrumbTitle="Contact Us"
bannerImage="/assets/images/contact/contact-us-banner.webp"
>
<ContactClient />
</Layout>
);
}