'use client' import { motion } from 'framer-motion' import { Zap, Github, FileText, BookOpen, Layers, FolderOpen, Terminal, FileEdit } from 'lucide-react' import Link from 'next/link' const FOOTER_LINKS = { tools: [ { href: '/', label: 'Extract', icon: Zap }, { href: '/directory', label: 'Directory', icon: FolderOpen }, { href: '/batch', label: 'Batch Processing', icon: Layers }, { href: '/generator', label: 'llms.txt Generator', icon: FileEdit }, { href: '/install-generator', label: 'install.md Generator', icon: Terminal }, ], resources: [ { href: '/docs/', label: 'Documentation', icon: BookOpen }, { href: '/#how-it-works', label: 'How it works' }, { href: '/#features', label: 'Features' }, { href: 'https://llmstxt.org', label: 'llms.txt Standard', external: true }, { href: '/llms.txt', label: 'Our llms.txt', external: true }, ], } export default function Footer() { return ( ) }