-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
17 lines (17 loc) · 910 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover, user-scalable=no" />
<meta name="theme-color" content="#1e293b" />
<link rel="icon" type="image/svg+xml" href="/src/assets/images/logo.svg" />
<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;600;700&family=Titillium+Web:wght@400;600;700&display=swap" rel="stylesheet">
<title>ServerStatus</title>
</head>
<body class="antialiased font-sans bg-slate-50 text-gray-900 dark:bg-slate-950 dark:text-gray-100">
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>