add: 4x pro plan

This commit is contained in:
2026-03-22 05:33:39 +04:00
parent 014976027b
commit 1049677f19
7 changed files with 86 additions and 34 deletions
+6 -1
View File
@@ -1,4 +1,4 @@
export type Plan = "free" | "pro" | "lifetime";
export type Plan = "free" | "pro" | "pro4x" | "lifetime";
export interface PlanLimits {
maxMonitors: number;
@@ -17,6 +17,11 @@ const PLANS: Record<Plan, PlanLimits> = {
minIntervalS: 2,
maxRegions: 99,
},
pro4x: {
maxMonitors: 800,
minIntervalS: 2,
maxRegions: 99,
},
lifetime: {
maxMonitors: 200,
minIntervalS: 2,