From 55bfa8e535499518c8595184f548da5e2aa04b9b Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 16:59:21 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 192d9d0..5815ac4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,7 +2,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi"; import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel"; import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; import FeatureCardNine from "@/components/sections/feature/FeatureCardNine"; @@ -404,30 +403,32 @@ export default function LandingPage() { tag="Our Services" tagIcon={Sparkles} tagAnimation="slide-up" - background={{ variant: "glowing-orb" }} + background={{ variant: "sparkles-gradient" }} buttons={[ { text: "Book Consultation", onClick: () => setBookingOpen(true) }, { text: "Learn More", href: "#about" }, ]} buttonAnimation="slide-up" - mediaItems={[ + carouselItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/female-patient-smiling_107420-65384.jpg", imageAlt: "Cosmetic smile enhancement" + id: "1", imageSrc: "http://img.b2bpic.net/free-photo/female-patient-smiling_107420-65384.jpg", imageAlt: "Cosmetic smile enhancement" }, { - imageSrc: "http://img.b2bpic.net/free-photo/old-man-sitting-dentist-s-office_1157-19454.jpg", imageAlt: "Advanced dental implant procedure" + id: "2", imageSrc: "http://img.b2bpic.net/free-photo/old-man-sitting-dentist-s-office_1157-19454.jpg", imageAlt: "Advanced dental implant procedure" }, { - imageSrc: "http://img.b2bpic.net/free-photo/young-woman-receiving-dental-treatment-from-male-dentist-clinic_662251-2591.jpg", imageAlt: "Professional dental cleaning" + id: "3", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-receiving-dental-treatment-from-male-dentist-clinic_662251-2591.jpg", imageAlt: "Professional dental cleaning" }, { - imageSrc: "http://img.b2bpic.net/free-photo/dentist-process-dental-services-dental-office-dental-treatment_1321-2973.jpg", imageAlt: "Dental care treatment" + id: "4", imageSrc: "http://img.b2bpic.net/free-photo/dentist-process-dental-services-dental-office-dental-treatment_1321-2973.jpg", imageAlt: "Dental care treatment" }, { - imageSrc: "http://img.b2bpic.net/free-photo/dental-clinic-interior-with-modern-dentistry-equipment-orange-color-stomatology-cabinet-with-nobody-it-orange-equipment-oral-treatment_482257-12486.jpg", imageAlt: "Modern dental office" + id: "5", imageSrc: "http://img.b2bpic.net/free-photo/dental-clinic-interior-with-modern-dentistry-equipment-orange-color-stomatology-cabinet-with-nobody-it-orange-equipment-oral-treatment_482257-12486.jpg", imageAlt: "Modern dental office" + }, + { + id: "6", imageSrc: "http://img.b2bpic.net/free-photo/female-patient-smiling_107420-65384.jpg", imageAlt: "Cosmetic smile enhancement" } ]} - mediaAnimation="slide-up" /> -- 2.49.1