Clean up relay form

This commit is contained in:
Jon Staab
2026-03-27 13:41:01 -07:00
parent 6a2f4a05fb
commit bc45017222
7 changed files with 131 additions and 192 deletions
+8
View File
@@ -31,6 +31,14 @@ export class ApiError extends Error {
export type Plan = Record<string, unknown>
export const PLANS = [
{ id: "free", label: "Free", price: 0, members: "Up to 10", blossom: false, livekit: false },
{ id: "basic", label: "Basic", price: 10_000, members: "Up to 100", blossom: true, livekit: true },
{ id: "growth", label: "Growth", price: 50_000, members: "Unlimited", blossom: true, livekit: true },
] as const
export type PlanId = (typeof PLANS)[number]["id"]
export type Relay = {
id: string
tenant: string