mirror of
https://github.com/Discreetly/frontend.git
synced 2026-01-08 20:38:04 -05:00
34 lines
502 B
HTML
34 lines
502 B
HTML
<!DOCTYPE html>
|
|
<html
|
|
lang="en"
|
|
class="dark"
|
|
>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta
|
|
name="msapplication-TileColor"
|
|
content="#202626"
|
|
/>
|
|
<meta
|
|
name="theme-color"
|
|
content="#FA5F5F"
|
|
/>
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width"
|
|
/>
|
|
%sveltekit.head%
|
|
</head>
|
|
<body
|
|
data-sveltekit-preload-data="hover"
|
|
data-theme="discreetly-theme"
|
|
>
|
|
<div
|
|
style="display: contents"
|
|
class="h-screen overflow-hidden"
|
|
>
|
|
%sveltekit.body%
|
|
</div>
|
|
</body>
|
|
</html>
|