diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 2f8cea4..0a5daf8 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -95,7 +95,7 @@ export default function AboutPage() { description="At Smile Clinic, we believe every smile deserves the best care. Our experienced team combines modern dental technology with a patient-first approach to deliver exceptional results." subdescription="Located in Badr City, we serve our local community with comprehensive dental services, from routine cleanings to advanced cosmetic procedures. We're open 6 days a week for your convenience." icon={Sparkles} - imageSrc="http://img.b2bpic.net/free-photo/dentistry-doctor-showing-x-ray-teeth-patient-using-tablet-standing-waiting-area-dental-clinic-stomatologist-reviewing-dental-radiography-with-woman-explaining-treatment-crowded-office_482257-3592.jpg" + imageSrc="http://img.b2bpic.net/free-photo/dentistry-doctor-showing-x-ray-teeth-patient-using-tablet-standing-waiting-area-dental-clinic-stomatologist-reviewing-dental-radiography-with-woman-explaining-treatment-crowded-office_482257-3592.jpg?_wi=2" imageAlt="Professional dental team at Smile Clinic" mediaAnimation="blur-reveal" useInvertedBackground={false} @@ -124,7 +124,7 @@ export default function AboutPage() { title: "Teeth Cleaning", subtitle: "Professional Prophylaxis", description: "Regular cleaning removes plaque and tartar, preventing cavities and gum disease. Keep your smile healthy and bright.", - imageSrc: "http://img.b2bpic.net/free-photo/dentists-treat-patients-teeth_1150-19650.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/dentists-treat-patients-teeth_1150-19650.jpg?_wi=5", imageAlt: "Professional teeth cleaning procedure", buttons: [ { @@ -139,7 +139,7 @@ export default function AboutPage() { title: "Teeth Whitening", subtitle: "Brighten Your Smile", description: "Professional whitening treatments deliver dramatic results safely. Achieve the bright, confident smile you've always wanted.", - imageSrc: "http://img.b2bpic.net/free-photo/smiling-attractive-woman-white-robe-standing-bathroom_7502-7480.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/smiling-attractive-woman-white-robe-standing-bathroom_7502-7480.jpg?_wi=4", imageAlt: "Professional teeth whitening before and after", buttons: [ { @@ -154,7 +154,7 @@ export default function AboutPage() { title: "Dental Fillings", subtitle: "Cavity Treatment", description: "Modern composite fillings restore your teeth to health and beauty. We use tooth-colored materials that blend seamlessly.", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-dentist-using-toothbrush-teeth-model-dental-clinic_23-2147879182.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-dentist-using-toothbrush-teeth-model-dental-clinic_23-2147879182.jpg?_wi=3", imageAlt: "Advanced dental filling treatment", buttons: [ { diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da4fe5a..e3e81ef 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Lato } 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 { Lato } 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 lato = Lato({ variable: "--font-lato", @@ -20,6 +24,39 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"] }); +export const metadata: Metadata = { + title: "Smile Clinic - Dentist in Badr City, Cairo", + description: "Professional dental care in Badr City. Teeth cleaning, whitening, fillings, root canal, braces & cosmetic dentistry. Book your appointment today: 01062982628", + keywords: "dentist Badr City, dental clinic Cairo, teeth whitening Badr City, professional dental care, orthodontist Cairo, cosmetic dentistry", + metadataBase: new URL("https://smileclinic-badr.com"), + alternates: { + canonical: "https://smileclinic-badr.com" + }, + openGraph: { + title: "Smile Clinic - Your Trusted Dental Care in Badr City", + description: "Professional dental clinic in Badr City with experienced dentists. Modern equipment, patient-friendly care. Open Saturday-Thursday 1-11 PM.", + url: "https://smileclinic-badr.com", + siteName: "Smile Clinic", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/close-up-portrait-young-woman-years-old-sitting-her-kitchen-alone-express-candid-happiness_1258-199764.jpg", + alt: "Smile Clinic - Professional Dental Care" + } + ] + }, + twitter: { + card: "summary_large_image", + title: "Smile Clinic - Dental Care in Badr City", + description: "Professional dental services in Badr City. Call 01062982628 to book your appointment.", + images: ["http://img.b2bpic.net/free-photo/close-up-portrait-young-woman-years-old-sitting-her-kitchen-alone-express-candid-happiness_1258-199764.jpg"] + }, + robots: { + index: true, + follow: true + } +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}