22 lines
603 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Layout from "@/components/layout/Layout";
import AboutClient from "../about-us/AboutClient";
export const metadata = {
title: "About RaphaRehab Trusted Physiotherapy",
description:
"Learn about RaphaRehabs mission and our commitment to delivering compassionate, reliable, and professional home-care services for families.",
};
export default function AboutPage() {
return (
<Layout
headerStyle={1}
footerStyle={1}
breadcrumbTitle="About Us"
bannerImage="/assets/images/about-us/about-us-banner.webp"
>
<AboutClient />
</Layout>
);
}