diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index bc77133..969fe22 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -69,7 +69,7 @@ export default function AboutPage() { tag="About Our Clinic" title="Expert Dental Care You Can Trust" description="At Raut's Dental Clinic, we combine 15+ years of expertise with the latest 3D scanning technology to provide pain-free, affordable dental solutions. Our team is dedicated to creating healthy, beautiful smiles for the entire family. We maintain the highest hygiene standards and treat every patient with compassion and professionalism." - imageSrc="http://img.b2bpic.net/free-photo/patient-checking-her-teeth-mirror_107420-74170.jpg" + imageSrc="http://img.b2bpic.net/free-photo/patient-checking-her-teeth-mirror_107420-74170.jpg?_wi=2" imageAlt="Raut's Dental Clinic modern interior" buttons={[ { @@ -97,7 +97,7 @@ export default function AboutPage() { "Custom treatment plans for all ages", "Affordable orthodontic solutions", ], - imageSrc: "http://img.b2bpic.net/free-photo/two-dental-whitening-trays-box-it_633478-106.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/two-dental-whitening-trays-box-it_633478-106.jpg?_wi=2", imageAlt: "Invisalign clear aligners display", }, { @@ -108,7 +108,7 @@ export default function AboutPage() { "Modern equipment for precise treatment", "Emergency dental care available", ], - imageSrc: "http://img.b2bpic.net/free-photo/asian-male-patient-having-dental-checkup-clinic_1098-20353.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/asian-male-patient-having-dental-checkup-clinic_1098-20353.jpg?_wi=2", imageAlt: "Root canal treatment procedure", }, { @@ -119,7 +119,7 @@ export default function AboutPage() { "Expert post-op care and guidance", "Quick recovery with proper aftercare", ], - imageSrc: "http://img.b2bpic.net/free-photo/dental-woman-nurse-applying-anesthesia-with-cotton-swab-before-stomatological-procedure-orthodontic-office-medical-team-discussing-treatment-against-caries-infection-dentistry-examination_482257-40994.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/dental-woman-nurse-applying-anesthesia-with-cotton-swab-before-stomatological-procedure-orthodontic-office-medical-team-discussing-treatment-against-caries-infection-dentistry-examination_482257-40994.jpg?_wi=2", imageAlt: "Wisdom tooth extraction service", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0e3865a..de03381 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,67 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } from "next/font/google"; +import { DM_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 { Manrope } from "next/font/google"; -import { DM_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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); + const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Best Dentist in Virar | Root Canal & Invisalign | Raut's Dental Clinic", + description: "Award-winning dental clinic in Virar with 5.0 rating. Painless root canal, Invisalign, implants & emergency dental care. Book online today.", + keywords: "dentist Virar, root canal treatment Virar, Invisalign dentist Virar, wisdom tooth removal, dental implants, dental clinic Virar East", + metadataBase: new URL("https://rautdentalclinic.com"), + alternates: { + canonical: "https://rautdentalclinic.com", + }, + openGraph: { + title: "Raut's Dental Clinic - Expert Dental Care in Virar", + description: "Transform your smile with advanced pain-free dental treatment. 5.0-star rated clinic. Emergency services available.", + url: "https://rautdentalclinic.com", + siteName: "Raut's Dental Clinic", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/female-doctor-standing-holding-box_107420-73955.jpg", + alt: "Raut's Dental Clinic - Modern Dental Practice", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Raut's Dental Clinic | Advanced Dental Treatment Virar", + description: "Expert dental care with 5.0-star rating. Root canal, Invisalign, implants & emergency services.", + images: ["http://img.b2bpic.net/free-photo/female-doctor-standing-holding-box_107420-73955.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +70,9 @@ export default function RootLayout({ return ( - + {children}