forked from akash-network/console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplans.ts
More file actions
32 lines (31 loc) · 664 Bytes
/
plans.ts
File metadata and controls
32 lines (31 loc) · 664 Bytes
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
export type PlanCode = "COMMUNITY" | "STARTER" | "ADVANCED";
export interface IPlan {
name: string;
code: PlanCode;
summary: string;
monthlyPrice: number;
yearlyPrice: number;
}
export const plans: IPlan[] = [
{
name: "Community",
code: "COMMUNITY",
summary: "Get access to free features!",
monthlyPrice: 0,
yearlyPrice: 0
},
{
name: "Starter",
code: "STARTER",
summary: "Small plan for a little bit more!",
monthlyPrice: 9,
yearlyPrice: 7 * 12
},
{
name: "Advanced",
code: "ADVANCED",
summary: "Best for advanced users who need more!",
monthlyPrice: 39,
yearlyPrice: 29 * 12
}
];