13 lines
383 B
JavaScript
13 lines
383 B
JavaScript
// app/choose-us/page.js
|
||
import HomePage from "../chooseus/HomePage";
|
||
|
||
export const metadata = {
|
||
title: "Why Choose Us – Rapharehab Clinic",
|
||
description:
|
||
"Discover why Rapharehab Clinic is trusted for expert doctors, modern facilities, and dedicated care. Learn what makes us the best choice for your health.",
|
||
};
|
||
|
||
export default function Page() {
|
||
return <HomePage />;
|
||
}
|