18 lines
715 B
JavaScript

import dynamic from 'next/dynamic';
const LocationsClient = dynamic(() => import('./LocationsClient'), { ssr: false });
import Layout from "@/components/layout/Layout"
export const metadata = {
title: "Rapha Rehab Locations - Physiotherapy Clinic in Etobicoke & Serving GTA",
description:
"Visit Rapha Rehab, a leading physiotherapy clinic in Etobicoke serving Toronto, Mississauga, and the GTA. Professional rehabilitation services close to home.",
};
export default function Gallery() {
return (
<Layout headerStyle={1} footerStyle={1} breadcrumbTitle="Locations" bannerImage="/assets/images/location/location-banner.webp">
<LocationsClient />
</Layout>
);
}