add webapp, move frontend to webapp folder

This commit is contained in:
2025-04-15 15:33:08 -04:00
parent f97b3b5185
commit 196063c23b
93 changed files with 2162 additions and 0 deletions

View File

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="" class="h-full">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>CT Mesh Map</title>
<meta name="title" content="Meshtastic Map">
<meta name="description" content="An interactive map of CT Meshtastic nodes.">
<link rel="icon" type="image/png" href="/images/icon.png"/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://map.ctmesh.org">
<meta property="og:title" content="CT Mesh Map">
<meta property="og:description" content="An interactive map of CT Meshtastic nodes.">
</head>
<body class="h-full bg-gray-200">
<div id="app" class="h-full" v-cloak></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>