Files
DetnalCare/app/services/pediatric-dentistry/page.tsx
Iliyan Angelov 39077550ef Dental Care
2025-11-16 14:29:51 +02:00

12 lines
350 B
TypeScript

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