"use client"; import { motion } from "framer-motion"; import { Smartphone, ShieldCheck, HeartPulse, Fingerprint } from "lucide-react"; export default function AppEcosystem() { return (
Mobile Intelligence

Health in your Pocket

Experience end-to-end healthcare with our companion mobile apps. Real-time data sync, encrypted messaging, and emergency alerts at your fingertips.

{[ { icon: Fingerprint, title: "Biometric Security", text: "Secure access with FaceID and Fingerprint authentication." }, { icon: ShieldCheck, title: "HIPAA Certified", text: "Multi-layered encryption for all personal health information (PHI)." }, { icon: HeartPulse, title: "Live Streaming", text: "Instant vital data visualization from connected Bluetooth devices." } ].map((item, i) => (

{item.title}

{item.text}

))}
{/* Phone Frame Mockup */}
{[1, 2, 3].map((_, i) => (
))}
{/* Decorative Elements */}
); }