blob: 1736cba021cf51de5013c189e94ce6c013c61cdb (
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
|
export interface TitleProps {
setReady: (ready: boolean) => void;
}
export const Title = ({ setReady }: TitleProps) => {
return (
<div style={{ textAlign: "center" }}>
<h1>the abstraction engine</h1>
<p>a game based on the lambda calculus</p>
<p>
engine{" "}
<a
href="https://git.simponic.xyz/the-abstraction-engine"
target="_blank"
>
from scratch
</a>
</p>
<br />
<p>WASD/arrow keys to move, space/enter to interact</p>
<br />
<hr />
<br />
<button onClick={() => setReady(true)}>ready</button>
</div>
);
};
|