summaryrefslogtreecommitdiff
path: root/frontend/site/projects/museum/constants.js
blob: 4a91c3a5c6c50c562d131b64962b32fecf1155ea (plain)
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
export const ARTISTS = {
  nora: {
    name: "Nora Al-Badri",
    location: "C-Base, Berlin, Germany",
    start: "nora-1",
    globePosition: {
      top: "15.1%",
      left: "47.7%",
    },
  },
  leite: {
    name: "Juliana Cerqueria Leite",
    location: "Santa Ifigênia, São Paolo, Brazil",
    start: "leite-chapter-1",
    globePosition: {
      top: "59%",
      left: "32%",
    },
  },
  foreshew: {
    name: "Nicole Foreshew",
    location: "Australia",
    start: "foreshew-1",
    globePosition: {
      top: "68%",
      left: "83%",
    },
  },
  stankievech: {
    name: "Charles Stankievech",
    location: "Canada",
    start: "stankievech-1",
    globePosition: {
      top: "15%",
      left: "22%",
    },
  },
  nilthamrong: {
    name: "Jakrawal Nilthamrong",
    location: "Thailand",
    start: "nilthamrong-home",
    globePosition: {
      top: "39%",
      left: "72%",
    },
  },
  opoku: {
    name: "Zohra Opoku",
    location: "Mortuary (Unfinished), Accra, Ghana",
    start: "opoku-1-hail-to-you",
    globePosition: {
      top: "44%",
      left: "44.4%",
    },
  }
}

export const ARTIST_ORDER = [
  "nora", "foreshew", "leite", "opoku", "nilthamrong", "stankievech",
]

export const PROJECT_PAGE_SET = new Set(["essay", "artists", "credits"])