2024-03-29 22:44:32 +00:00
|
|
|
<script>
|
2024-04-02 22:02:20 +00:00
|
|
|
import Footer from "$lib/components/Footer.svelte";
|
|
|
|
import Navbar from "$lib/components/Navbar.svelte";
|
|
|
|
import "../app.css";
|
2024-04-01 23:30:59 +00:00
|
|
|
|
2024-04-02 22:02:20 +00:00
|
|
|
// only show footer if scrolled to the bottom
|
2024-03-29 22:44:32 +00:00
|
|
|
</script>
|
|
|
|
|
2024-03-29 22:52:42 +00:00
|
|
|
<Navbar />
|
2024-03-29 22:44:32 +00:00
|
|
|
<section>
|
2024-04-02 22:02:20 +00:00
|
|
|
<slot />
|
|
|
|
</section>
|
|
|
|
<!-- <Footer /> -->
|
2024-03-29 22:44:32 +00:00
|
|
|
|
2024-04-02 22:02:20 +00:00
|
|
|
<!-- <style>
|
2024-03-29 22:44:32 +00:00
|
|
|
section {
|
2024-03-29 22:52:42 +00:00
|
|
|
margin-top: 2rem;
|
2024-03-29 22:44:32 +00:00
|
|
|
margin-bottom: 5rem;
|
|
|
|
/* gives the footer space! */
|
|
|
|
}
|
2024-04-02 22:02:20 +00:00
|
|
|
</style> -->
|