From d8f9e56dadb719c3c1ed50099690d1d27de3bd80 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 10:07:31 +0000 Subject: [PATCH 1/6] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index d2315da..fee4faf 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -50,7 +50,7 @@ const AboutPage = () => { { id: "dr-anmol", name: "Dr. Anmol Billore", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-proud-dentist-clinic_23-2148396169.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-proud-dentist-clinic_23-2148396169.jpg?_wi=2", imageAlt: "professional dentist doctor portrait clinic", }, ]} -- 2.49.1 From 0d60f032bb4550e27e670d14218b92661775f743 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 10:07:32 +0000 Subject: [PATCH 2/6] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 2aef8e4..f6f33c7 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -58,7 +58,7 @@ export default function ContactPage() { }, ]} buttonAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/dentist-inviting-senior-man-consultation-dental-room-while-nurse-giving-patient-form-fill-indicating-sit-chair-waiting-area-slow-motion-shot-crowded-professional-orthodontist-office_482257-3575.jpg" + imageSrc="http://img.b2bpic.net/free-photo/dentist-inviting-senior-man-consultation-dental-room-while-nurse-giving-patient-form-fill-indicating-sit-chair-waiting-area-slow-motion-shot-crowded-professional-orthodontist-office_482257-3575.jpg?_wi=2" imageAlt="Contact Infinity Dental Clinic" background={{ variant: "radial-gradient", -- 2.49.1 From 8882edf4906f362ff8d8db51fc2f3f5a2e261c3a Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 10:07:32 +0000 Subject: [PATCH 3/6] 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}