blob: 00f8ca33e75c499b9c369b80a552de6e55610965 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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>
);
}
|