import { motion } from 'motion/react'; import { TrendingUp, Shield, Clock, Users } from 'lucide-react'; const stats = [ { icon: Shield, value: '99.7%', label: 'Detection Accuracy', description: 'Industry-leading precision in identifying deepfakes', }, { icon: Users, value: '250+', label: 'Active Users', description: 'Organizations trusting our platform', }, { icon: Clock, value: '5K+', label: 'Files Analyzed', description: 'Images scanned to date', }, ]; export function Statistics() { return (
{/* Background decoration */}

Proven Results at Scale

Numbers that speak to our commitment to excellence and innovation.

{stats.map((stat, index) => (
{stat.value}
{stat.label}
{stat.description}
))}
24/7
Support Available
); }