Hobby
$0/mo
For side projects and prototypes.
- 1 project
- Community support
- 1k events / mo
Pro
Popular$24/mo
For teams shipping to production.
- Unlimited projects
- Priority support
- 1M events / mo
- SSO & audit logs
Enterprise
Custom
For organizations at scale.
- SLA & uptime guarantee
- Dedicated CSM
- On-prem option
Spotlight Card
tsx
import { SpotlightCard } from "@/components/godui/spotlight-card";import { Check } from "lucide-react";const features = ["Unlimited projects", "Priority support", "1M events / mo", "SSO & audit logs"];export function PricingCard() {return ( <SpotlightCard className="flex max-w-xs flex-col p-6"> <h3 className="text-sm font-semibold text-foreground">Pro</h3> <div className="mt-2 flex items-baseline gap-1"> <span className="text-3xl font-semibold tabular-nums text-foreground">$24</span> <span className="text-sm text-muted-foreground">/mo</span> </div> <ul className="mt-5 space-y-2.5"> {features.map((f) => ( <li key={f} className="flex items-center gap-2 text-sm text-foreground"> <Check className="size-4 text-primary" strokeWidth={2.5} /> {f} </li> ))} </ul> <button className="mt-6 w-full rounded-lg bg-primary py-2 text-sm font-semibold text-primary-foreground">Start free trial</button> </SpotlightCard>);}