"use client"; import Navbar from "../components/layout/Navbar"; import DNAHeroBackground from "../components/canvas/DNAHeroBackground"; import Footer from "../components/layout/Footer"; import { motion, useScroll, useTransform } from "framer-motion"; import { Lock, Globe, MessageSquare, Bell, HeartPulse, ShieldCheck, Fingerprint, Zap, ArrowRight, LayoutGrid } from "lucide-react"; import { useRef } from "react"; // Animation Variants const containerVariants = { hidden: { opacity: 0 }, visible: { opacity: 1, transition: { staggerChildren: 0.15, delayChildren: 0.2 } } }; const itemVariants = { hidden: { opacity: 0, y: 30 }, visible: { opacity: 1, y: 0, transition: { duration: 0.8, ease: [0.2, 0.65, 0.3, 0.9] as const } } } satisfies import("framer-motion").Variants; export default function AppsPage() { const targetRef = useRef(null); const { scrollYProgress } = useScroll({ target: targetRef, offset: ["start end", "end start"] }); const y = useTransform(scrollYProgress, [0, 1], [100, -100]); return (
{/* Background Layer */}
{/* --- HERO SECTION --- */}
{/* Left: Text Content */} Neural Ecosystem v4.0 Unified
Access
The institutional clinical command center. Real-time bio-sync and clinical assistance designed for absolute operational security.
{/* Right: Phone Mockup Animation */} {/* Decorative Background Blob */}
{/* Glass Phone Frame */}
{/* Notch */}
{/* Screen Content */}
{/* Status Header */}
{/* Dynamic Widget */}

Bio-Sync Active

ENCRYPTED STREAM • 42ms

{/* Dummy Chart Lines */}
{[40, 70, 45, 90, 60, 80, 50, 75, 60, 95].map((h, i) => ( ))}
{/* Bottom Actions */}
{[Bell, Globe, ShieldCheck].map((Icon, i) => ( ))}
{/* Reflection Gradient */}
{/* Shadow / Depth Layer */}
{/* --- FEATURE GRID --- */}
{/* Section Header */}

System Architecture

Institutional-grade protocols built for the next generation of healthcare.

{[ { icon: Lock, title: "Zero-Trust Protocol", desc: "Institutional-grade multi-layer security for clinical data transfers." }, { icon: MessageSquare, title: "Clinical AI Bridge", desc: "Real-time verification and documentation via medical LLM layers." }, { icon: Bell, title: "Predictive SOS Audit", desc: "Automated institutional alerts based on verified vital trend analysis." }, { icon: Globe, title: "Universal Sync Hub", desc: "Global access to clinical data on certified HIPAA infrastructure." }, { icon: Fingerprint, title: "Biometric Audit", desc: "Hardware-locked PHI access ensures zero-bias clinical security." }, { icon: ShieldCheck, title: "Institutional Verified", desc: "Certified infrastructure for sovereign clinical data integrity." } ].map((feature, i) => ( {/* Hover Glow */}

{feature.title}

{feature.desc}

))}
); }