summaryrefslogtreecommitdiff
path: root/src/routes
diff options
context:
space:
mode:
authorLogan Hunt <loganhunt@simponic.xyz>2022-04-23 19:42:33 -0600
committerLogan Hunt <loganhunt@simponic.xyz>2022-04-23 19:42:33 -0600
commit38c12ca79b8212af01e3155b998385da247c9508 (patch)
tree0b88fe533b745371468d678f8801dacf6bcd4dd9 /src/routes
parent3a4b67eb37142fb065ce0fb83b0bb184eab01b02 (diff)
downloadmistymountainstherapy-38c12ca79b8212af01e3155b998385da247c9508.tar.gz
mistymountainstherapy-38c12ca79b8212af01e3155b998385da247c9508.zip
Updates
Diffstat (limited to 'src/routes')
-rw-r--r--src/routes/__layout.svelte11
-rw-r--r--src/routes/index.svelte27
-rw-r--r--src/routes/team/index.svelte3
3 files changed, 36 insertions, 5 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 />
diff --git a/src/routes/index.svelte b/src/routes/index.svelte
index f9234a1..51b5214 100644
--- a/src/routes/index.svelte
+++ b/src/routes/index.svelte
@@ -1,3 +1,24 @@
-<h1>
- HELLO
-</h1> \ No newline at end of file
+<div class="row align-items-center">
+ <div class="col-md-8">
+ <img src="https://ztxoywaazhxdeiftmsiy.supabase.co/storage/v1/object/public/mistymountains/mountains.png" alt="mountains" class="img-fluid rounded">
+ </div>
+ <div class="col-md-4">
+ <h2>Helping you conquer mount doom</h2>
+ </div>
+</div>
+
+<hr>
+
+<div class="d-flex justify-content-center">
+ <div class="col-md-8">
+ <h3>Darkness must pass, a new day will come, and when the sun shines, it will shine out the clearer.</h3>
+ <div class="d-flex justify-content-end">
+ - Samwise Gamgee
+ </div>
+ <br>
+ <div>
+ We do not have a crisis line. If you or someone you know is in danger please call 911, visit your nearest emergency room, call the National Suicide Prevention Lifeline for free crisis counseling at <a href="tel:18002738255">1(800)273-TALK (8255)</a>, or text HELLO to 741-741.
+ </div>
+ </div>
+</div>
+
diff --git a/src/routes/team/index.svelte b/src/routes/team/index.svelte
index 56a7e33..d3c4549 100644
--- a/src/routes/team/index.svelte
+++ b/src/routes/team/index.svelte
@@ -9,7 +9,6 @@
if (!error) {
return data;
}
- console.log(error);
return [];
}
@@ -40,4 +39,4 @@
</div>
{/each}
{/if}
-</main> \ No newline at end of file
+</main>