import { Check } from "lucide-react"; import { FadeIn } from "./fade-in"; const freePlan = { name: "Open Source", price: "Free", subtitle: "For everyone. Forever.", features: [ "All 40+ image processing tools", "Unlimited usage, no hidden caps", "Full REST API with OpenAPI docs", "Pipeline automation", "Batch processing (unlimited files)", "14 local AI models included", "Self-host on any infrastructure", "Docker, Kubernetes, bare metal", "ARM and x86 support", "Air-gapped and offline ready", "Multi-user with team permissions", "Audit logging", "Community support via GitHub", "All updates included", "AGPL-3.0 licensed", ], cta: "Get Started Free", href: "https://github.com/ashim-hq/ashim", external: true, }; const enterprisePlan = { name: "Enterprise", price: "Custom", subtitle: "For organizations that need more.", features: [ "Everything in Open Source", "Commercial license (no AGPL obligations)", "Proprietary use in closed-source products", "Unlimited users and devices", "Priority email and video support", "Dedicated deployment assistance", "Custom integrations and workflows", "Early access to new features and updates", "Flexible licensing terms for your needs", "SLA and uptime guarantees", "Security review and compliance documentation", "OEM and white-label options", ], cta: "Contact Sales", href: "/contact", external: false, }; export function Pricing() { return (

Pricing

Free for everyone. Enterprise when you need it.

SnapOtter is fully functional and free. No trials, no feature gates, no time limits. Enterprise licensing is available for organizations that need commercial terms.

{freePlan.subtitle}

{freePlan.name}

{freePlan.price}

    {freePlan.features.map((feature) => (
  • {feature}
  • ))}
{freePlan.cta} →

{enterprisePlan.subtitle}

{enterprisePlan.name}

{enterprisePlan.price}

    {enterprisePlan.features.map((feature) => (
  • {feature}
  • ))}
{enterprisePlan.cta} →
); }