blob: cfd0d4006e813b89c0ffca91c5ebea8d01419b94 (
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
|
import React, { Component } from 'react'
// import actions from 'site/actions'
import "./home.css"
export default class Home extends Component {
state = {
open: false,
}
render() {
return (
<div className={this.state.open ? "home open" : "home"}>
<div className="home-byline byline-top">KW PRESENTS</div>
<div className="home-title title-1">THE LAST</div>
<div className="home-title title-2">MUSEUM</div>
<div className="home-artists artists-left">
NICOLE FORESHEW<br />
JULIANA CERQUEIRA LEITE<br />
NORA AL-BADRI
</div>
<div className="home-artists artists-right">
CHARLES STANKIEVECH<br />
JAKRAWAL NILTHAMRONG<br />
ZOHRA OPOKO
</div>
<div className="home-byline byline-bottom">CURATED BY NADIM SAMMAN</div>
</div>
)
}
}
|