forked from otherplane/lisbon-blockchain-week
-
Notifications
You must be signed in to change notification settings - Fork 3
/
constants.js
85 lines (81 loc) · 1.49 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
export const SUBMIT_EVENT_URL =
process.env.SUBMIT_EVENT_URL || 'https://forms.gle/U8hbWxbYwiRMonAfA'
export const EVENTS_URL =
process.env.EVENTS_URL ||
'https://raw.githubusercontent.com/joergkiesewetter/blockchainweek.berlin/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: 'conference' },
{ label: 'event/meetup' },
{ label: 'hackathon' },
{ label: 'workshop' },
{ label: 'drinks/party' },
{ label: 'other' },
]
export const WEEK = {
8: {
key: '8',
timestamp: 1694131200000,
name: 'FRI',
},
9: {
key: '9',
timestamp: 1694217600000,
name: 'SAT',
},
10: {
key: '10',
timestamp: 1694304000000,
name: 'SUN',
},
11: {
key: '11',
timestamp: 1694390400000,
name: 'MON',
},
12: {
key: '12',
timestamp: 1694476800000,
name: 'TUE',
},
13: {
key: '13',
timestamp: 1694563200000,
name: 'WED',
},
14: {
key: '14',
timestamp: 1694649600000,
name: 'THU',
},
15: {
key: '15',
timestamp: 1694736000000,
name: 'FRI',
},
16: {
key: '16',
timestamp: 1694822400000,
name: 'SAT',
},
17: {
key: '17',
timestamp: 1694908800000,
name: 'SUN',
},
}