summaryrefslogtreecommitdiff
path: root/src/views/Quote.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2021-09-24 17:09:07 +0200
committerJules Laplace <julescarbon@gmail.com>2021-09-24 17:09:07 +0200
commit64408333a8b5378564911766f6e40add0862e28f (patch)
tree41e5526ea50dd107bb91f1301f048a2240b5830e /src/views/Quote.js
parentfd4b35eba2656f16be13219867e94ca30f96a699 (diff)
credits
Diffstat (limited to 'src/views/Quote.js')
-rw-r--r--src/views/Quote.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/views/Quote.js b/src/views/Quote.js
new file mode 100644
index 0000000..00f8ca3
--- /dev/null
+++ b/src/views/Quote.js
@@ -0,0 +1,21 @@
+/**
+ * Adorno quote
+ */
+
+import React from "react";
+
+export default function Quote({ visible }) {
+ return (
+ <div className={visible ? "quote visible" : "quote"}>
+ <div>As a constellation,</div>
+ <div>theoretical thought circles the concept</div>
+ <div>it would like to unseal, hoping that it</div>
+ <div>may fly open like the lock of a</div>
+ <div>well-guarded safe-deposit box:</div>
+ <div>in response, not to a single key or</div>
+ <div>a single number, but to a</div>
+ <div>combination of numbers.</div>
+ <div>Theodor W. Adorno</div>
+ </div>
+ );
+}