summaryrefslogtreecommitdiff
path: root/frontend/site/projects/museum/views/nav.overlay.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/site/projects/museum/views/nav.overlay.js')
-rw-r--r--frontend/site/projects/museum/views/nav.overlay.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/frontend/site/projects/museum/views/nav.overlay.js b/frontend/site/projects/museum/views/nav.overlay.js
index 011cb2d..02945c6 100644
--- a/frontend/site/projects/museum/views/nav.overlay.js
+++ b/frontend/site/projects/museum/views/nav.overlay.js
@@ -177,11 +177,11 @@ class NavOverlay extends Component {
const currentArtist = ARTIST_ORDER[nextIndex]
const artist = ARTISTS[currentArtist]
this.setState({ currentArtist, artist })
- history.push(`/last-museum/${artist.start}`)
+ history.push(`/thelastmuseum/${artist.start}`)
}
goHome() {
- history.push(`/last-museum/home/`)
+ history.push(`/thelastmuseum/home/`)
}
changeLanguage() {
@@ -217,9 +217,9 @@ class NavOverlay extends Component {
)}
{showHomeFooterLinks && (
<div className="home-footer">
- <Link to="/last-museum/credits">CREDITS</Link>
- <Link to="/last-museum/artists">ARTISTS</Link>
- <Link to="/last-museum/essay">TEXTS</Link>
+ <Link to="/thelastmuseum/credits">CREDITS</Link>
+ <Link to="/thelastmuseum/artists">ARTISTS</Link>
+ <Link to="/thelastmuseum/essay">TEXTS</Link>
</div>
)}
<Marquee location={this.props.location} match={this.props.match} language={this.props.language} />
@@ -246,7 +246,7 @@ class NavOverlay extends Component {
{showClose && (
<a href={`https://www.kw-berlin.de/${language}/`} className={orangeClose ? "close-orange site-close" : "site-close"}>
<span>{BACK_TO_KW[language]}</span>
- <img src={orangeClose ? "/last-museum/static/img/close-orange.png" : "/last-museum/static/img/close.png"} />
+ <img src={orangeClose ? "/thelastmuseum/static/img/close-orange.png" : "/thelastmuseum/static/img/close.png"} />
</a>
)}
<Flash location={this.props.location} match={this.props.match} />