22 lines
598 B
JavaScript
22 lines
598 B
JavaScript
import Layout from "@/components/layout/Layout";
|
||
import CovidClient from "./CovidClient";
|
||
|
||
export const metadata = {
|
||
title: "Rapharehab COVID-19 Safety & Clinic Updates",
|
||
description:
|
||
"Stay informed with Rapharehab’s latest COVID-19 updates, safety protocols, and patient care measures to ensure a secure and trusted clinic.",
|
||
};
|
||
|
||
export default function CovidPage() {
|
||
return (
|
||
<Layout
|
||
headerStyle={1}
|
||
footerStyle={1}
|
||
breadcrumbTitle="COVID-19 Updates"
|
||
bannerImage="/assets/images/covid/covid-19-banner.webp"
|
||
>
|
||
<CovidClient />
|
||
</Layout>
|
||
);
|
||
}
|