update: increase pro plan limit

This commit is contained in:
2026-03-21 22:43:04 +04:00
parent 8be0632ea8
commit 859a55d66b
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -6,7 +6,7 @@
const createdDate = new Date(it.account.created_at).toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });
const plan = it.account.plan || 'free';
const planLabel = { free: 'Free', pro: 'Pro', lifetime: 'Lifetime' }[plan] || plan;
const limits = { free: { monitors: 10, interval: '30s' }, pro: { monitors: 128, interval: '2s' }, lifetime: { monitors: 128, interval: '2s' } }[plan] || { monitors: 10, interval: '30s' };
const limits = { free: { monitors: 10, interval: '30s' }, pro: { monitors: 200, interval: '2s' }, lifetime: { monitors: 200, interval: '2s' } }[plan] || { monitors: 10, interval: '30s' };
%>
<main class="max-w-3xl mx-auto px-8 py-10 space-y-8">