summaryrefslogtreecommitdiff
path: root/src/App.tsx
blob: add7c081e39f8d8e24122e2dd218717885f5308a (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
import { GameCanvas } from "./components/GameCanvas";
import { Miscellaneous } from "./engine/config";

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={Miscellaneous.WIDTH} height={Miscellaneous.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>
  );
};