Frontend Basics

This commit is contained in:
js0ny 2025-12-04 17:21:23 +00:00
parent fde16fa283
commit 3bbfed11fa
28 changed files with 2780 additions and 7 deletions

13
drone-frontend/index.html Normal file
View file

@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Drone Path Explorer</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>