17 lines
616 B
JavaScript

import LocationsClient from './LocationsClient';
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>
);
}