12 lines
344 B
TypeScript
12 lines
344 B
TypeScript
import {PreventiveCare} from "@/components/services/PreventiveCare";
|
|
import { NavbarWrapper } from "@/components/landing/navbar-wrapper";
|
|
|
|
export default function PreventiveCarePage() {
|
|
return (
|
|
<main className="py-4 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<NavbarWrapper />
|
|
<PreventiveCare />
|
|
</main>
|
|
);
|
|
}
|