feat: 1995

This commit is contained in:
Dan Finch 2026-08-04 02:09:54 +02:00
commit fb89263930
69 changed files with 3359 additions and 0 deletions

25
index.html Normal file
View file

@ -0,0 +1,25 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>MEAT</title>
<style>
html,
body {
margin: 0;
height: 100%;
background: #000;
overflow: hidden;
}
#screen {
display: block;
image-rendering: pixelated;
}
</style>
</head>
<body>
<canvas id="screen"></canvas>
<script type="module" src="/app/main.ts"></script>
</body>
</html>