diff options
Diffstat (limited to 'frontend/site/projects/museum/constants.js')
| -rw-r--r-- | frontend/site/projects/museum/constants.js | 42 |
1 files changed, 38 insertions, 4 deletions
diff --git a/frontend/site/projects/museum/constants.js b/frontend/site/projects/museum/constants.js index 87b9ed7..e9bb4f4 100644 --- a/frontend/site/projects/museum/constants.js +++ b/frontend/site/projects/museum/constants.js @@ -1,4 +1,34 @@ +/** + * Artist statements and links + */ + +export const ARTIST_ORDER = [ + "petros", "stankievech", "nora", "leite", "opoku", "foreshew", "nilthamrong", +] + export const ARTISTS = { + petros: { + name: "Petros Moris", + location: { + en: "Athens, Greece", + de: "Athens, Greece", + }, + start: "petros-1", + homepage: "http://petrosmoris.com/", + bio: { + en: `<p>TBD</p>`, + de: `<p>TBD</p>`, + }, + statement: { + en: `<p>TBD</p>`, + de: `<p>TBD</p>`, + }, + image: "/thelastmuseum/static/media/last-museum/artist-bio/nora.jpg", + globePosition: { + top: "15.1%", + left: "47.7%", + }, + }, nora: { name: "Nora Al-Badri", location: { @@ -340,12 +370,12 @@ export const ARTISTS = { } } -export const ARTIST_ORDER = [ - "stankievech", "nora", "leite", "opoku", "foreshew", "nilthamrong", -] - export const PROJECT_PAGE_SET = new Set(["essay", "artists", "credits"]) +/** + * Essays + */ + export const ESSAYS = { nadim: { title: "Curator's Essay", author: "Nadim Samman", }, statements: { title: "Artist Statements", author: "", }, @@ -533,6 +563,10 @@ export const ESSAY_TEXTS = { } } +/** + * Marquees (i.e. Zohra) + */ + export const MARQUEES = { 'opoku-1-hail-to-you': { en: 'Hail to you, lords of truth, free from wrongdoing, who exist forever and forever. I have reached you because I am an akh with my forms. I am powerful through my magic. Going forth by day / Papyrus of Sobekmose / Book of the Dead ...', |
