"use client"; import Navbar from "../components/layout/Navbar"; import Footer from "../components/layout/Footer"; import { motion } from "framer-motion"; import { Activity, Droplet, Baby, Scale, Bluetooth, ShieldCheck, Cpu, Zap, CheckCircle2, ArrowUpRight, } 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 ( {/* Card Container */}
{/* Hover Gradient Overlay */}
{/* Content Wrapper */}
{/* Header Section */}
{/* Corner Action Icon */}

{item.title}

{item.subtitle}

{item.description}

{/* Divider */}
{/* Specs Grid (Compact) */}
{item.highlights.slice(0, 4).map((highlight, i) => ( // Show first 4
{highlight}
))}
{/* Technical Chips */}
{item.specs.slice(0, 3).map((spec, i) => ( {spec} ))}
); } export default function DeviceShowcase() { const devices: DeviceItem[] = [ { title: "Multi-Vital Monitor", subtitle: "Hemodynamics", description: "Clinical-grade core vital signs measurement with validated algorithms and secure wireless pairing.", highlights: ["±0.1°C accuracy", "±2% SpO₂", "±3 mmHg NIBP", "Resp. Rate"], specs: ["BT 5.2 LE", "IEC 60601", "IP54"], icon: Activity, }, { title: "Metabolic Analyzer", subtitle: "Blood Chemistry", description: "Fast point-of-care testing from a single micro-sample with temperature compensation.", highlights: ["5s Result", "±5 mg/dL Glu", "HCT Corrected", "Ketone Check"], specs: ["Micro-fluidic", "NFC Sync", "Auto-Cal"], icon: Droplet, }, { title: "Fetal Doppler", subtitle: "Maternity Care", description: "High-sensitivity fetal heart rate detection with audio output and waveform recording.", highlights: ["50–240 BPM", "3 MHz Probe", "Auto-Record", "Noise Cancel"], specs: ["Ultrasonic", "FDA Cleared", "Type-C"], icon: Baby, }, { title: "Precision Scale", subtitle: "Biometrics", description: "High-accuracy weighing platform with body composition analysis for clinical follow-up.", highlights: ["50g Resolution", "Bio-Impedance", "Muscle/Fat %", "Water Mass"], specs: ["Tempered Glass", "Strain Gauge", "WiFi"], icon: Scale, }, { title: "Digital Otoscope", subtitle: "ENT Imaging", description: "HD video capture of the ear canal and tympanic membrane with AI diagnostic support.", highlights: ["1080p Video", "100x Zoom", "Auto-Focus", "LED Ring"], specs: ["WiFi Direct", "Macro Lens", "IP67"], icon: Zap, // Using Zap as placeholder for Otoscope/Light }, { title: "ECG Patch", subtitle: "Cardiology", description: "Wearable continuous heart monitoring with arrhythmia detection and cloud sync.", highlights: ["7-Day Battery", "Lead II", "Afib Alert", "Waterproof"], specs: ["Bluetooth 5.0", "Medical Adhesive", "24/7"], icon: Cpu, }, ]; return (
{/* ====================== Animated Background Layers ====================== */}
{/* Base Gradient */}
{/* Radial Center Glow */}
{/* Animated Rings (Responsive Sizes) */}
{/* Floating Particles */}
{[...Array(12)].map((_, i) => ( ))}
{/* ====================== Main Content ====================== */}
{/* Container limits width, scales for 4K */}
{/* --- Hero Header --- */}
{/* Badge */} IoT Ecosystem {/* Title */} Clinical Hardware Suite {/* Subtitle */} Seamlessly connected diagnostic devices designed for accuracy, speed, and institutional interoperability.
{/* --- Devices Grid --- */} {/* 1 col mobile, 2 col tablet, 3 col laptop, 4 col ultra-wide */}
{devices.map((device, i) => ( ))}
{/* --- Bottom Feature: Security --- */}
{/* Decoration */}

Enterprise-Grade Compliance

Built for the modern hospital. Our devices comply with IEC 60601 and HIPAA standards. End-to-end encryption ensures patient data remains secure from the sensor to the cloud.

); }