This commit is contained in:
2025-06-17 17:46:21 +01:00
parent efc4fdb4c0
commit 4a8395a307
38 changed files with 12370 additions and 1 deletions

25
index.html Executable file
View File

@@ -0,0 +1,25 @@
<!doctype html>
<html lang="pt">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>EV Station Controller</title>
<meta name="description" content="Gestão de estação de carregamento EV via PWA" />
<meta name="theme-color" content="#0f172a" />
<!-- Favicon e ícones -->
<link rel="icon" href="/icons/icon-192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="/icons/icon-512.png" sizes="512x512" />
<!-- Manifest PWA -->
<link rel="manifest" href="/manifest.webmanifest" />
</head>
<body class="bg-gray-100 text-gray-900">
<!-- Ponto de entrada React -->
<div id="root"></div>
<!-- Script principal Vite -->
<script type="module" src="/src/main.jsx"></script>
</body>
</html>