15 lines
238 B
Svelte
15 lines
238 B
Svelte
<script>
|
|
import Footer from "$lib/components/Footer.svelte";
|
|
</script>
|
|
|
|
<section>
|
|
<slot></slot>
|
|
</section>
|
|
<Footer />
|
|
|
|
<style>
|
|
section {
|
|
margin-bottom: 5rem;
|
|
/* gives the footer space! */
|
|
}
|
|
</style> |