diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 821e693..b2a766a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1420 +1,27 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import { Inter } 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 montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "DENT-O-THERAPY | Premium Dental Clinic in Kalna", description: "Experience expert dental care at DENT-O-THERAPY. Compassionate dentistry, modern facilities, and patient-focused treatment. Book your appointment today!", keywords: "dental clinic kalna, dentist near me, tooth pain treatment, gum care, dental checkup, preventive dentistry, Dr. Soumyadeep Das", metadataBase: new URL("https://denttotherapykalna.com"), - alternates: { - canonical: "https://denttotherapykalna.com" - }, - openGraph: { - title: "DENT-O-THERAPY | Your Healthy Smile Starts Here", description: "Premium dental clinic offering compassionate care and advanced treatments in Kalna, West Bengal.", url: "https://denttotherapykalna.com", siteName: "DENT-O-THERAPY", images: [ - { - url: "http://img.b2bpic.net/free-photo/view-luxurious-hotel-interior-space_23-2150683409.jpg", alt: "DENT-O-THERAPY Dental Clinic" - } - ], - type: "website" - }, - twitter: { - card: "summary_large_image", title: "DENT-O-THERAPY | Dental Excellence in Kalna", description: "Book your dental appointment today. Skilled, caring dentistry with modern facilities.", images: ["http://img.b2bpic.net/free-photo/view-luxurious-hotel-interior-space_23-2150683409.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "DENT-O-THERAPY | Compassionate Dental Care in Kalna", description: "Experience exceptional dental care at DENT-O-THERAPY. Dr. Soumyadeep Das provides compassionate, patient-focused dental treatment in a clean and welcoming environment."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -