const BASE_CHECKOUT = 'https://discoplugin.com/checkout/?add-to-cart='; const pricingPlans = [ { name: '1 Site', sub: 'Perfect for a single store', yearlyPrice: 69, originalYearly: 83, lifetimePrice: 106, originalLifetime: 265, popular: false, checkoutUrl: { yearly: BASE_CHECKOUT + '893', lifetime: BASE_CHECKOUT + '896', }, features: [ '5 Discount types', 'All Product-level Rules', 'Advanced BOGO (1+1 deal)', 'Bulk quantity discounts', 'Variable + wholesale pricing', 'Multi-currency support', 'Campaign analytics dashboard', 'Priority support', ], renewNote: 'Renews at same price after 1 year', renewColor: 'disco:text-red-500', }, { name: '5 Sites', sub: 'For agencies & multi-store', yearlyPrice: 95, originalYearly: 119, lifetimePrice: 153, originalLifetime: 383, popular: true, checkoutUrl: { yearly: BASE_CHECKOUT + '894', lifetime: BASE_CHECKOUT + '897', }, features: [ '5 Site licenses', 'All Pro features included', 'Advanced BOGO (1+1 deal)', 'Bulk quantity discounts', 'Variable + wholesale pricing', 'Multi-currency support', 'ADI supported conditions', 'Campaign analytics dashboard', 'Priority 1-on-1 support', 'White-label support (addon)', ], renewNote: 'Lifetime free after 1 year', renewColor: 'disco:text-emerald-600', }, { name: '10 Sites', sub: 'For large agencies', yearlyPrice: 124, originalYearly: 155, lifetimePrice: 199, originalLifetime: 498, popular: false, checkoutUrl: { yearly: BASE_CHECKOUT + '895', lifetime: BASE_CHECKOUT + '898', }, features: [ '10 Site licenses', 'All Pro features included', 'Advanced BOGO (1+1 deal)', 'Bulk quantity discounts', 'Variable + wholesale pricing', 'Multi-currency support', 'ADI supported conditions', 'Campaign analytics dashboard', 'Priority 1-on-1 support', 'Get free setup + migration', ], renewNote: 'Lifetime free after 1 year', renewColor: 'disco:text-emerald-600', }, ]; export default pricingPlans;