-
Notifications
You must be signed in to change notification settings - Fork 4
/
packages.ts
54 lines (51 loc) · 1.4 KB
/
packages.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
type Perk = {
name: string;
description?: string;
};
type Package = {
// when changing a package's id, make sure to update the `Package` enum in prisma/schema.prisma
id: "STARTER" | "MAIN" | "MEGA";
name: string;
price: number;
perks: boolean[];
};
export const perks: Perk[] = [
{
name: "Soladex.io Review",
},
{
name: "Feedback",
description:
"Our signature review and feedback from our team of power users! 2 weeks of community deep diving united into one final document of improvements and feature requests to take your protocol to the next level",
},
{
name: "Extended Feedback",
description:
"Extended Feedback for 3 months! Our users continue giving feedback and your team can expect high usage and responsiveness from our dedicated power user team",
},
{
name: "AMA",
description:
"AMA with Whale's Friend. A one-on-one interview with Solana's OG influencer, delivered as a YouTube video for high visibility and easy-to-cut sections of interest for your marketing team",
},
];
export const packages: Package[] = [
{
id: "STARTER",
name: "Starter Package",
perks: [true, true, false, false],
price: 1000,
},
{
id: "MAIN",
name: "The Main Event",
perks: [true, true, true, false],
price: 2500,
},
{
id: "MEGA",
name: "Mega Package",
perks: [true, true, true, true],
price: 3500,
},
];