diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 03a6804..fa33b71 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -128,21 +128,21 @@ export default function AboutPage() { title: "Clinical Excellence", description: "We pursue the highest standards of clinical skill and knowledge, ensuring every procedure is performed with precision and care.", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-holding-teeth-x-ray_23-2148396206.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-holding-teeth-x-ray_23-2148396206.jpg?_wi=3", imageAlt: "Advanced dental technology", }, { title: "Patient-Centered Care", description: "Your comfort, safety, and satisfaction are our top priorities. We listen, understand your goals, and customize our approach to meet your unique needs.", - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-happy-dentist_23-2148396150.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-happy-dentist_23-2148396150.jpg?_wi=2", imageAlt: "Patient comfort", }, { title: "Continuous Innovation", description: "We invest in the latest technology and stay current with advancements in dentistry to provide you with cutting-edge treatment options.", - imageSrc: "http://img.b2bpic.net/free-photo/many-kind-medical-equipment-manage-surgeon-start-operations-operating-room_1301-7803.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/many-kind-medical-equipment-manage-surgeon-start-operations-operating-room_1301-7803.jpg?_wi=2", imageAlt: "Modern dental innovation", }, ]} @@ -175,7 +175,7 @@ export default function AboutPage() { handle: "@sarahsmile", testimonial: "Dr. Patel's expertise and compassion completely transformed my smile. The entire experience was professional, comfortable, and exceeded my expectations.", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-bearded-smiling-black-man-wool-suit_613910-16049.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-bearded-smiling-black-man-wool-suit_613910-16049.jpg?_wi=2", imageAlt: "Sarah Mitchell", icon: Heart, }, @@ -185,7 +185,7 @@ export default function AboutPage() { handle: "@james_r", testimonial: "I was terrified of dental work, but the sedation dentistry option made everything painless and relaxing. I finally have the smile I always wanted.", - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-holding-book-close-up_23-2148396302.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-holding-book-close-up_23-2148396302.jpg?_wi=2", imageAlt: "James Richardson", icon: ThumbsUp, }, @@ -195,7 +195,7 @@ export default function AboutPage() { handle: "@emilychen_dental", testimonial: "The attention to detail and use of advanced technology made my implant procedure seamless. The results are absolutely stunning.", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-man-posing-with-crossed-arms_23-2149206526.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-man-posing-with-crossed-arms_23-2149206526.jpg?_wi=2", imageAlt: "Emily Chen", icon: Star, }, diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da5b4f2..415565b 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 { Raleway } 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 { Raleway } 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 raleway = Raleway({ variable: "--font-raleway", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Luxury Dental Practice | Luminous Dental", + description: "Premium cosmetic and restorative dentistry with advanced technology and compassionate care. Book your consultation today.", + keywords: "luxury dental, cosmetic dentistry, dental implants, orthodontics, teeth whitening", + metadataBase: new URL("https://luminousdental.com"), + alternates: { + canonical: "https://luminousdental.com", + }, + openGraph: { + title: "Luxury Dental Practice | Luminous Dental", + description: "Experience excellence in modern dentistry. Transform your smile with our expert team.", + url: "https://luminousdental.com", + siteName: "Luminous Dental", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/dental-equipment-placed-table_1150-19620.jpg", + alt: "Premium dental care", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Luxury Dental Practice | Luminous Dental", + description: "Transform your smile with premium cosmetic dentistry", + images: ["http://img.b2bpic.net/free-photo/dental-equipment-placed-table_1150-19620.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}