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
|
import React, { Component } from 'react'
import actions from 'site/actions'
import { history } from "site/store"
import "./credits.css"
export default class Credits extends Component {
constructor(props) {
super(props)
this.handleClick = this.handleClick.bind(this)
this.goHome = this.goHome.bind(this)
this.state = {
}
}
componentDidMount() {
actions.site.interact()
}
handleClick(e) {
e && e.preventDefault()
}
goHome() {
history.push(`/last-museum/home/`)
}
render() {
return (
<div className="page page-credits">
<div className="page-title">The L<span>ast Museum</span></div>
<div className="page-content">
<div className="page-left">
<div className="page-subtitle">CREDITS</div>
</div>
<div className="page-right">
<div className="page-subtitle">ARTWORK CREDITS</div>
</div>
</div>
<div className="page-content">
<div className="page-left">
<div className="credits-rows">
<div>
<div>Curator:</div> <a href="http://nadimsamman.com/">Nadim Samman</a>
</div>
<div>
<div>Developer:</div> <a href="https://asdf.us/">Jules LaPlace</a>
</div>
<div>
<div>Design:</div> <a href="https://sometimes-always.com/">Sometimes Always</a>
</div>
</div>
<div>
Commissioned by:<br/>
<b>KW Institute for Contemporary Art</b><br/>
Auguststraße 69<br/>
10117 Berlin<br/>
Tel. +49 30 243459-0<br/>
Fax +49 30 243459-99<br/>
<a href="mailto:info@kw-berlin.de?subject=The+Last+Museum">info@kw-berlin.de</a><br/>
<br/>
KW Institute for Contemporary Art is institutionally supported by the Senate Department for Culture and Europe, Berlin.<br/>
<br/>
The Last Museum is produced in collaboration with Polyeco Contemporary Art Initiative (PCAI), Athens<br/>
<br/>
<b>Press Enquiries:</b><br/>
Natanja von Stosch<br/>
Tel. +49 30 243459 41<br/>
<a href="mailto:nvs@kw-berlin.de?subject=The+Last+Museum">nvs@kw-berlin.de</a><br/>
<b>Press Releases and Image Material:</b><br/>
<a href="https://kw-berlin.de/en/press">kw-berlin.de/en/press</a>
</div>
<div className="icons">
<img src="/last-museum/static/media/last-museum/arte-logo.png" />
<img src="/last-museum/static/media/last-museum/pcai-logo.png" className='pcai' />
</div>
</div>
<div className="page-right columns">
<div className="column">
<b>Charles Stankievech</b><br/>
<i>The Glass Key</i><br/>
Location: Cosmic Ray Research Station, Canadian Rocky Mountains (winter solstice)<br/>
Videography & Sound design: Charles Stankievech<br/>
<br/>
<b>Nora Al-Badri</b><br/>
<i>This Is Not A Hacker Space</i><br/>
Location: C-Base, Berlin, Germany<br/>
Videography: Siska<br/>
Soundtrack mix: Shamsa<br/>
Track mixed in: Cadans - No Connection (Broken Mix)<br/>
Melodic Acapella female sound: Lynn Adib<br/>
poem: Nikki Giovanni ‘Ego Tripping’<br/>
الأمل<br/>
Al-Amal/ Hope Mars Mission (via YouTube)<br/>
Special thanks to the Norberta, Gregor and the spaceship crew in Berlin-Mitte; Andy and CCC.<br/>
<br/>
<b>Juliana Cerqueira Leite</b><br/>
<i>Untitled</i><br/>
Location: Santa Ifigênia, São Paulo, Brasil<br/>
Videography & Sound design: Juliana Cerqueira Leite
</div>
<div className="column">
<b>Zohra Opoku</b><br/>
<i>The Myths of Eternal Life</i><br/>
Videography & Sound Design: Zohra Opoku<br/>
Location: Unfinished mortuary, Accra, Ghana.<br/>
<br/>
<b>Nicole Foreshew</b><br/>
<i>Dhurany Yanggu</i>
(message song of running water)<br/>
Location: Gumbaynggirr Country, Northern Tablelands and Northern Rivers districts of New South Wales, Australia.<br/>
Videography & Sound Design: Nicole Foreshew<br/>
<br/>
<b>Jakrawal Nilthamrong</b><br/>
<i>Barn Burner</i> <br/>
Location: Chiang Mai, Thailand. <br/>
Videography & Sound Design: Jakrawal Nilthamrong
</div>
</div>
</div>
<div className="home-link" onClick={this.goHome}>
Home
</div>
</div>
)
}
}
|