Starting a new template using Svelte, SvelteKit, Tailwind, and Skeleton.

This commit is contained in:
Scott Idem
2024-02-15 09:49:35 -05:00
parent ccbb783378
commit 17d99d080c
58 changed files with 3894 additions and 9127 deletions

12
src/app.html Normal file
View File

@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width" />
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover" data-theme="modern">
<div style="display: contents" class="h-full overflow-hidden">%sveltekit.body%</div>
</body>
</html>