-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
31 lines (30 loc) · 1.14 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
29
30
31
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta property="og:title" content="cleanfollow-bsky" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://cleanfollow-bsky.pages.dev" />
<meta
property="og:description"
content="Unfollow blocked, deleted, suspended, and deactivated Bluesky accounts"
/>
<link rel="shortcut icon" type="image/ico" href="/src/assets/favicon.ico" />
<title>cleanfollow-bsky</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>
<script src="/src/index.tsx" type="module"></script>
</head>
<body id="root" class="dark:bg-dark-500 bg-slate-100">
<noscript>You need to enable JavaScript to run this app.</noscript>
</body>
</html>