Files
voyage/src/routes/+layout.svelte
2024-04-03 22:59:05 +00:00

22 lines
415 B
Svelte

<script lang="ts">
import Footer from "$lib/components/Footer.svelte";
import Navbar from "$lib/components/Navbar.svelte";
import "../app.css";
// only show footer if scrolled to the bottom
</script>
<Navbar />
<section>
<slot />
</section>
<!-- <Footer /> -->
<!-- <style>
section {
margin-top: 2rem;
margin-bottom: 5rem;
/* gives the footer space! */
}
</style> -->