17 lines
459 B
JavaScript
17 lines
459 B
JavaScript
import Layout from "@/components/layout/Layout";
|
||
import TeamClient from "../our-team-physiotherapy-etobicoke/TeamClient";
|
||
|
||
export const metadata = {
|
||
title: "Meet Our Professional Team – Rapharehab Experts",
|
||
description:
|
||
"Get to know the trusted team behind Rapharehab. Our dedicated experts provide compassionate care and specialized therapies.",
|
||
};
|
||
|
||
export default function OurTeamPage() {
|
||
return (
|
||
<>
|
||
<TeamClient />
|
||
</>
|
||
);
|
||
}
|