From 78e2ebec069b998ad48e056d9558b84553f0c524 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 29 Mar 2026 21:49:51 +0000 Subject: [PATCH] Update src/app/services/page.tsx --- src/app/services/page.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 40fc660..f1bb609 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -5,6 +5,7 @@ import ReactLenis from "lenis/react"; import FeatureCardTen from '@/components/sections/feature/FeatureCardTen'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { CheckCircle } from "lucide-react"; export default function ServicesPage() { return ( @@ -29,10 +30,10 @@ export default function ServicesPage() { textboxLayout="default" useInvertedBackground={false} features={[ - { title: "Dental Cleanings", description: "Routine professional cleanings for optimal oral hygiene." }, - { title: "Teeth Whitening", description: "Brighten your smile with our professional whitening solutions." }, - { title: "Dental Implants", description: "Permanent, natural-looking tooth replacement." }, - { title: "Orthodontics", description: "Correct alignment with braces or clear aligners." } + { id: "1", icon: CheckCircle, title: "Dental Cleanings", description: "Routine professional cleanings for optimal oral hygiene.", media: "", items: [], reverse: false }, + { id: "2", icon: CheckCircle, title: "Teeth Whitening", description: "Brighten your smile with our professional whitening solutions.", media: "", items: [], reverse: false }, + { id: "3", icon: CheckCircle, title: "Dental Implants", description: "Permanent, natural-looking tooth replacement.", media: "", items: [], reverse: false }, + { id: "4", icon: CheckCircle, title: "Orthodontics", description: "Correct alignment with braces or clear aligners.", media: "", items: [], reverse: false } ]} />