mirror of
https://github.com/tabler/tabler.git
synced 2026-08-13 14:52:22 +04:00
29 lines
751 B
TypeScript
29 lines
751 B
TypeScript
export const pricingPlansPersonal = [
|
|
{
|
|
name: 'Free',
|
|
featured: false,
|
|
price: 99,
|
|
features: ['Feature 1', 'Feature 2', 'Feature 3', 'Feature 4', 'Feature 5']
|
|
},
|
|
{
|
|
name: 'All features',
|
|
featured: true,
|
|
price: 199,
|
|
features: ['Feature 1', 'Feature 2', 'Feature 3', 'Feature 4', 'Feature 5']
|
|
},
|
|
{
|
|
name: 'Other',
|
|
featured: false,
|
|
price: 99,
|
|
features: ['Feature 1', 'Feature 2', 'Feature 3', 'Feature 4', 'Feature 5']
|
|
}
|
|
]
|
|
|
|
export const pricingPlanTeam = {
|
|
name: 'Team License',
|
|
description: 'Get Marketing + Application UI for you and your team',
|
|
featured: false,
|
|
price: 599,
|
|
features: ['Up to 5 developers', 'All marketing + app components', 'Figma UI Kit', 'Lifetime free updates']
|
|
}
|