Add layout and footer components, update adventureService, and create log page

This commit is contained in:
Sean Morley
2024-03-29 22:44:32 +00:00
parent 2f180a204b
commit 90036c5c14
5 changed files with 144 additions and 103 deletions

15
src/routes/+layout.svelte Normal file
View File

@@ -0,0 +1,15 @@
<script>
import Footer from "$lib/components/Footer.svelte";
</script>
<section>
<slot></slot>
</section>
<Footer />
<style>
section {
margin-bottom: 5rem;
/* gives the footer space! */
}
</style>