aboutsummaryrefslogtreecommitdiff
path: root/src/routes/+layout.svelte
diff options
context:
space:
mode:
authorElizabeth Hunt <me@liz.coffee>2026-01-01 18:32:49 -0800
committerElizabeth Hunt <me@liz.coffee>2026-01-01 18:32:49 -0800
commit9af1854a7e35785a8e86426c4fb1edd465f164a3 (patch)
tree8a070c6a9498d952c9ef4ba045f2ebfb25f7b335 /src/routes/+layout.svelte
parent0248a3899ed910f005dccaeefc1d9dcb893e8154 (diff)
downloadmistymountainstherapy-9af1854a7e35785a8e86426c4fb1edd465f164a3.tar.gz
mistymountainstherapy-9af1854a7e35785a8e86426c4fb1edd465f164a3.zip
Massive refactor courtesy of 5 dollars of AI tokens
Diffstat (limited to 'src/routes/+layout.svelte')
-rw-r--r--src/routes/+layout.svelte40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte
new file mode 100644
index 0000000..651ef5f
--- /dev/null
+++ b/src/routes/+layout.svelte
@@ -0,0 +1,40 @@
+<script>
+ import { page } from '$app/stores';
+ import { fade } from 'svelte/transition';
+ import NavBar from '../components/NavBar.svelte';
+ import Footer from '../components/Footer.svelte';
+ import '../app.css';
+</script>
+
+<svelte:head>
+ <meta
+ name="description"
+ content="Misty Mountains Therapy provides high quality therapy services for Rexburg and the surrounding area."
+ />
+ <meta property="og:site_name" content="Misty Mountains Therapy" />
+ <meta property="og:title" content="Misty Mountains Therapy" />
+ <meta
+ property="og:description"
+ content="High quality therapy services for Rexburg and the surrounding area."
+ />
+ <meta property="og:type" content="website" />
+ <meta property="og:url" content="https://mistymountainstherapy.com/" />
+ <meta property="og:image" content="https://mistymountainstherapy.com/logo.png" />
+ <meta name="twitter:card" content="summary" />
+ <meta name="twitter:title" content="Misty Mountains Therapy" />
+ <meta
+ name="twitter:description"
+ content="High quality therapy services for Rexburg and the surrounding area."
+ />
+</svelte:head>
+
+<a class="skip-link" href="#main">Skip to content</a>
+<NavBar />
+<main id="main" class="page" tabindex="-1">
+ {#key $page.url.pathname}
+ <div class="container" in:fade={{ duration: 150, delay: 50 }}>
+ <slot />
+ </div>
+ {/key}
+</main>
+<Footer />