71 lines
3.0 KiB
TypeScript
71 lines
3.0 KiB
TypeScript
"use client";
|
|
|
|
import { motion } from "framer-motion";
|
|
import DNAHeroBackground from "./components/canvas/DNAHeroBackground";
|
|
import Navbar from "./components/layout/Navbar";
|
|
import AIVoiceSoap from "./components/sections/AIVoiceSoap";
|
|
import AIDiagnosis from "./components/sections/AIDiagnosis";
|
|
import AIPrescription from "./components/sections/AIPrescription";
|
|
import DeviceShowcase from "./components/sections/DeviceShowcase";
|
|
import TelehealthSolutions from "./components/sections/TelehealthSolutions";
|
|
import AppEcosystem from "./components/sections/AppEcosystem";
|
|
import Footer from "./components/layout/Footer";
|
|
import { ArrowRight, Sparkles } from "lucide-react";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="relative min-h-screen">
|
|
<DNAHeroBackground />
|
|
<Navbar />
|
|
|
|
<main className="relative z-10 pt-32">
|
|
{/* Hero Section */}
|
|
<section className="container mx-auto px-6 py-24 min-h-[80vh] flex flex-col items-center justify-center text-center">
|
|
<motion.div
|
|
initial={{ opacity: 0, y: 20 }}
|
|
animate={{ opacity: 1, y: 0 }}
|
|
transition={{ duration: 0.8 }}
|
|
className="space-y-8 max-w-4xl"
|
|
>
|
|
<div className="inline-flex items-center gap-2 px-6 py-3 rounded-full glass border-primary/20 text-primary-light animate-pulse-slow">
|
|
<Sparkles className="w-5 h-5" />
|
|
<span className="text-sm font-bold tracking-widest uppercase">The Future of Healthcare is Here</span>
|
|
</div>
|
|
|
|
<h1 className="text-5xl md:text-8xl font-black tracking-tighter leading-[1.1]">
|
|
Reimagining Life with <br />
|
|
<span className="text-gradient">AI Precision</span>
|
|
</h1>
|
|
|
|
<p className="text-xl text-foreground/60 leading-relaxed max-w-2xl mx-auto">
|
|
Empowering healthcare providers with end-to-end AI intelligence. From voice-transcribed clinical notes to predictive diagnostics and automated prescriptions.
|
|
</p>
|
|
|
|
<div className="flex flex-col sm:flex-row items-center justify-center gap-6 pt-8">
|
|
<button className="w-full sm:w-auto bg-primary hover:bg-primary/80 px-10 py-5 rounded-full font-bold text-lg transition-all transform hover:scale-105 shadow-[0_0_40px_rgba(59,130,246,0.4)] flex items-center justify-center gap-3">
|
|
Experience Skyheal
|
|
<ArrowRight className="w-5 h-5" />
|
|
</button>
|
|
<button className="w-full sm:w-auto glass hover:bg-white/10 px-10 py-5 rounded-full font-bold text-lg transition-all">
|
|
Watch Demo
|
|
</button>
|
|
</div>
|
|
</motion.div>
|
|
</section>
|
|
|
|
{/* AI Service Sections */}
|
|
<div className="space-y-32 pb-32">
|
|
<AIVoiceSoap />
|
|
<DeviceShowcase />
|
|
<AIDiagnosis />
|
|
<TelehealthSolutions />
|
|
<AIPrescription />
|
|
<AppEcosystem />
|
|
</div>
|
|
|
|
<Footer />
|
|
</main>
|
|
</div>
|
|
);
|
|
}
|