import React from 'react'; import { Code, Server, Database, Wifi, Shield, Zap } from 'lucide-react'; export function Features() { const integrations = [ { name: 'HL7 FHIR', icon: Database, status: 'active' }, { name: 'REST API', icon: Server, status: 'active' }, { name: 'SFTP', icon: Wifi, status: 'active' }, { name: 'SOAP', icon: Code, status: 'active' }, { name: 'OAuth 2.0', icon: Shield, status: 'active' }, { name: 'WebSockets', icon: Zap, status: 'active' }, ]; const features = [ { title: 'Predictive AI Intelligence', description: 'Advanced machine learning algorithms predict staffing needs, identify potential issues, and optimize resource allocation in real-time.', image: 'https://images.pexels.com/photos/8386440/pexels-photo-8386440.jpeg?auto=compress&cs=tinysrgb&w=600' }, { title: 'Global Disease Monitoring', description: 'Comprehensive worldwide disease tracking with outbreak prediction capabilities and early warning systems for healthcare preparedness.', image: 'https://images.pexels.com/photos/3985167/pexels-photo-3985167.jpeg?auto=compress&cs=tinysrgb&w=600' }, { title: 'Compliance & Quality Assurance', description: 'Automated compliance monitoring ensures adherence to healthcare regulations with real-time alerts and comprehensive audit trails.', image: 'https://images.pexels.com/photos/4386467/pexels-photo-4386467.jpeg?auto=compress&cs=tinysrgb&w=600' } ]; return (
{/* Integrations Section */}

Enterprise Integrations

Seamlessly connect with your existing healthcare infrastructure through our comprehensive integration suite.

{integrations.map((integration, index) => (

{integration.name}

Connected
))}
{/* Features Showcase */}
{features.map((feature, index) => (

{feature.title}

{feature.description}

{feature.title}
))}
{/* ROI Section */}

Measurable ROI in Healthcare Operations

Join leading healthcare organizations achieving significant cost savings and improved patient outcomes through AI-driven automation.

45%
Efficiency Increase
$2.3M
Annual Savings
99.8%
Compliance Rate
); }