28 lines
1.1 KiB
JavaScript
28 lines
1.1 KiB
JavaScript
import dynamic from 'next/dynamic';
|
|
const PortfolioFilter1 = dynamic(() => import('@/components/elements/Locations'), { ssr: false });
|
|
import Layout from "@/components/layout/Layout"
|
|
|
|
export const metadata = {
|
|
title: "Rapha Rehab Locations - The Best Physiotherapy Clinic ",
|
|
description:
|
|
"Explore Rapha Rehab locations across Chicago, Kansas, New Mexico, Nevada, New York & Texas. Find expert physiotherapy near you.",
|
|
};
|
|
|
|
export default function Gallery() {
|
|
return (
|
|
<Layout headerStyle={2} footerStyle={1} breadcrumbTitle="Locations" bannerImage="/assets/images/location/location-banner.webp">
|
|
<section className="gallery-section sec-pad">
|
|
<div className="outer-container">
|
|
<div className="sec-title centred mb_30">
|
|
<span className="sub-title">Locations</span>
|
|
<h2>Find an office near you</h2>
|
|
</div>
|
|
<div className="sortable-masonry">
|
|
<PortfolioFilter1 />
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</Layout>
|
|
);
|
|
}
|