mosh-helpdesk/client/index.html

23 lines
827 B
HTML
Raw Permalink Normal View History

2026-02-09 18:55:29 +01:00
<!doctype html>
2026-03-03 20:24:08 +01:00
<html lang="en" class="dark">
2026-02-09 18:55:29 +01:00
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2026-03-03 20:24:08 +01:00
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap" rel="stylesheet" />
2026-02-11 18:36:05 +01:00
<title>Helpdesk</title>
2026-02-09 18:55:29 +01:00
</head>
<body>
2026-03-03 20:24:08 +01:00
<script>
(function() {
var t = localStorage.getItem('helpdesk-theme');
if (t === 'light') document.documentElement.classList.remove('dark');
})();
</script>
2026-02-09 18:55:29 +01:00
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>