chore!: adds sveltekit scaffold

This commit is contained in:
Lewis Wynne 2026-03-23 15:57:51 +00:00
parent 4d92d2fa5a
commit 246c7275fd
15 changed files with 3420 additions and 262 deletions

1
src/app.css Normal file
View file

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

13
src/app.d.ts vendored Normal file
View file

@ -0,0 +1,13 @@
// See https://svelte.dev/docs/kit/types#app.d.ts
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
// interface Locals {}
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
}
export {};

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,6 @@
<script>
import '../app.css';
let { children } = $props();
</script>
{@render children()}

1
src/routes/+layout.ts Normal file
View file

@ -0,0 +1 @@
export const ssr = false;

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

@ -0,0 +1 @@
<h1 class="text-2xl font-bold p-8">Aurora Character Records Generator</h1>