Enhaced UI updated

This commit is contained in:
2026-01-22 11:32:41 +05:30
parent 37835cf5c9
commit af2a96c035
8 changed files with 561 additions and 19 deletions

View File

@@ -0,0 +1,91 @@
"use client";
import { motion } from "framer-motion";
import { Smartphone, ShieldCheck, HeartPulse, Fingerprint } from "lucide-react";
export default function AppEcosystem() {
return (
<section className="py-24 relative overflow-hidden">
<div className="container mx-auto px-6">
<div className="flex flex-col md:flex-row-reverse items-center gap-20">
<motion.div
initial={{ opacity: 0, x: 50 }}
whileInView={{ opacity: 1, x: 0 }}
transition={{ duration: 0.8 }}
className="flex-1 space-y-10"
>
<div className="space-y-4">
<div className="inline-flex items-center gap-2 px-4 py-2 rounded-full bg-accent/10 border border-accent/20 text-accent text-sm font-semibold">
<Smartphone className="w-4 h-4" />
<span>Mobile Intelligence</span>
</div>
<h2 className="text-4xl md:text-6xl font-black tracking-tighter">
Health in your <span className="text-gradient">Pocket</span>
</h2>
<p className="text-xl text-foreground/60 leading-relaxed max-w-2xl">
Experience end-to-end healthcare with our companion mobile apps. Real-time data sync, encrypted messaging, and emergency alerts at your fingertips.
</p>
</div>
<div className="space-y-6">
{[
{ icon: Fingerprint, title: "Biometric Security", text: "Secure access with FaceID and Fingerprint authentication." },
{ icon: ShieldCheck, title: "HIPAA Certified", text: "Multi-layered encryption for all personal health information (PHI)." },
{ icon: HeartPulse, title: "Live Streaming", text: "Instant vital data visualization from connected Bluetooth devices." }
].map((item, i) => (
<div key={i} className="flex gap-6 group">
<div className="w-12 h-12 rounded-xl bg-white/5 flex items-center justify-center border border-white/10 group-hover:bg-primary/20 transition-colors">
<item.icon className="w-6 h-6 text-primary" />
</div>
<div>
<h4 className="font-extrabold text-lg">{item.title}</h4>
<p className="text-foreground/50">{item.text}</p>
</div>
</div>
))}
</div>
</motion.div>
<motion.div
initial={{ opacity: 0, y: 50 }}
whileInView={{ opacity: 1, y: 0 }}
transition={{ duration: 0.8 }}
className="flex-1"
>
<div className="relative mx-auto max-w-[300px]">
{/* Phone Frame Mockup */}
<div className="relative w-full aspect-[1/2] glass rounded-[3rem] p-4 border-white/20 shadow-[0_0_80px_rgba(59,130,246,0.2)] overflow-hidden">
<div className="absolute top-0 inset-x-0 h-8 flex justify-center items-center">
<div className="w-20 h-4 bg-black rounded-full" />
</div>
<div className="h-full w-full bg-zinc-900 rounded-[2.5rem] p-6 space-y-8 relative">
<div className="flex justify-between items-center">
<div className="space-y-1">
<div className="h-2 w-16 bg-white/10 rounded-full" />
<div className="h-3 w-24 bg-white/20 rounded-full" />
</div>
<div className="w-10 h-10 rounded-full bg-primary/20" />
</div>
<div className="aspect-square glass rounded-2xl p-6 flex items-center justify-center">
<HeartPulse className="w-20 h-20 text-primary animate-pulse" />
</div>
<div className="space-y-4">
{[1, 2, 3].map((_, i) => (
<div key={i} className="h-12 bg-white/5 rounded-xl border border-white/5" />
))}
</div>
</div>
</div>
{/* Decorative Elements */}
<div className="absolute -z-10 -bottom-10 -right-10 w-40 h-40 bg-accent/20 blur-[60px] rounded-full" />
<div className="absolute -z-10 top-20 -left-20 w-48 h-48 bg-primary/20 blur-[60px] rounded-full" />
</div>
</motion.div>
</div>
</div>
</section>
);
}

View File

@@ -0,0 +1,81 @@
"use client";
import { motion } from "framer-motion";
import { Activity, Bluetooth, Gauge, MonitorSmartphone } from "lucide-react";
const devices = [
{
title: "Vitals Monitor",
description: "Bluetooth-enabled real-time tracking of blood pressure, SpO2, and heart rate.",
icon: Activity,
color: "from-blue-500 to-cyan-400"
},
{
title: "Fetal Doppler",
description: "Hospital-grade fetal heart rate monitoring for remote maternity care.",
icon: Gauge,
color: "from-purple-500 to-pink-500"
},
{
title: "Smart Weight Scale",
description: "Advanced body composition analysis with automatic health profile syncing.",
icon: MonitorSmartphone,
color: "from-emerald-500 to-teal-400"
}
];
export default function DeviceShowcase() {
return (
<section id="devices" className="py-24 relative overflow-hidden">
<div className="container mx-auto px-6">
<div className="text-center max-w-3xl mx-auto mb-20 space-y-4">
<motion.div
initial={{ opacity: 0, y: 20 }}
whileInView={{ opacity: 1, y: 0 }}
transition={{ duration: 0.8 }}
>
<div className="inline-flex items-center gap-2 px-4 py-2 rounded-full bg-primary/10 border border-primary/20 text-primary text-sm font-semibold mb-4">
<Bluetooth className="w-4 h-4" />
<span>Smart Peripherals</span>
</div>
<h2 className="text-4xl md:text-6xl font-black tracking-tighter">
A Connected <span className="text-gradient">Hardware</span> Ecosystem
</h2>
<p className="text-lg text-foreground/60 leading-relaxed">
Seamlessly bridge the gap between physical health and digital intelligence with our HIPAA-compliant Bluetooth medical devices.
</p>
</motion.div>
</div>
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
{devices.map((device, i) => (
<motion.div
key={i}
initial={{ opacity: 0, y: 30 }}
whileInView={{ opacity: 1, y: 0 }}
transition={{ duration: 0.5, delay: i * 0.1 }}
whileHover={{ y: -10 }}
className="glass p-8 rounded-[2rem] border-white/5 group relative overflow-hidden"
>
<div className={`absolute -top-24 -right-24 w-48 h-48 bg-gradient-to-br ${device.color} opacity-10 blur-3xl group-hover:opacity-20 transition-opacity`} />
<div className="w-16 h-16 rounded-2xl bg-white/5 flex items-center justify-center mb-8 border border-white/10 group-hover:scale-110 transition-transform">
<device.icon className="w-8 h-8 text-primary" />
</div>
<h3 className="text-2xl font-bold mb-4">{device.title}</h3>
<p className="text-foreground/60 leading-relaxed mb-6">
{device.description}
</p>
<div className="flex items-center gap-2 text-primary font-bold text-sm tracking-widest uppercase opacity-0 group-hover:opacity-100 transition-opacity">
<span>Explore Tech</span>
<Bluetooth className="w-4 h-4" />
</div>
</motion.div>
))}
</div>
</div>
</section>
);
}

