Commit 83225004 authored by Mahmoud Aglan's avatar Mahmoud Aglan

Update pricing plans to match new plan structure (Platform % Only / Starter /...

Update pricing plans to match new plan structure (Platform % Only / Starter / Enterprise / Professional)
Co-Authored-By: 's avatarClaude Sonnet 4.6 <noreply@anthropic.com>
parent 2d1d4b4f
...@@ -713,16 +713,18 @@ function initPricingCalc() { ...@@ -713,16 +713,18 @@ function initPricingCalc() {
// Egypt plans // Egypt plans
const plansEG = [ const plansEG = [
{ id: 'small', name: 'حتى ١٠٠ لاعب', monthlyFee: 699, platformPercent: 7.0 }, { id: 'platform-only', name: 'نسبة تشغيل فقط', monthlyFee: 0, platformPercent: 12.0 },
{ id: 'medium', name: '١٠٠-٣٠٠ لاعب', monthlyFee: 1499, platformPercent: 5.0 }, { id: 'starter', name: 'Starter', monthlyFee: 1000, platformPercent: 7.5 },
{ id: 'large', name: '٣٠٠+ لاعب', monthlyFee: 3499, platformPercent: 3.0 }, { id: 'enterprise', name: 'Enterprise', monthlyFee: 3500, platformPercent: 5.0 },
{ id: 'professional', name: 'Professional', monthlyFee: 6500, platformPercent: 3.0 },
]; ];
// Saudi Arabia plans // Saudi Arabia plans (same as EG for now)
const plansSA = [ const plansSA = [
{ id: 'small', name: 'حتى ١٠٠ لاعب', monthlyFee: 299, platformPercent: 5.0 }, { id: 'platform-only', name: 'نسبة تشغيل فقط', monthlyFee: 0, platformPercent: 12.0 },
{ id: 'medium', name: '١٠٠-٣٠٠ لاعب', monthlyFee: 699, platformPercent: 3.5 }, { id: 'starter', name: 'Starter', monthlyFee: 1000, platformPercent: 7.5 },
{ id: 'large', name: '٣٠٠+ لاعب', monthlyFee: 1499, platformPercent: 2.0 }, { id: 'enterprise', name: 'Enterprise', monthlyFee: 3500, platformPercent: 5.0 },
{ id: 'professional', name: 'Professional', monthlyFee: 6500, platformPercent: 3.0 },
]; ];
const isSA = detectedCountry === 'SA'; const isSA = detectedCountry === 'SA';
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment