'use client' import { motion } from 'framer-motion' import { Globe, Download, Files, Search, Brain, Rocket } from 'lucide-react' const steps = [ { number: 1, title: 'Paste URL', description: 'Enter any documentation site URL. We detect llms.txt, llms-full.txt, and install.md automatically.', icon: Globe, }, { number: 2, title: 'Extract', description: 'We find and fetch documentation files, then parse them into organized sections with install instructions.', icon: Download, }, { number: 3, title: 'Download', description: 'Get individual markdown files, install.md for AI installation, plus AGENT-GUIDE.md.', icon: Files, }, ] export default function HowItWorks() { return (
{/* Background decoration */}
{/* Section header */}

How it works

Three simple steps to get documentation ready for AI agents.

{/* Steps timeline */}
{/* Connecting line */}
{/* Steps */}
{steps.map((step, index) => { const Icon = step.icon const isEven = index % 2 === 0 return ( {/* Content */}
Step {step.number}

{step.title}

{step.description}

{/* Center icon */}
{/* Number badge */}
{step.number}
{/* Empty space for alternating layout */}
) })}
) }