18 lines
713 B
JavaScript
18 lines
713 B
JavaScript
import dynamic from 'next/dynamic';
|
|
const LocationsClient = dynamic(() => import('./LocationsClient'), { ssr: false });
|
|
import Layout from "@/components/layout/Layout"
|
|
|
|
export const metadata = {
|
|
title: "Rapharehab Locations - Physiotherapy Clinic in Etobicoke & Serving GTA",
|
|
description:
|
|
"Visit Rapharehab, 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>
|
|
);
|
|
}
|