18 lines
476 B
JavaScript

import Layout from "@/components/layout/Layout";
import AboutClient from "../about-us/AboutClient";
import Team from "../why-choose-us/WhyusClient";
export const metadata = {
title: "Why Choose RaphaRehab",
description:
"Discover why RaphaRehab is trusted for compassionate, reliable, and personalized home-care services focused on comfort, safety, and professional support.",
};
export default function AboutPage() {
return (
<>
<Team />
</>
);
}