pricing.ts 751 B

12345678910111213141516171819202122232425262728
  1. export const pricingPlansPersonal = [
  2. {
  3. name: 'Free',
  4. featured: false,
  5. price: 99,
  6. features: ['Feature 1', 'Feature 2', 'Feature 3', 'Feature 4', 'Feature 5']
  7. },
  8. {
  9. name: 'All features',
  10. featured: true,
  11. price: 199,
  12. features: ['Feature 1', 'Feature 2', 'Feature 3', 'Feature 4', 'Feature 5']
  13. },
  14. {
  15. name: 'Other',
  16. featured: false,
  17. price: 99,
  18. features: ['Feature 1', 'Feature 2', 'Feature 3', 'Feature 4', 'Feature 5']
  19. }
  20. ]
  21. export const pricingPlanTeam = {
  22. name: 'Team License',
  23. description: 'Get Marketing + Application UI for you and your team',
  24. featured: false,
  25. price: 599,
  26. features: ['Up to 5 developers', 'All marketing + app components', 'Figma UI Kit', 'Lifetime free updates']
  27. }