35 lines
968 B
HTML
35 lines
968 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="referrer" content="no-referrer" />
|
|
<title>Follow</title>
|
|
|
|
<script>
|
|
(function () {
|
|
var e =
|
|
window.matchMedia &&
|
|
window.matchMedia("(prefers-color-scheme: dark)").matches,
|
|
t = localStorage.getItem("theme") || '"system"';
|
|
t && t !== '"system"' && (document.documentElement.dataset.theme = t);
|
|
t &&
|
|
t === '"system"' &&
|
|
e &&
|
|
(document.documentElement.dataset.theme = "dark");
|
|
})();
|
|
</script>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
</head>
|
|
<body>
|
|
<div id="root">
|
|
<!-- Skeleton -->
|
|
<div class="h-full w-full flex">
|
|
<div class="w-64 shrink-0 h-full"></div>
|
|
<div class="grow w-full h-full bg-theme-background"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|