17 lines
482 B
JavaScript
17 lines
482 B
JavaScript
import Layout from "@/components/layout/Layout";
|
|
import TeamClient from "../our-team-physiotherapy-etobicoke/TeamClient";
|
|
|
|
export const metadata = {
|
|
title: "Our Physiotherapy Team in Etobicoke | Rapha Rehab",
|
|
description:
|
|
"Meet our expert physiotherapy & rehabilitation team in Etobicoke. Skilled professionals dedicated to delivering personalized, care at Rapha Rehab.",
|
|
};
|
|
|
|
export default function OurTeamPage() {
|
|
return (
|
|
<>
|
|
<TeamClient />
|
|
</>
|
|
);
|
|
}
|