chore!: adds sveltekit scaffold
This commit is contained in:
parent
4d92d2fa5a
commit
246c7275fd
15 changed files with 3420 additions and 262 deletions
6
src/routes/+layout.svelte
Normal file
6
src/routes/+layout.svelte
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
<script>
|
||||
import '../app.css';
|
||||
let { children } = $props();
|
||||
</script>
|
||||
|
||||
{@render children()}
|
||||
1
src/routes/+layout.ts
Normal file
1
src/routes/+layout.ts
Normal file
|
|
@ -0,0 +1 @@
|
|||
export const ssr = false;
|
||||
1
src/routes/+page.svelte
Normal file
1
src/routes/+page.svelte
Normal file
|
|
@ -0,0 +1 @@
|
|||
<h1 class="text-2xl font-bold p-8">Aurora Character Records Generator</h1>
|
||||
Loading…
Add table
Add a link
Reference in a new issue