import React, { useState } from 'react'; import { motion } from 'framer-motion'; import { Shield, Lock, Scale, Zap, Globe, Award, ChevronRight } from 'lucide-react'; import { Button } from '@/components/ui/button'; import { AuthModal } from './auth/AuthModal'; import '../styles/luxury.css'; export function LandingPage() { const [showAuth, setShowAuth] = useState(false); const features = [ { icon: Shield, title: "Cryptographic Security", description: "Military-grade encryption for all legal documents and evidence chains" }, { icon: Scale, title: "Cook County Compliant", description: "Built to exceed Illinois judicial standards and requirements" }, { icon: Zap, title: "Real-Time Processing", description: "Instant blockchain verification with sub-second latency" }, { icon: Globe, title: "Global Accessibility", description: "Access your cases from anywhere with enterprise-grade security" } ]; const stats = [ { value: "99.99%", label: "Uptime SLA" }, { value: "256-bit", label: "AES Encryption" }, { value: "<100ms", label: "API Latency" }, { value: "SOC 2", label: "Certified" } ]; return (
{/* Premium Navigation */} {/* Hero Section */}
Trusted by 10,000+ Legal Professionals

Legal Evidence Redefined

ChittyChain delivers cryptographically secure case management with immutable evidence chains, designed for the modern legal professional.

{/* Floating Elements */}
{/* Stats Section */}
{stats.map((stat, index) => (
{stat.value}
{stat.label}
))}
{/* Features Grid */}

Enterprise-Grade Features

Built for the most demanding legal environments

{features.map((feature, index) => (

{feature.title}

{feature.description}

))}
{/* CTA Section */}

Ready to Transform Your Practice?

Join thousands of legal professionals using ChittyChain

{/* Auth Modal */} setShowAuth(false)} /> {/* Premium Footer */}
); }