22 lines
641 B
JavaScript
22 lines
641 B
JavaScript
import Layout from "@/components/layout/Layout";
|
||
import GalleryClient from "../gallery-physiotherapy-etobicoke/GalleryClient";
|
||
|
||
export const metadata = {
|
||
title: "Clinic & Therapy Gallery – Inside Rapharehab",
|
||
description:
|
||
"Explore Rapharehab’s gallery to see our clinic, equipment, and therapy sessions. A glimpse into our professional and welcoming healing space.",
|
||
};
|
||
|
||
export default function GalleryPage() {
|
||
return (
|
||
<Layout
|
||
headerStyle={1}
|
||
footerStyle={1}
|
||
breadcrumbTitle="Gallery"
|
||
bannerImage="/assets/images/gallery-page/gallery-banner.webp"
|
||
>
|
||
<GalleryClient />
|
||
</Layout>
|
||
);
|
||
}
|