initial commit

This commit is contained in:
2026-05-15 18:12:55 +02:00
commit 0e06d5eefa
11 changed files with 1271 additions and 0 deletions

26
index.html Normal file
View File

@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="hu">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pixel Path Clone</title>
<style>
body {
margin: 0;
padding: 0;
background: #000;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
#screen canvas {
display: block;
}
</style>
</head>
<body>
<div id="screen"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>