22 lines
605 B
JavaScript
22 lines
605 B
JavaScript
import Layout from "@/components/layout/Layout";
|
||
import AboutClient from "../about-us/AboutClient";
|
||
|
||
export const metadata = {
|
||
title: "About Us – Rapharehab Clinic",
|
||
description:
|
||
"Learn more about Rapha Rehab Physiotherapy and Rehabilitation Clinic in Etobicoke. Discover our mission, vision, values, and experienced physiotherapy team.",
|
||
};
|
||
|
||
export default function AboutPage() {
|
||
return (
|
||
<Layout
|
||
headerStyle={2}
|
||
footerStyle={1}
|
||
breadcrumbTitle="About Us"
|
||
bannerImage="/assets/images/about-us/about-us-banner.webp"
|
||
>
|
||
<AboutClient />
|
||
</Layout>
|
||
);
|
||
}
|