Added basic welcome page

This commit is contained in:
2023-04-19 10:58:18 +02:00
parent f6dd25c988
commit 5ed21bb13d
5 changed files with 607 additions and 3 deletions

View File

@@ -2,8 +2,14 @@
import { OpenAPI } from '@odit/lfk-client-js';
import { env } from '$env/dynamic/public';
import '../app.postcss';
import Footer from '../components/footer.svelte';
OpenAPI.BASE = env.PUBLIC_BASE_URL || 'https://run.lauf-fuer-kaya.de';
</script>
<slot />
<div class="dark:bg-slate-900 flex flex-col h-screen">
<main class="flex-grow">
<slot />
</main>
<Footer />
</div>