"use client"; import { motion } from "framer-motion"; import { Activity, Bluetooth, Gauge, MonitorSmartphone } from "lucide-react"; const devices = [ { title: "Vitals Monitor", description: "Bluetooth-enabled real-time tracking of blood pressure, SpO2, and heart rate.", icon: Activity, color: "from-blue-500 to-cyan-400" }, { title: "Fetal Doppler", description: "Hospital-grade fetal heart rate monitoring for remote maternity care.", icon: Gauge, color: "from-purple-500 to-pink-500" }, { title: "Smart Weight Scale", description: "Advanced body composition analysis with automatic health profile syncing.", icon: MonitorSmartphone, color: "from-emerald-500 to-teal-400" } ]; export default function DeviceShowcase() { return (
Smart Peripherals

A Connected Hardware Ecosystem

Seamlessly bridge the gap between physical health and digital intelligence with our HIPAA-compliant Bluetooth medical devices.

{devices.map((device, i) => (

{device.title}

{device.description}

Explore Tech
))}
); }