import { Button } from "@/registry/ui/button" import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow, } from "@/registry/ui/table" const rows = [ ["Projects", "1", "Unlimited", "Unlimited"], ["Requests / month", "10k", "5M", "Custom"], ["Team members", "1", "Up to 25", "Unlimited"], ["Audit log", "—", "90 days", "Unbounded"], ["SSO and SCIM", "—", "—", "Included"], ["Support", "Community", "Email", "Dedicated"], ] export default function PricingTable() { return (

Compare plans

Every plan includes the API, the dashboard, and the CLI.

Hobby Team Enterprise Price $0 $24 / user Custom {rows.map(([label, ...values]) => ( {label} {values.map((value, index) => ( {value} ))} ))}
) }