Stub SideBar

This commit is contained in:
Alessandro Pignotti 2024-09-30 16:11:43 +02:00
parent cbcd67e884
commit 1f16f35ef2
2 changed files with 6 additions and 0 deletions

View file

@ -1,10 +1,12 @@
<script>
import Nav from 'labs/packages/global-navbar/src/Nav.svelte';
import SideBar from './SideBar.svelte';
</script>
<main class="flex flex-col w-full h-full">
<Nav />
<div class="flex flex-row flex-grow">
<SideBar />
<h1>Hello</h1>
<p>Visit the <a href="https://svelte.dev/tutorial">Svelte tutorial</a> to learn how to build Svelte apps.</p>
</div>

4
src/SideBar.svelte Normal file
View file

@ -0,0 +1,4 @@
<div class="flex flex-row w-14 bg-neutral-700">
<div class="flex flex-col">
</div>
</div>