initial commit
This commit is contained in:
9
front/src/routes/+layout.svelte
Normal file
9
front/src/routes/+layout.svelte
Normal file
@@ -0,0 +1,9 @@
|
||||
<script lang="ts">
|
||||
import './layout.css';
|
||||
import favicon from '$lib/assets/favicon.svg';
|
||||
|
||||
let { children } = $props();
|
||||
</script>
|
||||
|
||||
<svelte:head><link rel="icon" href={favicon} /></svelte:head>
|
||||
{@render children()}
|
||||
3
front/src/routes/+page.svelte
Normal file
3
front/src/routes/+page.svelte
Normal file
@@ -0,0 +1,3 @@
|
||||
<h1>Welcome to SvelteKit</h1>
|
||||
<p>Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the documentation</p>
|
||||
<button type="button" class="btn preset-filled-primary-500">Button</button>
|
||||
8
front/src/routes/layout.css
Normal file
8
front/src/routes/layout.css
Normal file
@@ -0,0 +1,8 @@
|
||||
@import 'tailwindcss';
|
||||
@plugin '@tailwindcss/forms';
|
||||
@plugin '@tailwindcss/typography';
|
||||
|
||||
|
||||
@import '@skeletonlabs/skeleton';
|
||||
@import '@skeletonlabs/skeleton-svelte';
|
||||
@import '@skeletonlabs/skeleton/themes/cerberus';
|
||||
Reference in New Issue
Block a user