import { motion } from 'motion/react'; import { Zap, Brain, Lock, Clock, BarChart3, Globe } from 'lucide-react'; const features = [ { icon: Brain, title: 'AI-Powered Detection', description: 'Advanced neural networks trained on millions of samples to identify even the most sophisticated deepfakes.', color: 'from-blue-500 to-cyan-500', }, { icon: Zap, title: 'Real-Time Analysis', description: 'Process videos and images in seconds with our optimized detection algorithms for instant results.', color: 'from-purple-500 to-pink-500', }, { icon: Lock, title: 'Secure & Private', description: 'Your content is processed with end-to-end encryption and automatically deleted after analysis.', color: 'from-green-500 to-emerald-500', }, { icon: Clock, title: 'Batch Processing', description: 'Upload and analyze multiple files simultaneously to save time and streamline your workflow.', color: 'from-orange-500 to-red-500', }, { icon: BarChart3, title: 'Detailed Reports', description: 'Comprehensive analysis with confidence scores, manipulation indicators, and visual heatmaps.', color: 'from-indigo-500 to-purple-500', }, { icon: Globe, title: 'API Integration', description: 'Seamlessly integrate deepfake detection into your existing platforms with our RESTful API.', color: 'from-teal-500 to-blue-500', }, ]; export function Features() { return (

Powerful Features for Complete Protection

Everything you need to detect, analyze, and verify the authenticity of digital media content.

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

{feature.title}

{feature.description}

))}
); }