Add layout and footer components, update adventureService, and create log page
This commit is contained in:
15
src/routes/+layout.svelte
Normal file
15
src/routes/+layout.svelte
Normal 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>
|
||||
Reference in New Issue
Block a user