diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b383f37..3015afa 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { DM_Sans } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Oro-Care Dental Clinic - Affordable Dental Care in Kolkata", description: "Professional dental clinic in Purbachal, Kolkata. Offering general, cosmetic, and restorative dentistry with 10+ years of experience. Book appointment online.", keywords: "dental clinic Kolkata, dentist Purbachal, cosmetic dentistry, dental implants, teeth whitening, root canal treatment, affordable dental care", metadataBase: new URL("https://orocaredental.com"), - alternates: { - canonical: "https://orocaredental.com"}, - openGraph: { - title: "Oro-Care Dental Clinic - Healthy Teeth, Confident Smile", description: "Professional dental care in Purbachal, Kolkata with modern equipment and affordable treatments.", url: "https://orocaredental.com", siteName: "Oro-Care Dental Clinic", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/dental-cabinet-with-various-medical-equipment_140725-7678.jpg", alt: "Oro-Care Dental Clinic - Modern dental care facility"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Oro-Care Dental Clinic - Expert Dental Care in Kolkata", description: "Affordable professional dental treatments. Book your appointment today!", images: ["http://img.b2bpic.net/free-photo/dental-cabinet-with-various-medical-equipment_140725-7678.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Oro-Care Dental Clinic", description: "Modern dental care in Purbachal, Kolkata with expert treatments and affordable prices."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +