Files
voyage/src/routes/+layout.svelte

22 lines
430 B
Svelte

<script>
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></slot>
</section>
<!-- <Footer /> -->
<!-- <style>
section {
margin-top: 2rem;
margin-bottom: 5rem;
/* gives the footer space! */
}
</style> -->