Phase 3 - credts, usage, plans app pages #Migrations

This commit is contained in:
IGNY8 VPS (Salman)
2026-01-06 21:28:13 +00:00
parent cb8e747387
commit 9ca048fb9d
37 changed files with 9328 additions and 1149 deletions

View File

@@ -24,7 +24,7 @@ interface Plan {
max_users: number;
max_sites: number;
max_keywords: number;
monthly_word_count_limit: number;
max_ahrefs_queries: number;
included_credits: number;
features: string[];
}
@@ -260,8 +260,7 @@ export default function SignUpFormUnified({
features.push(`${plan.max_sites} ${plan.max_sites === 1 ? 'Site' : 'Sites'}`);
features.push(`${plan.max_users} ${plan.max_users === 1 ? 'User' : 'Users'}`);
features.push(`${formatNumber(plan.max_keywords || 0)} Keywords`);
features.push(`${formatNumber(plan.monthly_word_count_limit || 0)} Words/Month`);
features.push(`${formatNumber(plan.included_credits || 0)} AI Credits`);
features.push(`${formatNumber(plan.included_credits || 0)} Credits/Month`);
return features;
};