--- // Pricing section const tiers = [ { name: 'Free', price: '$0', period: 'forever', features: [ '5 friends maximum', 'Basic text messaging', 'Subdomain identity', '100 MB storage', 'Community support', ], cta: 'Get Started', highlight: false, }, { name: 'Premium', price: '$100', period: 'per year', features: [ 'Blockchain .aethex domain (NFT)', 'Unlimited friends', 'HD voice & video (1080p)', '10 GB storage', 'Priority support', 'Custom profile branding', ], cta: 'Go Premium', highlight: true, }, { name: 'Enterprise', price: 'Custom', period: 'contact us', features: [ 'Everything in Premium', 'White-label platform', 'Custom domain', 'Unlimited storage', '99.9% SLA guarantee', 'Dedicated account manager', ], cta: 'Contact Sales', highlight: false, }, ]; --- Choose Your Tier Start free, upgrade when you're ready. {tiers.map(tier => ( {tier.highlight && Most Popular} {tier.name} {tier.price} /{tier.period} {tier.features.map(feature => ( ✓ {feature} ))} {tier.cta} ))}
Start free, upgrade when you're ready.