22 lines
641 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Layout from "@/components/layout/Layout";
import GalleryClient from "../gallery-physiotherapy-etobicoke/GalleryClient";
export const metadata = {
title: "Clinic & Therapy Gallery Inside Rapharehab",
description:
"Explore Rapharehabs 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={2}
footerStyle={1}
breadcrumbTitle="Gallery"
bannerImage="/assets/images/gallery-page/gallery-banner.webp"
>
<GalleryClient />
</Layout>
);
}