Initial project scaffolding

This commit is contained in:
Axel Meyer
2026-04-07 10:09:51 +00:00
commit 5a19864fb5
9 changed files with 4016 additions and 0 deletions

16
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>Hexifyer</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
</head>
<body>
<div id="app">
<aside id="sidebar"></aside>
<div id="map"></div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>