22 lines
610 B
JavaScript
22 lines
610 B
JavaScript
import Layout from "@/components/layout/Layout";
|
|
import AboutClient from "../about-us/AboutClient";
|
|
|
|
export const metadata = {
|
|
title: "The Best Physiotherapy in Etobicoke - Rapha Rehab Clinic",
|
|
description:
|
|
"Rapha Rehab offers top physiotherapy, osteopath & massage therapy in Etobicoke, Mississauga. Trusted physio & hand massage specialists.",
|
|
};
|
|
|
|
export default function AboutPage() {
|
|
return (
|
|
<Layout
|
|
headerStyle={1}
|
|
footerStyle={1}
|
|
breadcrumbTitle="About Us"
|
|
bannerImage="/assets/images/about-us/about-us-banner.webp"
|
|
>
|
|
<AboutClient />
|
|
</Layout>
|
|
);
|
|
}
|