1
1
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
420 B

<script>
import Menu from "../lib/menu/Menu.svelte";
import "../app.css";
import Footer from "../lib/footer/Footer.svelte";
</script>
<main class="bg-zinc-900 min-h-screen flex flex-col text-white font-roboto">
<header class="container mx-auto">
<Menu/>
</header>
<div class="flex flex-col gap-10 my-20">
<slot />
</div>
<footer>
<Footer/>
</footer>
</main>