Basic dasbboard layout

This commit is contained in:
2021-08-16 15:43:32 +02:00
parent 0da135f271
commit e63009ac96
2 changed files with 175 additions and 2 deletions

View File

@@ -1,2 +1,12 @@
<h1>Welcome to SvelteKit</h1>
<p>Visit <a href="https://kit.svelte.dev">kit.svelte.dev</a> to read the documentation</p>
<script>
import Sidebar from '$lib/Sidebar.svelte';
</script>
<div style="min-height: 640px;" class="bg-white dark:bg-gray-800">
<div class="h-screen flex overflow-hidden">
<Sidebar />
<div class="px-4 py-8 flex flex-col w-0 flex-1 overflow-hidden">
<h2 class="text-3xl font-bold text-gray-800 dark:text-gray-100">Home</h2>
</div>
</div>
</div>