"use client"; import Navbar from "../components/layout/Navbar"; import DNAHeroBackground from "../components/canvas/DNAHeroBackground"; import { motion } from "framer-motion"; import { Activity, Bluetooth, ShieldCheck, Zap } from "lucide-react"; import Footer from "../components/layout/Footer"; export default function DevicesPage() { return (

Medical Hardware

Precision-engineered Bluetooth vitals monitors and maternity care tools. Designed for reliability, accuracy, and absolute security.

{/* Device Detailed Grid */}
{[ { title: "Vitals Hub X1", feature: "Multi-Parameter Monitoring", desc: "Measures Blood Pressure, Heart Rate, SpO2, and Body Temperature in one sleek device.", specs: ["Bluetooth 5.2", "48h Battery", "Cloud Sync"] }, { title: "Fetal Doppler Pro", feature: "Maternity Care", desc: "High-sensitivity fetal heart rate detection with ultra-sound noise reduction technology.", specs: ["OLED Display", "Built-in Speaker", "App Integration"] } ].map((item, i) => (
{item.feature}

{item.title}

{item.desc}

{item.specs.map((spec, j) => ( {spec} ))}
))}
{/* Compliance Banner */}

HIPAA Verified Hardware

Every device in our ecosystem undergoes rigorous security audits. Data transmission is encrypted from the sensor to the cloud.

); }