From af3caa9c26c70934cbf380a731dd7fced699f3d0 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 29 Mar 2026 21:49:24 +0000 Subject: [PATCH] Update src/app/services/page.tsx --- src/app/services/page.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index ed4fc52..40fc660 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -5,7 +5,6 @@ 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 { ShieldCheck, Sparkles, Stethoscope, Smile } from "lucide-react"; export default function ServicesPage() { return ( @@ -30,10 +29,10 @@ export default function ServicesPage() { textboxLayout="default" useInvertedBackground={false} features={[ - { icon: ShieldCheck, title: "Dental Cleanings", description: "Routine professional cleanings for optimal oral hygiene." }, - { icon: Sparkles, title: "Teeth Whitening", description: "Brighten your smile with our professional whitening solutions." }, - { icon: Stethoscope, title: "Dental Implants", description: "Permanent, natural-looking tooth replacement." }, - { icon: Smile, title: "Orthodontics", description: "Correct alignment with braces or clear aligners." } + { 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." } ]} />