import { BadgeCheck, CircleDollarSign, Code, Layers, Plug, ShieldCheck, UserRoundX, Workflow, Zap, } from "lucide-react"; import { FadeIn } from "./fade-in"; const benefits = [ { title: "No Signup", description: "Start instantly, no accounts or emails required.", icon: UserRoundX, }, { title: "No Uploads", description: "Your files stay on your server. Nothing leaves your network.", icon: ShieldCheck, }, { title: "Forever Free", description: "All tools, no trials, no paywalls. Open source.", icon: CircleDollarSign, }, { title: "No Limits", description: "Use as much as you want, no hidden caps.", icon: BadgeCheck, }, { title: "Batch Processing", description: "Handle unlimited images in one go.", icon: Layers, }, { title: "Lightning Fast", description: "Powered by Sharp. Process images instantly.", icon: Zap, }, { title: "Open Source", description: "AGPL-3.0 licensed. Inspect every line of code.", icon: Code, }, { title: "REST API", description: "Every tool accessible via HTTP. Full OpenAPI docs.", icon: Plug, }, { title: "Pipeline Automation", description: "Chain tools together. Automate your workflows.", icon: Workflow, }, ]; export function WhyChoose() { return (

Why choose SnapOtter?

{benefits.map((benefit, i) => (

{benefit.title}

{benefit.description}

))}
); }