"use client"; import Navbar from "../components/layout/Navbar"; import Footer from "../components/layout/Footer"; import { motion } from "framer-motion"; import { Thermometer, Activity, HeartPulse, Droplet, Baby, Scale, Bluetooth, ShieldCheck, FileText, } from "lucide-react"; interface DeviceItem { title: string; subtitle: string; description: string; highlights: string[]; specs: string[]; icon: React.ComponentType>; } function DeviceCard({ item, index }: { item: DeviceItem; index: number }) { return ( {/* Subtle internal gradient glow */}

{item.title}

{item.subtitle}

{/* Uncomment this block if you want to bring back the card details */} {/*

{item.description}

{item.highlights.map((highlight, i) => (
{highlight}
))}
{item.specs.map((spec, i) => ( {spec} ))}
*/} ); } export default function DevicesPage() { const devices: DeviceItem[] = [ { title: "Multi-Vital Monitor", subtitle: "Temperature • SpO₂ • Blood Pressure", description: "Simultaneous clinical-grade measurement of core vital signs with validated algorithms and secure wireless pairing.", highlights: ["±0.1 °C accuracy", "±2% SpO₂", "±3 mmHg NIBP"], specs: ["Bluetooth 5.2 LE", "IEC 60601", "24 h operation", "IP54"], icon: Activity, }, { title: "3-in-1 Metabolic Analyzer", subtitle: "Glucose • Hemoglobin • Hematocrit", description: "Fast point-of-care testing from a single micro-sample with temperature compensation and result validation.", highlights: ["5–10 sec result", "±5 mg/dL glucose", "Lab-comparable Hb/HCT"], specs: ["Micro-volume sample", "Strip detection", "EHR integration", "Auto calibration"], icon: Droplet, }, { title: "Digital Urine Analyzer", subtitle: "Multi-parameter Urinalysis", description: "Automated reading and standardized interpretation of urine test strips with digital result storage.", highlights: ["10–14 parameters", "< 60 seconds", "Trend tracking", "PDF export"], specs: ["High-resolution optics", "AI strip analysis", "Bluetooth sync", "Batch processing"], icon: Droplet, }, { title: "Fetal Heart Doppler", subtitle: "Professional Maternity Monitoring", description: "High-sensitivity fetal heart rate detection with audio output, waveform display and event recording.", highlights: ["50–240 bpm range", "3 MHz probe", "Water-resistant", "Extended battery"], specs: ["Clinical validation", "Bluetooth audio", "Waveform visualization", "Event marking"], icon: Baby, }, { title: "Clinical Precision Scale", subtitle: "Weight & Body Composition", description: "High-accuracy weighing platform with body composition analysis suitable for clinical follow-up.", highlights: ["200 kg capacity", "50 g resolution", "Fat / Muscle / Water", "Multi-user support"], specs: ["Bioelectrical impedance", "Tempered glass", "Bluetooth LE", "Stable base"], icon: Scale, }, ]; return (
{/* ====================== Bluetooth Animated Background ====================== */}
{/* Dark moody base gradient */}
{/* Pulsing Bluetooth radar-style rings */}
{/* Largest – slowest */} {/* Medium */} {/* Smallest + sharper */} {/* Very faint core glow */}
{/* Subtle rotating signal arcs */}
{/* Floating particles */}
{[...Array(16)].map((_, i) => ( ))}
{/* ====================== Main Content ====================== */}
{/* Header */}
Connected Clinical Peripherals

Diagnostic Hardware Suite

Reliable, standards-compliant devices designed for hospitals, clinics, telehealth and institutional care environments.

{/* Device cards grid */}
{devices.map((device, i) => ( ))}
{/* Compliance & security block */}

Medical Standards & Data Security

Devices comply with IEC 60601, IEC 62304 and relevant regional regulations. All data transmission uses end-to-end encryption, device authentication, secure pairing and full audit logging.

); }