diff options
| author | Logan Hunt <loganhunt@simponic.xyz> | 2022-04-23 19:42:33 -0600 |
|---|---|---|
| committer | Logan Hunt <loganhunt@simponic.xyz> | 2022-04-23 19:42:33 -0600 |
| commit | 38c12ca79b8212af01e3155b998385da247c9508 (patch) | |
| tree | 0b88fe533b745371468d678f8801dacf6bcd4dd9 /src/routes/__layout.svelte | |
| parent | 3a4b67eb37142fb065ce0fb83b0bb184eab01b02 (diff) | |
| download | mistymountainstherapy-38c12ca79b8212af01e3155b998385da247c9508.tar.gz mistymountainstherapy-38c12ca79b8212af01e3155b998385da247c9508.zip | |
Updates
Diffstat (limited to 'src/routes/__layout.svelte')
| -rw-r--r-- | src/routes/__layout.svelte | 11 |
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 /> |
