This commit is contained in:
RezHackXYZ 2025-07-09 17:17:46 -07:00
commit edcc6db9ec
No known key found for this signature in database
GPG key ID: C4C90E569C9669E2
10 changed files with 144 additions and 0 deletions

1
src/app.css Normal file
View file

@ -0,0 +1 @@
@import 'tailwindcss';

11
src/app.html Normal file
View file

@ -0,0 +1,11 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>

View file

@ -0,0 +1,7 @@
<script>
import '../app.css';
let { children } = $props();
</script>
{@render children()}

2
src/routes/+page.svelte Normal file
View file

@ -0,0 +1,2 @@
<h1>Welcome to SvelteKit</h1>
<p>Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the documentation</p>