From 8882edf4906f362ff8d8db51fc2f3f5a2e261c3a Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 10:07:32 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 32671a1..b3f6f24 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Open_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Open_Sans } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Infinity Dental Clinic - Best Dentist in Indore | 4.9★ Rating", + description: "Visit Infinity Dental Clinic in Vijay Nagar, Indore for expert dental implants, root canal treatment, clear aligners & cosmetic dentistry. Dr. Anmol Billore. 4.9★ from 461+ patients.", + keywords: "best dentist in Indore, dental clinic Vijay Nagar, dental implants Indore, root canal treatment Indore, clear aligners Indore, cosmetic dentistry Indore, Dr. Anmol Billore", + metadataBase: new URL("https://infinitydentalindore.com"), + alternates: { + canonical: "https://infinitydentalindore.com", + }, + openGraph: { + title: "Infinity Dental Clinic - Expert Dental Care in Indore", + description: "4.9★ Rated dental clinic offering painless implants, RCT, aligners & cosmetic treatments. Book your appointment today.", + url: "https://infinitydentalindore.com", + siteName: "Infinity Dental Clinic", + type: "website", + images: [ + { + url: "https://infinitydentalindore.com/og-image.jpg", + alt: "Infinity Dental Clinic", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Infinity Dental Clinic - Indore", + description: "Expert dental care with 4.9★ rating. Implants, RCT, aligners & more.", + images: ["https://infinitydentalindore.com/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}