-
Notifications
You must be signed in to change notification settings - Fork 79
/
pricing-tier.ts
45 lines (44 loc) · 1.48 KB
/
pricing-tier.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
export interface Tier {
name: string;
id: 'starter' | 'pro' | 'advanced';
icon: string;
description: string;
features: string[];
featured: boolean;
priceId: Record<string, string>;
}
export const PricingTier: Tier[] = [
{
name: 'Starter',
id: 'starter',
icon: '/assets/icons/price-tiers/free-icon.svg',
description: 'Ideal for individuals who want to get started with simple design tasks.',
features: ['1 workspace', 'Limited collaboration', 'Export to PNG and SVG'],
featured: false,
priceId: { month: 'pri_01hsxyh9txq4rzbrhbyngkhy46', year: 'pri_01hsxyh9txq4rzbrhbyngkhy46' },
},
{
name: 'Pro',
id: 'pro',
icon: '/assets/icons/price-tiers/basic-icon.svg',
description: 'Enhanced design tools for scaling teams who need more flexibility.',
features: ['Integrations', 'Unlimited workspaces', 'Advanced editing tools', 'Everything in Starter'],
featured: true,
priceId: { month: 'pri_01hsxycme6m95sejkz7sbz5e9g', year: 'pri_01hsxyeb2bmrg618bzwcwvdd6q' },
},
{
name: 'Advanced',
id: 'advanced',
icon: '/assets/icons/price-tiers/pro-icon.svg',
description: 'Powerful tools designed for extensive collaboration and customization.',
features: [
'Single sign on (SSO)',
'Advanced version control',
'Assets library',
'Guest accounts',
'Everything in Pro',
],
featured: false,
priceId: { month: 'pri_01hsxyff091kyc9rjzx7zm6yqh', year: 'pri_01hsxyfysbzf90tkh2wqbfxwa5' },
},
];