import { Button } from '@/components/ui/button'; import SectionBadge from './SectionBadge'; import HLSVideo from './HLSVideo'; const stats = [ { value: '4 agents', label: 'parallel analysis' }, { value: '< 60s', label: 'full repo review' }, { value: '1-click', label: 'PR generation' }, { value: '100%', label: 'ASI-1 powered' }, ]; export default function ReverseChessSection() { return (
{/* Left — Content */}

Paste a Repo URL.
Get a Full Review.

Import any GitHub repository and get a comprehensive multi-agent analysis in seconds. Security vulnerabilities, performance issues, and auto-generated documentation — all delivered as PR-ready fixes.

{stats.map((stat) => (

{stat.value}

{stat.label}

))}
{/* Right — Video */}
); }