-
Notifications
You must be signed in to change notification settings - Fork 5
/
content.js
150 lines (146 loc) · 3.13 KB
/
content.js
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
import ExternalLinkIcon from "./public/images/externalLink.svg";
import Ellipsis from "./public/images/ellipsis.svg";
export const projectTypes = [
{
name: "Open Source Dev 1st time Grantees",
funding: "$0-$25k",
stream: "Developer Grants",
color: "#9f7aea",
icon: <Ellipsis />,
},
{
name: "Open Source Dev Repeat Grantees",
funding: "$25k-$250k",
stream: "Developer Grants",
color: "#9f7aea",
icon: <Ellipsis />,
},
{
name: "Stacks Community Builder Grant",
funding: "$0-$10k",
stream: "Community Grants",
color: "#ed8936",
icon: <Ellipsis />,
},
{
name: "Stacks Education Grant",
funding: "$0-$10k",
stream: "Community Grants",
color: "#ed8936",
icon: <Ellipsis />,
},
{
name: "Stacks Event Grant",
funding: "$0-$10k",
stream: "Community Grants",
color: "#ed8936",
icon: <Ellipsis />,
},
{
name: "Stacks Chapter Grant",
funding: "Varies",
stream: "Community Grants",
color: "#ed8936",
icon: <Ellipsis />,
},
{
name: "Stacks Foundation Resident Program",
funding: "Varies",
stream: "Advanced Support",
color: "#48bb78",
icon: <Ellipsis />,
},
{
name: "Stacks Foundation Direct Investment",
funding: "Varies",
stream: "Advanced Support",
color: "#48bb78",
icon: <Ellipsis />,
},
{
name: "ALEX Lab Foundation Grant",
funding: "Varies",
stream: "Ecosystem Partner Grant",
color: "#0bc5ea",
icon: <Ellipsis />,
},
];
export const projectTracks = [
{
name: "Stacks Protocol",
list: [
"Blockchain Improvements, AppChains, HyperChains, Nodes, Mining, etc",
],
},
{
name: "Stacks Interface",
list: [
"APIs, Indexers, Decentralized Identification, Wallets, Explorers, etc.",
],
},
{
name: "Stacks dApps & Clarity",
list: [
"Clarity Improvements, SIP Development, Smart Contract Templates, dApps, etc.",
],
},
{
name: "Stacks Education & Community",
list: [
"Documentation, Tutorials, Workshops, Governance, Education, Content Creation, etc.",
],
},
{
name: "Stacks Developer Experience",
list: [
"Tooling, Software Development Kits, Libraries, Faucets, Sandboxes, etc.",
],
},
{
name: "Stacks User Experience",
list: [
"UX/UI Research, Speculative Design Studies, Prototypes, Component Libraries, etc.",
],
},
{
name: "Cross Chain & Off-Chain",
list: [
"Decentralized Storage Integrations, Oracles & Bridges, EVM Integrations, etc.",
],
},
{
name: "Bitcoin Utility via Stacks",
list: [
"DLC-Clarity Explorations, BTC-STX Wallets",
"BTC-Native DeFi (using Stacks), etc.",
],
},
];
export const projectGoals = [
{
name: "Create New Technology",
},
{
name: "Integrate Between Technologies",
},
{
name: "Improve Existing Technologies",
},
{
name: "Strengthen Community",
},
];
export const projectAudience = [
{
name: "Developers",
},
{
name: "End Users (Consumer)",
},
{
name: "Miners & Validators",
},
{
name: "End Users (Institutional)",
},
];