import { motion } from 'motion/react'; import { Upload, Scan, FileCheck, Download } from 'lucide-react'; const steps = [ { icon: Upload, title: 'Upload Media', description: 'Upload your video or image files securely through our platform or API.', step: '01', }, { icon: Scan, title: 'AI Analysis', description: 'Our advanced AI models analyze facial features, artifacts, and inconsistencies.', step: '02', }, { icon: FileCheck, title: 'Get Results', description: 'Receive detailed reports with confidence scores and manipulation indicators.', step: '03', }, { icon: Download, title: 'Export & Share', description: 'Download reports, export data, and share results with your team.', step: '04', }, ]; export function HowItWorks() { return (

How It Works

Simple, fast, and accurate deepfake detection in just four easy steps.

{/* Connection lines for desktop */}
{steps.map((step, index) => (
{step.step}

{step.title}

{step.description}

))}
Try It Now - It's Free
); }