import React from 'react'; const steps = [ { id: '01', title: 'Upload & Ingest', description: 'Drag and drop any file or provide a live URL for immediate spectral processing.', }, { id: '02', title: 'Neural Analysis', description: 'Our proprietary models cross-reference the asset against millions of known AI training sets.', }, { id: '03', title: 'Forensic Report', description: 'Download a certified report detailing every identified marker and confidence level.', }, ]; const HowItWorks = () => { return (

The Verification Workflow

A seamless transition from ingestion to reporting, built for efficiency and legal-grade defensibility.

{steps.map(step => (
{step.id}

{step.title}

{step.description}

))}
); }; export default HowItWorks;