import { Check } from "lucide-react"; import { FadeIn } from "./fade-in"; const plans = [ { name: "Free", price: "Free", subtitle: "For everyone", features: [ "All 40+ tools included", "Unlimited usage", "Self-host anywhere", "Community support", "Open source (AGPL-3.0)", ], cta: "Get Started", href: "#how-it-works", highlighted: false, }, { name: "Enterprise", price: "Custom", subtitle: "For organizations", features: [ "Everything in Free", "Commercial license (no AGPL)", "Priority support", "Deployment assistance", "Custom integrations", ], cta: "Contact Us", href: "/contact", highlighted: true, }, ]; export function Pricing() { return (

Simple pricing

Free for everyone. Enterprise support when you need it.

{plans.map((plan, i) => (

{plan.subtitle}

{plan.price}

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