| 1 |
const BASE_CHECKOUT = 'https://discoplugin.com/checkout/?add-to-cart='; |
| 2 |
|
| 3 |
const pricingPlans = [ |
| 4 |
{ |
| 5 |
name: '1 Site', |
| 6 |
sub: 'Perfect for a single store', |
| 7 |
yearlyPrice: 69, |
| 8 |
originalYearly: 83, |
| 9 |
lifetimePrice: 106, |
| 10 |
originalLifetime: 265, |
| 11 |
popular: false, |
| 12 |
checkoutUrl: { |
| 13 |
yearly: BASE_CHECKOUT + '893', |
| 14 |
lifetime: BASE_CHECKOUT + '896', |
| 15 |
}, |
| 16 |
features: [ |
| 17 |
'5 Discount types', |
| 18 |
'All Product-level Rules', |
| 19 |
'Advanced BOGO (1+1 deal)', |
| 20 |
'Bulk quantity discounts', |
| 21 |
'Variable + wholesale pricing', |
| 22 |
'Multi-currency support', |
| 23 |
'Campaign analytics dashboard', |
| 24 |
'Priority support', |
| 25 |
], |
| 26 |
renewNote: 'Renews at same price after 1 year', |
| 27 |
renewColor: 'disco:text-red-500', |
| 28 |
}, |
| 29 |
{ |
| 30 |
name: '5 Sites', |
| 31 |
sub: 'For agencies & multi-store', |
| 32 |
yearlyPrice: 95, |
| 33 |
originalYearly: 119, |
| 34 |
lifetimePrice: 153, |
| 35 |
originalLifetime: 383, |
| 36 |
popular: true, |
| 37 |
checkoutUrl: { |
| 38 |
yearly: BASE_CHECKOUT + '894', |
| 39 |
lifetime: BASE_CHECKOUT + '897', |
| 40 |
}, |
| 41 |
features: [ |
| 42 |
'5 Site licenses', |
| 43 |
'All Pro features included', |
| 44 |
'Advanced BOGO (1+1 deal)', |
| 45 |
'Bulk quantity discounts', |
| 46 |
'Variable + wholesale pricing', |
| 47 |
'Multi-currency support', |
| 48 |
'ADI supported conditions', |
| 49 |
'Campaign analytics dashboard', |
| 50 |
'Priority 1-on-1 support', |
| 51 |
'White-label support (addon)', |
| 52 |
], |
| 53 |
renewNote: 'Lifetime free after 1 year', |
| 54 |
renewColor: 'disco:text-emerald-600', |
| 55 |
}, |
| 56 |
{ |
| 57 |
name: '10 Sites', |
| 58 |
sub: 'For large agencies', |
| 59 |
yearlyPrice: 124, |
| 60 |
originalYearly: 155, |
| 61 |
lifetimePrice: 199, |
| 62 |
originalLifetime: 498, |
| 63 |
popular: false, |
| 64 |
checkoutUrl: { |
| 65 |
yearly: BASE_CHECKOUT + '895', |
| 66 |
lifetime: BASE_CHECKOUT + '898', |
| 67 |
}, |
| 68 |
features: [ |
| 69 |
'10 Site licenses', |
| 70 |
'All Pro features included', |
| 71 |
'Advanced BOGO (1+1 deal)', |
| 72 |
'Bulk quantity discounts', |
| 73 |
'Variable + wholesale pricing', |
| 74 |
'Multi-currency support', |
| 75 |
'ADI supported conditions', |
| 76 |
'Campaign analytics dashboard', |
| 77 |
'Priority 1-on-1 support', |
| 78 |
'Get free setup + migration', |
| 79 |
], |
| 80 |
renewNote: 'Lifetime free after 1 year', |
| 81 |
renewColor: 'disco:text-emerald-600', |
| 82 |
}, |
| 83 |
]; |
| 84 |
|
| 85 |
export default pricingPlans; |
| 86 |
|