File size: 686 Bytes
11dbfc8 1dc44c8 11dbfc8 229d4b4 11dbfc8 663005a 11dbfc8 6a35655 5da61b4 7f827cf 6a35655 11dbfc8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width" />
<title>HuggingChat</title>
<meta
name="description"
content="Making the best open source AI chat models available to everyone."
/>
<meta property="og:image" content="%sveltekit.assets%/thumbnail.png" />
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover" class="dark:bg-gray-900">
<div style="display: contents">%sveltekit.body%</div>
</body>
<script>
if (localStorage.theme === "dark") {
document.documentElement.classList.add("dark");
}
</script>
</html>
|