diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2021-09-27 16:09:57 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2021-09-27 16:09:57 +0200 |
| commit | 4d771d7adc0bbe7a7febffed4f066220de48ee39 (patch) | |
| tree | 4056698f89ef7a7e380d92d5e234e2ee8ae0f246 /src | |
| parent | 368ffc3597bc1eb34aa00210a70c4ba813378e96 (diff) | |
logo
Diffstat (limited to 'src')
| -rw-r--r-- | src/views/Credits.js | 2 | ||||
| -rw-r--r-- | src/views/Graph.js | 2 | ||||
| -rw-r--r-- | src/views/Title.js | 4 |
3 files changed, 5 insertions, 3 deletions
diff --git a/src/views/Credits.js b/src/views/Credits.js index 1d8c9b2..dd9f4f0 100644 --- a/src/views/Credits.js +++ b/src/views/Credits.js @@ -116,7 +116,7 @@ const CREDITS_STRINGS = { </div> `, press: ` - <h2>No6092</h2> + <h2> </h2> The artist thanks the creative team that made this happen: Nadim, Jules, Raf and Brandon. Thanks to the partnering institutions the National Gallery of Canada, particularly Sasha Suda, Kitty Scott and Jonathan Shaughnessy, and The Courtauld, especially Sara Wilson. Thank you to Ala Roushan for the patient working through the entire project. <br/> <br/> Press Enquiries:<br/> diff --git a/src/views/Graph.js b/src/views/Graph.js index eb55ad0..21972e8 100644 --- a/src/views/Graph.js +++ b/src/views/Graph.js @@ -78,7 +78,7 @@ export default function Graph({ db }) { visible={introDone && !detailVisible} open={creditsVisible} /> - <Title visible={introDone && !detailVisible && !creditsVisible} /> + <Title visible={introDone /* && !detailVisible && !creditsVisible*/} /> <div className={introCurtainDone ? "curtain done" : "curtain"} /> </div> ); diff --git a/src/views/Title.js b/src/views/Title.js index c86eea8..0e50027 100644 --- a/src/views/Title.js +++ b/src/views/Title.js @@ -6,6 +6,8 @@ import React from "react"; export default function Title({ visible }) { return ( - <div className={visible ? "site-title visible" : "site-title"}>NO6092</div> + <div className={visible ? "site-title visible" : "site-title"}> + <img src="assets/img/no6092-title.png" /> + </div> ); } |
