esameits24-26frontend/index.html

22 lines
572 B
HTML
Raw Permalink Normal View History

2026-07-12 22:55:42 +02:00
<!doctype html>
2026-07-14 14:03:58 +02:00
<html lang="it">
2026-07-12 22:55:42 +02:00
<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" />
2026-07-14 15:23:05 +02:00
<meta name="color-scheme" content="dark" />
2026-07-14 14:03:58 +02:00
<title>Academy Aziendale</title>
<script>
(function () {
try {
2026-07-14 15:23:05 +02:00
document.documentElement.classList.add("dark");
2026-07-14 14:03:58 +02:00
} catch (e) {}
})();
</script>
2026-07-12 22:55:42 +02:00
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>