esameits24-26frontend/index.html
AV77web dc7dbc4166
All checks were successful
Deploy to VPS / build (push) Successful in 29s
Deploy to VPS / deploy (push) Successful in 25s
modifica al Night Mode
2026-07-14 15:23:05 +02:00

21 lines
572 B
HTML

<!doctype html>
<html lang="it">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="color-scheme" content="dark" />
<title>Academy Aziendale</title>
<script>
(function () {
try {
document.documentElement.classList.add("dark");
} catch (e) {}
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>