Merge version_1 into main #1
@@ -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: [
|
||||
{
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${lato.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -40,4 +79,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -124,7 +124,7 @@ export default function HomePage() {
|
||||
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=1"
|
||||
imageAlt="Professional dental team at Smile Clinic"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
@@ -153,7 +153,7 @@ export default function HomePage() {
|
||||
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=1",
|
||||
imageAlt: "Professional teeth cleaning procedure",
|
||||
buttons: [
|
||||
{
|
||||
@@ -168,7 +168,7 @@ export default function HomePage() {
|
||||
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=1",
|
||||
imageAlt: "Professional teeth whitening before and after",
|
||||
buttons: [
|
||||
{
|
||||
@@ -183,7 +183,7 @@ export default function HomePage() {
|
||||
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=1",
|
||||
imageAlt: "Advanced dental filling treatment",
|
||||
buttons: [
|
||||
{
|
||||
@@ -216,7 +216,7 @@ export default function HomePage() {
|
||||
name: "Fatima Ahmed",
|
||||
handle: "Cairo, Egypt",
|
||||
testimonial: "Best dental clinic in Badr City! Dr. and the team are so professional and friendly. My teeth have never looked better. Highly recommended!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-cafe_273609-12673.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-cafe_273609-12673.jpg?_wi=1",
|
||||
imageAlt: "Fatima Ahmed - Patient testimonial",
|
||||
icon: Star
|
||||
},
|
||||
@@ -225,7 +225,7 @@ export default function HomePage() {
|
||||
name: "Mohamed Hassan",
|
||||
handle: "Badr City Resident",
|
||||
testimonial: "I was nervous about my root canal, but the team made me feel completely comfortable. Excellent care and reasonable prices. Thank you!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/patient-holding-mirror-looking-teeth-procedure-after-dental-surgery-stomatology-examination-stomatological-office-room-dentist-senior-woman-explaining-oral-hygiene-concept-medicine_482257-39553.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/patient-holding-mirror-looking-teeth-procedure-after-dental-surgery-stomatology-examination-stomatological-office-room-dentist-senior-woman-explaining-oral-hygiene-concept-medicine_482257-39553.jpg?_wi=1",
|
||||
imageAlt: "Mohamed Hassan - Patient testimonial",
|
||||
icon: Star
|
||||
},
|
||||
@@ -234,7 +234,7 @@ export default function HomePage() {
|
||||
name: "Noor Ibrahim",
|
||||
handle: "Local Patient",
|
||||
testimonial: "My kids love going to Smile Clinic now! The staff is so patient and kind. They explain everything clearly. We trust them completely.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-sitting-dentist-s-office_1157-28568.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-sitting-dentist-s-office_1157-28568.jpg?_wi=1",
|
||||
imageAlt: "Noor Ibrahim - Patient testimonial",
|
||||
icon: Star
|
||||
},
|
||||
@@ -252,7 +252,7 @@ export default function HomePage() {
|
||||
name: "Leila Ahmed",
|
||||
handle: "Cairo Resident",
|
||||
testimonial: "Finally got my braces removed! Dr. did an amazing job. My smile is perfect. Thank you for being so thorough and professional.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-blonde-woman-making-frame-gesture-with-hands_176420-15132.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-blonde-woman-making-frame-gesture-with-hands_176420-15132.jpg?_wi=1",
|
||||
imageAlt: "Leila Ahmed - Patient testimonial",
|
||||
icon: Star
|
||||
},
|
||||
@@ -261,7 +261,7 @@ export default function HomePage() {
|
||||
name: "Omar Saeed",
|
||||
handle: "Badr City Local",
|
||||
testimonial: "Convenient location, friendly staff, and excellent dental work. I recommend Smile Clinic to all my friends and family.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-blond-girl-dress-holding-hand-chest-smiling-looking-aside-white-copy-space_176420-41101.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-blond-girl-dress-holding-hand-chest-smiling-looking-aside-white-copy-space_176420-41101.jpg?_wi=1",
|
||||
imageAlt: "Omar Saeed - Patient testimonial",
|
||||
icon: Star
|
||||
}
|
||||
|
||||
@@ -101,7 +101,7 @@ export default function ReviewsPage() {
|
||||
name: "Fatima Ahmed",
|
||||
handle: "Cairo, Egypt",
|
||||
testimonial: "Best dental clinic in Badr City! Dr. and the team are so professional and friendly. My teeth have never looked better. Highly recommended!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-cafe_273609-12673.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-cafe_273609-12673.jpg?_wi=2",
|
||||
imageAlt: "Fatima Ahmed - Patient testimonial",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -110,7 +110,7 @@ export default function ReviewsPage() {
|
||||
name: "Mohamed Hassan",
|
||||
handle: "Badr City Resident",
|
||||
testimonial: "I was nervous about my root canal, but the team made me feel completely comfortable. Excellent care and reasonable prices. Thank you!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/patient-holding-mirror-looking-teeth-procedure-after-dental-surgery-stomatology-examination-stomatological-office-room-dentist-senior-woman-explaining-oral-hygiene-concept-medicine_482257-39553.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/patient-holding-mirror-looking-teeth-procedure-after-dental-surgery-stomatology-examination-stomatological-office-room-dentist-senior-woman-explaining-oral-hygiene-concept-medicine_482257-39553.jpg?_wi=3",
|
||||
imageAlt: "Mohamed Hassan - Patient testimonial",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -119,7 +119,7 @@ export default function ReviewsPage() {
|
||||
name: "Noor Ibrahim",
|
||||
handle: "Local Patient",
|
||||
testimonial: "My kids love going to Smile Clinic now! The staff is so patient and kind. They explain everything clearly. We trust them completely.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-sitting-dentist-s-office_1157-28568.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-sitting-dentist-s-office_1157-28568.jpg?_wi=2",
|
||||
imageAlt: "Noor Ibrahim - Patient testimonial",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -137,7 +137,7 @@ export default function ReviewsPage() {
|
||||
name: "Leila Ahmed",
|
||||
handle: "Cairo Resident",
|
||||
testimonial: "Finally got my braces removed! Dr. did an amazing job. My smile is perfect. Thank you for being so thorough and professional.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-blonde-woman-making-frame-gesture-with-hands_176420-15132.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-blonde-woman-making-frame-gesture-with-hands_176420-15132.jpg?_wi=2",
|
||||
imageAlt: "Leila Ahmed - Patient testimonial",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -146,7 +146,7 @@ export default function ReviewsPage() {
|
||||
name: "Omar Saeed",
|
||||
handle: "Badr City Local",
|
||||
testimonial: "Convenient location, friendly staff, and excellent dental work. I recommend Smile Clinic to all my friends and family.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-blond-girl-dress-holding-hand-chest-smiling-looking-aside-white-copy-space_176420-41101.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-blond-girl-dress-holding-hand-chest-smiling-looking-aside-white-copy-space_176420-41101.jpg?_wi=2",
|
||||
imageAlt: "Omar Saeed - Patient testimonial",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -176,7 +176,7 @@ export default function ReviewsPage() {
|
||||
title: "Expert Team",
|
||||
subtitle: "Highly Qualified Dentists",
|
||||
description: "Our dentists have 15+ years of experience and continue to pursue advanced training in the latest dental techniques and technologies.",
|
||||
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=3",
|
||||
imageAlt: "Expert dental team consultation",
|
||||
buttons: [
|
||||
{
|
||||
@@ -191,7 +191,7 @@ export default function ReviewsPage() {
|
||||
title: "Modern Equipment",
|
||||
subtitle: "Latest Dental Technology",
|
||||
description: "We invest in state-of-the-art dental equipment to ensure precise, efficient, and comfortable treatment for all our patients.",
|
||||
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=6",
|
||||
imageAlt: "Modern dental equipment and facilities",
|
||||
buttons: [
|
||||
{
|
||||
@@ -206,7 +206,7 @@ export default function ReviewsPage() {
|
||||
title: "Patient-Centered",
|
||||
subtitle: "Your Comfort First",
|
||||
description: "We believe in creating a warm, welcoming environment where patients feel heard, respected, and confident in their treatment.",
|
||||
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=4",
|
||||
imageAlt: "Comfortable patient care environment",
|
||||
buttons: [
|
||||
{
|
||||
|
||||
@@ -99,7 +99,7 @@ export default function ServicesPage() {
|
||||
href: "#contact"
|
||||
}
|
||||
]}
|
||||
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=2"
|
||||
imageAlt="Professional dental services at Smile Clinic"
|
||||
buttonAnimation="blur-reveal"
|
||||
showDimOverlay={false}
|
||||
@@ -126,7 +126,7 @@ export default function ServicesPage() {
|
||||
title: "Professional Teeth Cleaning",
|
||||
subtitle: "Prophylaxis & Scaling",
|
||||
description: "Regular professional cleaning removes plaque, tartar, and surface stains that brushing alone cannot remove. Prevents cavities, gum disease, and keeps your teeth 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=3",
|
||||
imageAlt: "Professional teeth cleaning procedure",
|
||||
buttons: [
|
||||
{
|
||||
@@ -141,7 +141,7 @@ export default function ServicesPage() {
|
||||
title: "Professional Teeth Whitening",
|
||||
subtitle: "Brighten Your Smile",
|
||||
description: "Our professional whitening treatments deliver dramatic, lasting results safely. Choose from in-office whitening or take-home trays for maximum convenience and confidence.",
|
||||
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=2",
|
||||
imageAlt: "Professional teeth whitening results",
|
||||
buttons: [
|
||||
{
|
||||
@@ -156,7 +156,7 @@ export default function ServicesPage() {
|
||||
title: "Modern Dental Fillings",
|
||||
subtitle: "Cavity Treatment",
|
||||
description: "We use advanced composite filling materials that are tooth-colored and mercury-free. Your teeth are restored to health and beauty without obvious metal or dark patches.",
|
||||
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=2",
|
||||
imageAlt: "Modern dental filling treatment",
|
||||
buttons: [
|
||||
{
|
||||
@@ -171,7 +171,7 @@ export default function ServicesPage() {
|
||||
title: "Root Canal Treatment",
|
||||
subtitle: "Severe Pain Relief",
|
||||
description: "Root canal therapy eliminates infection and relieves severe tooth pain. We use advanced techniques to save your natural tooth and prevent serious complications.",
|
||||
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=4",
|
||||
imageAlt: "Root canal treatment procedure",
|
||||
buttons: [
|
||||
{
|
||||
@@ -186,7 +186,7 @@ export default function ServicesPage() {
|
||||
title: "Braces & Teeth Alignment",
|
||||
subtitle: "Straighten Your Smile",
|
||||
description: "Professional orthodontic treatment improves your bite alignment and creates a beautiful, healthy smile. We offer comprehensive consultation and personalized treatment plans.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/patient-holding-mirror-looking-teeth-procedure-after-dental-surgery-stomatology-examination-stomatological-office-room-dentist-senior-woman-explaining-oral-hygiene-concept-medicine_482257-39553.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/patient-holding-mirror-looking-teeth-procedure-after-dental-surgery-stomatology-examination-stomatological-office-room-dentist-senior-woman-explaining-oral-hygiene-concept-medicine_482257-39553.jpg?_wi=2",
|
||||
imageAlt: "Orthodontic treatment and alignment",
|
||||
buttons: [
|
||||
{
|
||||
@@ -201,7 +201,7 @@ export default function ServicesPage() {
|
||||
title: "Smile Makeover",
|
||||
subtitle: "Complete Aesthetic Transformation",
|
||||
description: "Combining multiple treatments to achieve your dream smile. From whitening and veneers to bonding and alignment, we create stunning, natural-looking results.",
|
||||
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=3",
|
||||
imageAlt: "Cosmetic smile makeover results",
|
||||
buttons: [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user