mosh-helpdesk/client/index.html
Moshfegh Hamedani f72e08ff59 Polish the UI
2026-03-03 11:24:08 -08:00

23 lines
827 B
HTML

<!doctype html>
<html lang="en" class="dark">
<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" />
<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" />
<title>Helpdesk</title>
</head>
<body>
<script>
(function() {
var t = localStorage.getItem('helpdesk-theme');
if (t === 'light') document.documentElement.classList.remove('dark');
})();
</script>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>