"use client"; import Navbar from "../components/layout/Navbar"; import DNAHeroBackground from "../components/canvas/DNAHeroBackground"; import { motion } from "framer-motion"; import { Lock, Globe, MessageSquare, Bell, HeartPulse, ShieldCheck } from "lucide-react"; import Footer from "../components/layout/Footer"; export default function AppsPage() { return (

Connected Care

Our mobile applications are the command center for your health. Real-time monitoring, AI-driven insights, and instant doctor access—securely in your pocket.

Live Vitals

{/* Features Grid */}
{[ { icon: Lock, title: "End-to-End Encryption", desc: "Military-grade AES-256 encryption for all data sync and communication." }, { icon: MessageSquare, title: "AI Chat Assistant", desc: "Instant clinical insights and symptom tracking powered by our healthcare LLM." }, { icon: Bell, title: "Emergency SOS", desc: "Automatic alerts to emergency contacts when vitals drop outside safe thresholds." }, { icon: Globe, title: "Teleconsult Sync", desc: "Seamlessly transition from monitoring to a live video call with your physician." }, { icon: ShieldCheck, title: "HIPAA Cloud", desc: "Secure cloud infrastructure designed specifically for healthcare data storage." } ].map((feature, i) => (

{feature.title}

{feature.desc}

))}
); }