linkylinky-dashboard/src/routes/index.svelte

13 lines
358 B
Svelte

<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>