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