import React from 'react'; import { Users, Calendar, BarChart3, Shield, Globe, Database } from 'lucide-react'; export function Solutions() { const solutions = [ { icon: Shield, title: 'Policy Management', description: 'Automated compliance tracking with real-time policy updates and violation alerts.', gradient: 'from-blue-500 to-indigo-600', features: ['Automated Compliance', 'Real-time Updates', 'Violation Alerts'] }, { icon: Users, title: 'Clinical Workforce Management', description: 'AI-powered scheduling and staffing optimization for maximum efficiency.', gradient: 'from-teal-500 to-cyan-600', features: ['Smart Scheduling', 'Skill Matching', 'Workload Balance'] }, { icon: BarChart3, title: 'Advanced Analytics', description: 'Predictive insights and performance metrics for data-driven decisions.', gradient: 'from-purple-500 to-pink-600', features: ['Predictive Analytics', 'KPI Tracking', 'Custom Reports'] }, { icon: Calendar, title: 'Clinical Surveillance', description: 'Continuous monitoring and early detection of clinical anomalies.', gradient: 'from-green-500 to-emerald-600', features: ['Anomaly Detection', 'Early Warnings', 'Quality Assurance'] }, { icon: Globe, title: 'Global AI Disease Intelligence', description: 'Worldwide disease tracking and outbreak prediction capabilities.', gradient: 'from-orange-500 to-red-600', features: ['Disease Tracking', 'Outbreak Prediction', 'Global Intelligence'] }, { icon: Database, title: 'Public Health Platform', description: 'Comprehensive population health management and reporting tools.', gradient: 'from-slate-500 to-gray-600', features: ['Population Health', 'Public Reporting', 'Health Metrics'] } ]; return (

Digital Health Transformation Solutions

Comprehensive suite of AI-powered tools designed to revolutionize healthcare operations and improve patient outcomes across all care settings.

{solutions.map((solution, index) => (

{solution.title}

{solution.description}

{solution.features.map((feature, featureIndex) => (
{feature}
))}
))}
); }