forked from otherplane/lisbon-blockchain-week
-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.js
69 lines (65 loc) · 1.27 KB
/
constants.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
export const SUBMIT_EVENT_URL =
process.env.SUBMIT_EVENT_URL ||
'https://docs.google.com/forms/d/e/1FAIpQLSe1ZK-NHycf2ZX4R6DUbKklErE2KyEBnAmsED8BtwBt9XMing/viewform'
export const EVENTS_URL =
process.env.EVENTS_URL ||
'https://raw.githubusercontent.com/otherplane/liscon-week/main/events.csv'
export const DEFAULT_BACKGROUND_IMAGE = process.env.DEFAULT_BACKGROUND_IMAGE
export const languages = [
{
name: 'English',
code: 'en',
iso: 'en-US',
isCatchallLocale: true,
},
{
name: 'Português',
code: 'pt',
iso: 'pt-PT',
},
]
export const EVENT_CATEGORIES = [
{ label: 'All' },
{ label: 'Favorites' },
{ label: 'Events' },
{ label: 'Hackathons' },
{ label: 'Workshops' },
{ label: 'Drinks' },
]
export const WEEK = {
18: {
key: '18',
timestamp: 1634515200000,
name: 'Mon',
},
19: {
key: '19',
timestamp: 1634601600000,
name: 'Tue',
},
20: {
key: '20',
timestamp: 1634688000000,
name: 'Wed',
},
21: {
key: '21',
timestamp: 1634774400000,
name: 'Thur',
},
22: {
key: '22',
timestamp: 1634860800000,
name: 'Fri',
},
23: {
key: '23',
timestamp: 1634947200000,
name: 'Sat',
},
24: {
key: '24',
timestamp: 1635033600000,
name: 'Sun',
},
}