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 } ]} />