27 lines
733 B
JavaScript
27 lines
733 B
JavaScript
import Head from "next/head";
|
||
import Layout from "@/components/layout/Layout";
|
||
import ContactClient from "../appointment-booking-form/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.",
|
||
robots: {
|
||
index: false,
|
||
follow: false,
|
||
},
|
||
};
|
||
|
||
|
||
export default function Appointment() {
|
||
return (
|
||
<Layout
|
||
headerStyle={1}
|
||
footerStyle={1}
|
||
breadcrumbTitle="Appointment Booking"
|
||
bannerImage="/assets/images/contact/contact-us-banner.webp"
|
||
>
|
||
<ContactClient />
|
||
</Layout>
|
||
);
|
||
} |