22 lines
603 B
JavaScript
22 lines
603 B
JavaScript
import Layout from "@/components/layout/Layout";
|
|
import CovidClient from "./CovidClient";
|
|
|
|
export const metadata = {
|
|
title: "COVID-19 Updates | Safety & Virtual Care at Rapha Rehab",
|
|
description:
|
|
"COVID-19 updates from Rapha Rehab, including safety protocols, virtual therapy options, and at-home physiotherapy to ensure safe care.",
|
|
};
|
|
|
|
export default function CovidPage() {
|
|
return (
|
|
<Layout
|
|
headerStyle={1}
|
|
footerStyle={1}
|
|
breadcrumbTitle="COVID-19 Updates"
|
|
bannerImage="/assets/images/covid/covid-19-banner.webp"
|
|
>
|
|
<CovidClient />
|
|
</Layout>
|
|
);
|
|
}
|