"use client"; import { motion, useScroll, useTransform } from "framer-motion"; import { Video, Shield, Clock, Users, Globe, Activity } from "lucide-react"; import { useRef } from "react"; export default function TelehealthSolutions() { const containerRef = useRef(null); const { scrollYProgress } = useScroll({ target: containerRef, offset: ["start end", "end start"] }); const scale = useTransform(scrollYProgress, [0, 0.5], [0.98, 1]); const rotateY = useTransform(scrollYProgress, [0, 0.5], [10, 0]); const services = [ { icon: Video, title: "Clinical HD Video", desc: "Institutional-grade secure streaming for pediatric and adult care." }, { icon: Clock, title: "Zero-Latency Triage", desc: "Automated routing based on real-time vital analysis." }, { icon: Shield, title: "Military Encryption", desc: "End-to-end PHI security layers for absolute data integrity." }, { icon: Globe, title: "Global Registry", desc: "Unified clinical records accessible across institutional borders." } ]; return (
Clinical Service Layer

Connected
Logistics

Institutional delivery systems for virtual care. Bridging the gap between the patient and the neural clinic with uncompromised operational speed.

{services.map((item, i) => (

{item.title}

{item.desc}

))}
); }