-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (23 loc) · 1.06 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en" class="scroll-smooth 2xl:text-[18px] xl:text-[16px] lg:text-[14px] md:text-[12px] text-[10px] h-full">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<script src="https://kit.fontawesome.com/6002d43da3.js" crossorigin="anonymous"></script>
<meta name="viewport" content="width=device-width" />
<title>Noxu Boards</title>
<script>
if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.classList.add('dark')
} else {
document.documentElement.classList.remove('dark')
}
</script>
<!-- umami analytics -->
<!-- <script async defer data-website-id="b0a9ea44-0d75-40b9-bfcd-c39a461e81af" src="https://umami.n.nuft.cc/umami.js"></script> -->
</head>
<body class="antialiased text-black bg-slate-100 dark:text-slate-400 dark:bg-slate-800 h-full">
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>