mirror of
https://git.hmsn.ink/kospo/svcm/dmz.git
synced 2026-03-20 18:03:33 +09:00
first
This commit is contained in:
98
src/data/apps/saas-billing.ts
Normal file
98
src/data/apps/saas-billing.ts
Normal file
@@ -0,0 +1,98 @@
|
||||
export const plans = [
|
||||
{
|
||||
id: 'starter',
|
||||
name: 'Vuero Starter',
|
||||
slogan: 'Plan for starters',
|
||||
intro:
|
||||
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Utilitatis causa amicitia est quaesita.',
|
||||
summary:
|
||||
'Vuero has incredible features and each plan perfectly adapts to your company, wether it is a small business or a bigger one. Vuero can also scale with you, as your business grows.',
|
||||
icon: '/images/logos/logo/logo.svg',
|
||||
logo: {
|
||||
light: '/images/logos/pricing/vuero-starter.svg',
|
||||
dark: '/images/logos/pricing/vuero-starter-dark.svg',
|
||||
},
|
||||
costs: {
|
||||
monthly: '$45',
|
||||
yearly: '$530',
|
||||
},
|
||||
limits: {
|
||||
seats: '3',
|
||||
projects: '20',
|
||||
storage: '20GB',
|
||||
addons: '1',
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'pro',
|
||||
name: 'Vuero Pro',
|
||||
slogan: 'For professionals',
|
||||
intro:
|
||||
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Utilitatis causa amicitia est quaesita.',
|
||||
summary:
|
||||
'Vuero has incredible features and each plan perfectly adapts to your company, wether it is a small business or a bigger one. Vuero can also scale with you, as your business grows.',
|
||||
icon: '/images/logos/logo/logo-secondary.svg',
|
||||
logo: {
|
||||
light: '/images/logos/pricing/vuero-pro.svg',
|
||||
dark: '/images/logos/pricing/vuero-pro-dark.svg',
|
||||
},
|
||||
costs: {
|
||||
monthly: '$99',
|
||||
yearly: '$1080',
|
||||
},
|
||||
limits: {
|
||||
seats: '8',
|
||||
projects: '150',
|
||||
storage: '100GB',
|
||||
addons: '3',
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'business',
|
||||
name: 'Vuero Business',
|
||||
slogan: 'For serious people',
|
||||
intro:
|
||||
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Utilitatis causa amicitia est quaesita.',
|
||||
summary:
|
||||
'Vuero has incredible features and each plan perfectly adapts to your company, wether it is a small business or a bigger one. Vuero can also scale with you, as your business grows.',
|
||||
icon: '/images/logos/logo/logo-accent.svg',
|
||||
logo: {
|
||||
light: '/images/logos/pricing/vuero-business.svg',
|
||||
dark: '/images/logos/pricing/vuero-business-dark.svg',
|
||||
},
|
||||
costs: {
|
||||
monthly: '$149',
|
||||
yearly: '$1590',
|
||||
},
|
||||
limits: {
|
||||
seats: '20',
|
||||
projects: 'Unlimited',
|
||||
storage: '500GB',
|
||||
addons: '5',
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'enterprise',
|
||||
name: 'Vuero Enterprise',
|
||||
slogan: 'For big companies',
|
||||
intro:
|
||||
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Utilitatis causa amicitia est quaesita.',
|
||||
summary:
|
||||
'Vuero has incredible features and each plan perfectly adapts to your company, wether it is a small business or a bigger one. Vuero can also scale with you, as your business grows.',
|
||||
icon: '/images/logos/logo/logo-platinum.svg',
|
||||
logo: {
|
||||
light: '/images/logos/pricing/vuero-enterprise.svg',
|
||||
dark: '/images/logos/pricing/vuero-enterprise-dark.svg',
|
||||
},
|
||||
costs: {
|
||||
monthly: '$199',
|
||||
yearly: '$2230',
|
||||
},
|
||||
limits: {
|
||||
seats: '40',
|
||||
projects: 'Unlimited',
|
||||
storage: 'Unlimited',
|
||||
addons: 'Unlimited',
|
||||
},
|
||||
},
|
||||
]
|
||||
Reference in New Issue
Block a user