'use client' import { motion } from 'framer-motion' import { Search, Scissors, Bot, Archive, FileText, Download, Terminal } from 'lucide-react' const FEATURES = [ { icon: Search, title: 'Smart Extraction', description: 'Fetches llms.txt, llms-full.txt, and install.md from any documentation site.', }, { icon: Terminal, title: 'install.md Support', description: 'Detects and extracts LLM-executable installation instructions automatically.', }, { icon: Bot, title: 'Agent-Ready Output', description: 'Includes AGENT-GUIDE.md with instructions for AI assistants like Claude and ChatGPT.', }, { icon: Archive, title: 'One-Click Download', description: 'Download individual files or everything bundled as a convenient ZIP archive.', }, ] export default function Features() { return (
FEATURES Simple & Effective Everything you need to get documentation ready for AI agents
{FEATURES.map((feature, index) => (

{feature.title}

{feature.description}

))}
) }