18 lines
511 B
JavaScript
18 lines
511 B
JavaScript
import Layout from "@/components/layout/Layout";
|
||
import AboutClient from "../about-us/AboutClient";
|
||
import Team from "../why-rapha-physiotherapy-etobicoke/WhyusClient";
|
||
|
||
export const metadata = {
|
||
title: "Why Choose Rapharehab – Trusted Rehab Professionals",
|
||
description:
|
||
"Discover why Rapharehab is the preferred choice for rehab care. Our expert team, personalized approach, and proven results set us apart.",
|
||
};
|
||
|
||
export default function AboutPage() {
|
||
return (
|
||
<>
|
||
<Team />
|
||
</>
|
||
);
|
||
}
|