diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index db82cf2..ea4cf30 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -63,15 +63,15 @@ export default function AboutPage() { buttonAnimation="slide-up" mediaItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/dentist-work-young-woman-dentist-treating-kid-tooth-dentistry-concept_169016-67116.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/dentist-work-young-woman-dentist-treating-kid-tooth-dentistry-concept_169016-67116.jpg?_wi=2", imageAlt: "Modern dental clinic interior with advanced equipment", }, { - imageSrc: "http://img.b2bpic.net/free-photo/close-up-doctor-patient-clinic_23-2149103571.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-doctor-patient-clinic_23-2149103571.jpg?_wi=2", imageAlt: "Dr. Shahnawaz Ahmed with patient", }, { - imageSrc: "http://img.b2bpic.net/free-photo/dentist-process-dental-services-dental-office-dental-treatment_1321-2955.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/dentist-process-dental-services-dental-office-dental-treatment_1321-2955.jpg?_wi=1", imageAlt: "Professional dental treatment procedure", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6cbe480..a903ac1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +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"; - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); + const openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "The Dental Care Clinic - Best Dentist in Islamabad", + description: "Professional dental care in Islamabad by Dr. Shahnawaz Ahmed. Root canal, extraction, fillings, cosmetic dentistry. 4.9★ rated. Book appointment now.", + keywords: "dentist Islamabad, dental clinic Blue Area, root canal, tooth extraction, teeth cleaning, cosmetic dentistry, emergency dentist", + metadataBase: new URL("https://www.thedentalcareclinic.com"), + alternates: { + canonical: "https://www.thedentalcareclinic.com", + }, + openGraph: { + title: "The Dental Care Clinic - Trusted Dental Care in Islamabad", + description: "Professional dental treatments by Dr. Shahnawaz Ahmed. Patient comfort, modern equipment, hygienic environment.", + url: "https://www.thedentalcareclinic.com", + siteName: "The Dental Care Clinic", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/close-up-doctor-patient-clinic_23-2149103571.jpg", + alt: "The Dental Care Clinic - Professional Dental Services", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "The Dental Care Clinic - Best Dentist in Islamabad", + description: "Professional dental care with 15+ years expertise. Book your appointment today.", + images: ["http://img.b2bpic.net/free-photo/close-up-doctor-patient-clinic_23-2149103571.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +64,9 @@ export default function RootLayout({ return ( - + {children}