import { Badge } from "@/registry/ui/badge" import { Button } from "@/registry/ui/button" import { Card, CardContent, CardFooter, CardHeader, CardTitle, } from "@/registry/ui/card" const plans = [ { name: "Hobby", price: "$0", note: "for personal projects", features: ["1 project", "10k requests / month", "Community support"], featured: false, }, { name: "Team", price: "$24", note: "per user / month", features: ["Unlimited projects", "5M requests / month", "Email support", "Audit log"], featured: true, }, { name: "Enterprise", price: "Custom", note: "billed annually", features: ["Everything in Team", "SSO and SCIM", "99.9% uptime SLA", "Dedicated support"], featured: false, }, ] export default function Pricing() { return (

Pricing that stays out of the way

Start free. Move up when your traffic does, not before.

{plans.map((plan) => ( {plan.name} {plan.featured ? Popular : null}

{plan.price}

{plan.note}

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