22 lines
598 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 CovidClient from "./CovidClient";
export const metadata = {
title: "Rapharehab COVID-19 Safety & Clinic Updates",
description:
"Stay informed with Rapharehabs 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>
);
}