import { Shield, Zap, FileText } from 'lucide-react'; import SectionBadge from './SectionBadge'; import HLSVideo from './HLSVideo'; const features = [ { icon: Shield, title: 'Security Agent', description: 'Scans for XSS, CSRF, secrets exposure, and 15+ vulnerability categories. Get OWASP-referenced findings with one-click fixes.', stat: '< 30s', statLabel: 'full repo scan', }, { icon: Zap, title: 'Performance Agent', description: 'Detects memory leaks, unnecessary re-renders, bundle bloat, and missing optimizations. Every finding includes before/after code.', stat: '148%', statLabel: 'avg. performance improvement', }, { icon: FileText, title: 'Auto Documentation', description: 'Generates README, component API docs, and architecture overviews from your code. Never write docs from scratch again.', stat: '100%', statLabel: 'documentation coverage', }, ]; export default function FeaturesSection() { return (
{/* Background HLS Video */} {/* Gradient Overlays */}
{/* Content */}

Built for Developers Who
Ship Relentlessly

Four AI agents that keep your codebase clean, secure, and well-documented without slowing you down.

{features.map((feature) => (

{feature.title}

{feature.description}

{feature.stat} {feature.statLabel}
))}
); }