Files
Trent 87e551c0d7
CI / backend (push) Successful in 10m14s
CI / frontend (push) Successful in 1m55s
Refractor. Update styling
2026-08-11 06:48:07 +08:00

29 lines
899 B
HTML

<!doctype html>
<html lang="en">
<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" />
<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=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap"
rel="stylesheet"
/>
<title>VigilCare Clinical</title>
<script>
;(function () {
try {
if (localStorage.getItem('darkMode') === 'true') {
document.documentElement.classList.add('dark')
}
} catch (_) {}
})()
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>