summaryrefslogtreecommitdiff
path: root/src/routes/__layout.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/__layout.svelte')
-rw-r--r--src/routes/__layout.svelte11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/routes/__layout.svelte b/src/routes/__layout.svelte
new file mode 100644
index 0000000..aa8d8d8
--- /dev/null
+++ b/src/routes/__layout.svelte
@@ -0,0 +1,11 @@
+<script>
+ import NavBar from '../components/NavBar.svelte';
+ import Footer from '../components/Footer.svelte';
+ import '../app.css';
+</script>
+
+<NavBar />
+<div class="container my-2">
+ <slot />
+</div>
+<Footer />