This commit is contained in:
Tomas Dvorak
2026-05-05 09:48:07 +02:00
parent d854614a87
commit 48c3e15a38
295 changed files with 178381 additions and 1039 deletions
+29 -1
View File
@@ -11,6 +11,34 @@ export const tenantPresets = [
] as const;
export type TenantPreset = (typeof tenantPresets)[number];
export const planCodes = ["starter", "growth", "multi-location"] as const;
export const planCodes = ["starter", "pro", "business"] as const;
export type PlanCode = (typeof planCodes)[number];
export const planCurrencies = ["czk", "usd"] as const;
export type PlanCurrency = (typeof planCurrencies)[number];
export const planCatalog = {
starter: {
name: "Starter",
monthlyUsd: 5,
monthlyCzk: 119,
trialDays: 30,
},
pro: {
name: "Pro",
monthlyUsd: 20,
monthlyCzk: 499,
trialDays: 30,
},
business: {
name: "Business",
monthlyUsd: 50,
monthlyCzk: 1199,
trialDays: 30,
},
} as const satisfies Record<PlanCode, {
name: string;
monthlyUsd: number;
monthlyCzk: number;
trialDays: number;
}>;