import { HeartPulse, Stethoscope, ShieldCheck, Activity } from "lucide-react" export default function FeaturesShowcase() { const features = [ { icon: ShieldCheck, title: "Secure & Compliant by Default", description: "Built with end-to-end encryption and fully compliant with HIPAA standards to safeguard patient data and ensure trust.", }, { icon: HeartPulse, title: "Realtime Vital Signs Display", description: "Designed for critical care environments — instantly render and update patient vitals with zero lag and clinical-grade precision.", }, { icon: Stethoscope, title: "Ergonomic for Medical Workflows", description: "Crafted for doctors, nurses, and specialists. Clear layouts and intuitive spacing reduce cognitive load in high-pressure scenarios.", }, { icon: Activity, title: "Live Health Metrics & Analytics", description: "Visualize trends, charts, and diagnostic data in real-time. Engineered for clarity and speed in data-driven medical decisions.", }, ] return (

Healthcare-Optimized Components

Designed specifically for medical interfaces with a focus on clarity, performance, and compliance.

{features.map((feature, index) => (

{feature.title}

{feature.description}

))}
) }