26 lines
817 B
HTML
Executable File
26 lines
817 B
HTML
Executable File
<!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>
|