Dental Care

This commit is contained in:
Iliyan Angelov
2025-11-16 14:29:51 +02:00
commit 39077550ef
194 changed files with 43197 additions and 0 deletions

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,11 @@
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>
);
}

View File

@@ -0,0 +1,11 @@
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>
);
}