import { Server, Code, Cpu, Terminal, FlaskConical, Link2 } from 'lucide-react'; const tools = [ { icon: Server, text: 'REST API', color: 'text-cyan-400' }, { icon: Code, text: 'TypeScript SDK', color: 'text-blue-400' }, { icon: Cpu, text: 'MCP Server', color: 'text-purple-400' }, { icon: Terminal, text: 'CLI', color: 'text-green-400' }, { icon: FlaskConical, text: 'Banatie Lab', color: 'text-orange-400' }, { icon: Link2, text: 'Prompt URLs', color: 'text-cyan-400', highlight: true }, ]; export function IntegrationsSection() { return (

Works with your tools

Use what fits your workflow. All methods, same capabilities.

{tools.map((tool, i) => (
{tool.text}
))}

Banatie Lab — Official web interface for Banatie API. Generate images, build flows, browse your gallery, and explore all capabilities with ready-to-use code snippets.

Perfect for Claude Code, Cursor, and any AI-powered workflow.

); }