File size: 214 Bytes
db39944
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
<script>
	import '../app.css';
	import Navbar from '../lib/components/Navbar.svelte';
</script>

<div class="flex flex-col min-h-screen font-inter">
	<main class="flex-grow">
		<Navbar />
		<slot />
	</main>
</div>