-
Notifications
You must be signed in to change notification settings - Fork 0
/
pricing-tier.ts
66 lines (64 loc) · 2.43 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
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: 'Mobile',
// 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_01j945hntx796kb2m4nzm6qcsj', year: 'pri_01j945jd3tvw25wr8rz74zvh95' },
// },
// {
// name: 'Super',
// 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_01j945kg2f4w8et55vt4f5vk7c', year: 'pri_01j945kzdbkv71rqww053z3gcw' },
// },
// {
// name: 'Premium',
// 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_01j945mx518vzm9t5rc2sedjw5', year: 'pri_01j945nb66s6qen2jxafbbgsbg' },
// },
// ];
export const PricingTier: Tier[] = [
{
name: 'Monthly',
id: 'pro',
icon: '/assets/icons/price-tiers/basic-icon.svg',
description: 'Monthly subscription for quick access to data analytics tools.',
features: ['Access to Data Analytics Tools', 'Filtering and Sorting Features', 'Affordable Pricing'],
featured: false,
priceId: { month: 'pri_01jcwv8233s9j4pwyk4d89f4a0', year: 'pri_01jcwv8233s9j4pwyk4d89f4a0' },
},
{
name: 'Life Time',
id: 'advanced',
icon: '/assets/icons/price-tiers/pro-icon.svg',
description: 'Lifetime access to data analytics tools. Get scrawler source code and data.',
features: ['Access to Data Analytics Tools', 'Filtering and Sorting Features', 'Lifetime access'],
featured: true,
priceId: { month: 'pri_01jcwv8mwnx9kajk9ghnf6wqqe', year: 'pri_01jcwv8mwnx9kajk9ghnf6wqqe' },
},
];