View File

@@ -0,0 +1,95 @@
"use client";
import { motion } from "framer-motion";
import { Video, ShoppingCart, ShieldCheck, Globe } from "lucide-react";
export default function TelehealthSolutions() {
return (
<section className="py-24 relative overflow-hidden bg-primary/5">
<div className="container mx-auto px-6">
<div className="flex flex-col lg:flex-row items-center gap-20">
<motion.div
initial={{ opacity: 0, x: -50 }}
whileInView={{ opacity: 1, x: 0 }}
transition={{ duration: 0.8 }}
className="flex-1 space-y-10"
>
<div className="space-y-4">
<h2 className="text-4xl md:text-6xl font-black tracking-tighter">
Clinic without <span className="text-gradient">Boundaries</span>
</h2>
<p className="text-xl text-foreground/60 leading-relaxed max-w-2xl">
Advanced tele-consultation and integrated cart solutions designed for modern healthcare infrastructure. High-fidelity, low-latency, and fully secure.
</p>
</div>
<div className="grid grid-cols-1 sm:grid-cols-2 gap-8">
<div className="space-y-4">
<div className="w-12 h-12 rounded-xl bg-blue-500/20 flex items-center justify-center">
<Video className="w-6 h-6 text-blue-500" />
</div>
<h3 className="text-xl font-bold">Teleconsult</h3>
<p className="text-sm text-foreground/50">HD video consultation with integrated EHR and vital streaming capabilities.</p>
</div>
<div className="space-y-4">
<div className="w-12 h-12 rounded-xl bg-purple-500/20 flex items-center justify-center">
<ShoppingCart className="w-6 h-6 text-purple-500" />
</div>
<h3 className="text-xl font-bold">Telecart</h3>
<p className="text-sm text-foreground/50">Managed healthcare shopping experience for devices and medication.</p>
</div>
</div>
<div className="flex items-center gap-6 p-6 glass rounded-2xl border-primary/20 bg-primary/5">
<ShieldCheck className="w-10 h-10 text-primary flex-shrink-0" />
<div>
<h4 className="font-bold">Enterprise-Grade Security</h4>
<p className="text-sm text-foreground/60">All consultations are end-to-end encrypted and HIPAA-compliant.</p>
</div>
</div>
</motion.div>
<motion.div
initial={{ opacity: 0, scale: 0.9 }}
whileInView={{ opacity: 1, scale: 1 }}
transition={{ duration: 0.8 }}
className="flex-1"
>
<div className="relative">
<div className="absolute inset-0 bg-primary/10 rounded-3xl blur-3xl transform rotate-3" />
<div className="relative glass aspect-video rounded-3xl overflow-hidden border-white/5 shadow-2xl">
<div className="bg-background/80 p-2 border-b border-white/5 flex items-center gap-2">
<div className="w-3 h-3 rounded-full bg-red-400" />
<div className="w-3 h-3 rounded-full bg-yellow-400" />
<div className="w-3 h-3 rounded-full bg-green-400" />
<div className="ml-4 h-5 w-1/3 bg-white/5 rounded-full" />
</div>
<div className="h-full w-full bg-gradient-to-br from-zinc-900 to-black p-8 flex items-center justify-center relative">
<div className="absolute inset-0 opacity-10">
<Globe className="w-full h-full text-white" />
</div>
<div className="text-center space-y-4">
<div className="w-20 h-20 rounded-full glass mx-auto flex items-center justify-center border-primary/30">
<Video className="w-8 h-8 text-primary animate-pulse" />
</div>
<div className="space-y-2">
<div className="h-2 w-32 bg-white/20 rounded-full mx-auto" />
<div className="h-2 w-24 bg-white/10 rounded-full mx-auto" />
</div>
</div>
{/* Floating HUD Elements */}
<div className="absolute top-12 right-12 glass p-4 rounded-xl border-accent/20">
<div className="flex items-center gap-3">
<div className="w-2 h-2 rounded-full bg-accent animate-ping" />
<span className="text-[10px] font-bold uppercase tracking-widest text-accent">Active Sync</span>
</div>
</div>
</div>
</div>
</div>
</motion.div>
</div>
</div>
</section>
);
}