22 lines
638 B
JavaScript

import Layout from "@/components/layout/Layout";
import GalleryClient from "../gallery-physiotherapy-etobicoke/GalleryClient";
export const metadata = {
title: "Physiotherapy Gallery in Etobicoke | Rapha Reha",
description:
"Explore the Rapha Rehab gallery showcasing patient care, rehabilitation progress, and our dedicated physiotherapy environment in Etobicoke.",
};
export default function GalleryPage() {
return (
<Layout
headerStyle={1}
footerStyle={1}
breadcrumbTitle="Gallery"
bannerImage="/assets/images/gallery-page/gallery-banner.webp"
>
<GalleryClient />
</Layout>
);
}