basic setup with Svelte, Tailwind and DaisyUI

This commit is contained in:
2024-10-23 00:19:08 +05:30
parent 7b65f3313e
commit ad57664a3e
26 changed files with 2315 additions and 237 deletions

16
client/app.html Normal file
View File

@@ -0,0 +1,16 @@
<!doctype html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/icon.png" type="image/png" />
<link rel="icon" href="%sveltekit.assets%/icon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="%sveltekit.assets%/icon.png" />
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>