From 30edfddc212c9dc2916e2ffe3dcbca78d0739bab Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 09:08:57 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 47 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 68ba76a..7445496 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Best Dentist in Haldwani | Roshan Dental Clinic", description: "Roshan Dental Clinic offers advanced dental care in Haldwani including root canal treatment, cosmetic dentistry, and affordable dental services. Book your appointment today.", keywords: "dentist Haldwani, dental clinic, root canal treatment, cosmetic dentistry, teeth whitening, dental care", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Roshan Dental Clinic - Premium Dental Care in Haldwani", description: "Advanced dental treatments with compassionate care. Book your appointment at Haldwani's trusted dental clinic.", type: "website", siteName: "Roshan Dental Clinic", images: [ - { - url: "http://img.b2bpic.net/free-photo/no-people-empty-waiting-area-clinical-center-with-reception-desk-waiting-room-with-seats-start-checkup-visit-appointment-medical-examination-with-doctor-hospital-lobby_482257-46239.jpg", alt: "Roshan Dental Clinic - Modern Dental Practice"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Roshan Dental Clinic - Best Dentist in Haldwani", description: "Experience premium dental care with advanced treatments and compassionate service. Trust Roshan Dental Clinic.", images: ["http://img.b2bpic.net/free-photo/no-people-empty-waiting-area-clinical-center-with-reception-desk-waiting-room-with-seats-start-checkup-visit-appointment-medical-examination-with-doctor-hospital-lobby_482257-46239.jpg"], - }, -}; + title: "Roshan Dental Clinic | Premium Dental Care in Haldwani", description: "Advanced dental treatments with compassionate care and affordable solutions. Experience exceptional dental care at Roshan Dental Clinic."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}