2023-07-10 10:15:17 +02:00
|
|
|
<script>
|
2023-07-22 20:44:24 +02:00
|
|
|
import Footer from '$lib/components/Footer.svelte'
|
2023-07-10 10:15:17 +02:00
|
|
|
import Navbar from './Navbar.svelte'
|
|
|
|
import './styles.css'
|
2023-08-05 20:33:07 +02:00
|
|
|
import '@fontsource-variable/work-sans'
|
|
|
|
import '@fontsource/ibm-plex-mono/500.css'
|
2023-07-10 10:15:17 +02:00
|
|
|
</script>
|
|
|
|
|
2023-08-07 19:59:22 +02:00
|
|
|
<div class="flex flex-col min-h-screen overflow-x-hidden">
|
2023-07-10 10:15:17 +02:00
|
|
|
<Navbar />
|
|
|
|
|
|
|
|
<main class="mx-auto w-full flex flex-col">
|
|
|
|
<slot />
|
|
|
|
</main>
|
|
|
|
|
2023-07-22 20:44:24 +02:00
|
|
|
<Footer />
|
2023-07-10 10:15:17 +02:00
|
|
|
</div>
|