diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 5420a81..20d4ade 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,1419 +1,41 @@
import type { Metadata } from "next";
-import { Public_Sans } from "next/font/google";
-import { Inter } from "next/font/google";
+import { Onest } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import ServiceWrapper from "@/providers/serviceWrapper/ServiceWrapper";
+import { Tag } from "@/components/tag/Tag";
-const publicSans = Public_Sans({
- variable: "--font-public-sans", subsets: ["latin"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
+const onest = Onest({
+ variable: "--font-onest", subsets: ["latin"],
+ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
- title: "Dentist.zone - Professional Dental Care", description: "Experience exceptional dental care at Dentist.zone. Expert dentists offering preventive, cosmetic, and restorative treatments with state-of-the-art technology.", keywords: "dental care, dentist, preventive dentistry, cosmetic dentistry, restorative treatment, orthodontics, dental implants", metadataBase: new URL("https://dentist.zone"),
- alternates: {
- canonical: "https://dentist.zone"
- },
- openGraph: {
- title: "Dentist.zone - Your Smile, Our Priority", description: "Professional dental care with 15+ years of experience and 5000+ satisfied patients.", url: "https://dentist.zone", siteName: "Dentist.zone", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/back-view-woman-filling-dental-document-sitting-chiar-waiting-room-preparing-teeth-exemination-while-doctor-working-background-concept-crowded-professional-orthodontist-office_482257-3585.jpg", alt: "Modern dental office"
- }
- ]
- },
- twitter: {
- card: "summary_large_image", title: "Dentist.zone - Professional Dental Care", description: "Expert dental services including preventive, cosmetic, and restorative treatments.", images: ["http://img.b2bpic.net/free-photo/back-view-woman-filling-dental-document-sitting-chiar-waiting-room-preparing-teeth-exemination-while-doctor-working-background-concept-crowded-professional-orthodontist-office_482257-3585.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Dentist.zone | Excellence in Dental Care", description: "Professional dental services including preventive care, cosmetic dentistry, restorative treatment, and orthodontics. Schedule your appointment today."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-