22 lines
573 B
JavaScript
22 lines
573 B
JavaScript
import Layout from "@/components/layout/Layout";
|
|
import AboutClient from "../about-us/AboutClient";
|
|
|
|
export const metadata = {
|
|
title: "About Rapha Rehab | Etobicoke Physio",
|
|
description:
|
|
"Learn about our expert physiotherapy team in Etobicoke. Patient-focused care, evidence-based treatments, real results.",
|
|
};
|
|
|
|
export default function AboutPage() {
|
|
return (
|
|
<Layout
|
|
headerStyle={1}
|
|
footerStyle={1}
|
|
breadcrumbTitle="About Us"
|
|
bannerImage="/assets/images/about-us/about-us-banner.webp"
|
|
>
|
|
<AboutClient />
|
|
</Layout>
|
|
);
|
|
}
|