diff --git a/src/app/page.tsx b/src/app/page.tsx index ac779cb..69da4e9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import { Dental, Smile, Award } from "lucide-react"; +import { Tooth, Smile, Award } from "lucide-react"; import Link from "next/link"; export default function HomePage() { @@ -63,8 +63,8 @@ export default function HomePage() { logoText="Family Dental Center" description="Expert Dental Care for Your Whole Family. Trusted specialists delivering advanced, pain-free treatments with personalized care." buttons={[ - { text: "Book Appointment", href: "#contact", Component: Link }, - { text: "Learn More", href: "#about", Component: Link } + { text: "Book Appointment", href: "#contact" }, + { text: "Learn More", href: "#about" } ]} slides={[ { imageSrc: "http://img.b2bpic.net/free-photo/team-happy-doctors-standing-with-arms-crossed-mri-scanner-hospital-looking-camera_637285-389.jpg", imageAlt: "Dentist examining a patient in a modern dental clinic" }, @@ -80,7 +80,6 @@ export default function HomePage() {
@@ -90,10 +89,10 @@ export default function HomePage() { title="Our Comprehensive Dental Services" description="From routine check-ups to advanced cosmetic procedures, we offer a full spectrum of dental care designed to meet every need." features={[ - { title: "General Dentistry", description: "Preventative care, fillings, root canals, and regular check-ups to maintain optimal oral health.", imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-charming-little-girl-brushing-teeth-bathroom-while-standing-front-mirror-squeezing-toothpaste-out-tube-smiling-happily_176532-15698.jpg?_wi=1", imageAlt: "Dental check-up illustration" }, - { title: "Dental Implants", description: "Permanent and natural-looking solutions for missing teeth, restoring function and aesthetics.", imageSrc: "http://img.b2bpic.net/free-photo/conceptual-3d-illustration-dental-implant-inside-jawbone_183364-123704.jpg?_wi=1", imageAlt: "Dental implant illustration" }, - { title: "Cosmetic Treatments", description: "Transform your smile with professional whitening, veneers, and complete smile makeovers.", imageSrc: "http://img.b2bpic.net/free-photo/dentist-taking-female-patients-tooth-x-ray_107420-73923.jpg?_wi=1", imageAlt: "Cosmetic teeth whitening illustration" }, - { title: "Family-Friendly Care", description: "Gentle and specialized dental care for patients of all ages, ensuring a positive experience for children and adults.", imageSrc: "http://img.b2bpic.net/free-photo/dentist-using-ultrasonic-scaler-treating-boy-s-teeth-clinic_23-2147905966.jpg?_wi=1", imageAlt: "Family dental care illustration" } + { title: "General Dentistry", description: "Preventative care, fillings, root canals, and regular check-ups to maintain optimal oral health.", imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-charming-little-girl-brushing-teeth-bathroom-while-standing-front-mirror-squeezing-toothpaste-out-tube-smiling-happily_176532-15698.jpg", imageAlt: "Dental check-up illustration" }, + { title: "Dental Implants", description: "Permanent and natural-looking solutions for missing teeth, restoring function and aesthetics.", imageSrc: "http://img.b2bpic.net/free-photo/conceptual-3d-illustration-dental-implant-inside-jawbone_183364-123704.jpg", imageAlt: "Dental implant illustration" }, + { title: "Cosmetic Treatments", description: "Transform your smile with professional whitening, veneers, and complete smile makeovers.", imageSrc: "http://img.b2bpic.net/free-photo/dentist-taking-female-patients-tooth-x-ray_107420-73923.jpg", imageAlt: "Cosmetic teeth whitening illustration" }, + { title: "Family-Friendly Care", description: "Gentle and specialized dental care for patients of all ages, ensuring a positive experience for children and adults.", imageSrc: "http://img.b2bpic.net/free-photo/dentist-using-ultrasonic-scaler-treating-boy-s-teeth-clinic_23-2147905966.jpg", imageAlt: "Family dental care illustration" } ]} gridVariant="three-columns-all-equal-width" animationType="slide-up" @@ -107,7 +106,7 @@ export default function HomePage() { title="Committed to Excellence" description="Our dedication to patient satisfaction and clinical excellence is reflected in our outstanding results and community trust." metrics={[ - { id: "m1", icon: Dental, title: "Years of Experience", value: "20+" }, + { id: "m1", icon: Tooth, title: "Years of Experience", value: "20+" }, { id: "m2", icon: Smile, title: "Satisfied Patients", value: "5000+" }, { id: "m3", icon: Award, title: "Successful Treatments", value: "98%" } ]} @@ -139,8 +138,8 @@ export default function HomePage() { title="Book Your Appointment Today!" description="Our friendly team is here to help you schedule a visit that fits your family's busy schedule. Contact us now to begin your journey to optimal oral health." buttons={[ - { text: "Book Online", href: "/contact", Component: Link }, - { text: "Call Us", href: "tel:+971501234567", Component: Link } + { text: "Book Online", href: "/contact" }, + { text: "Call Us", href: "tel:+971501234567" } ]} background={{ variant: "radial-gradient" }} useInvertedBackground={false} @@ -155,7 +154,6 @@ export default function HomePage() { { items: footerNavItemsColumn2.map(item => ({...item, Component: Link})) }, { items: footerNavItemsColumn3.map(item => ({...item, Component: Link})) } ]} - useInvertedBackground={true} />