summaryrefslogtreecommitdiff
path: root/src/App.tsx
blob: 1ed1ffd376ea39e9fa9146ee8f0f667a2bf09611 (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
29
30
31
32
33
34
35
import { GameCanvas } from "./components/GameCanvas";

const WIDTH = 800;
const HEIGHT = 800;

export const App = () => {
  return (
    <div className="main">
      <div className="header">
        <div className="nav">
          <h1>the abstraction engine</h1>
        </div>
      </div>
      <div className="content">
        <GameCanvas width={WIDTH} height={HEIGHT} />
      </div>
      <div className="footer">
        <span>
          built by{" "}
          <a
            href="https://git.simponic.xyz/simponic"
            target="_blank"
            className="tf"
          >
            simponic
          </a>{" "}
          | inspired by{" "}
          <a href="https://hempuli.com/baba/" target="_blank" className="tf">
            baba is you
          </a>
        </span>
      </div>
    </div>
  );
};