import React from 'react'; import { BarChart3, UserCheck, Search } from 'lucide-react'; const techCards = [ { icon: BarChart3, title: 'Big Data & AI-Powered Insights', desc: 'Harnessing data and AI for accurate, actionable results.' }, { icon: UserCheck, title: 'Personalized Diagnostics', desc: 'Tailored testing for your unique health profile.' }, { icon: Search, title: 'Early Detection for Better Outcomes', desc: 'Identifying risks early for proactive care.' }, ]; const HowTechWorks = () => (

How Our Diagnostic Technology Works

{techCards.map(({ icon: Icon, title, desc }) => (

{title}

{desc}

))}
); export default HowTechWorks;