feat(frontend): scaffold Vite + React + TypeScript project

This commit is contained in:
meelstorm
2026-07-17 17:52:47 +00:00
committed by EugeneTes
parent b6a0709c3e
commit 96468d9dde
12 changed files with 1556 additions and 0 deletions

16
Frontend/index.html Normal file
View File

@@ -0,0 +1,16 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cursor-Following Lander</title>
<style>
html, body, #root { margin: 0; padding: 0; height: 100%; overflow: hidden; background: #000; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: #eee; }
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>