aboutsummaryrefslogtreecommitdiff
path: root/src/routes/index.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/index.svelte
parent0248a3899ed910f005dccaeefc1d9dcb893e8154 (diff)
downloadmistymountainstherapy-9af1854a7e35785a8e86426c4fb1edd465f164a3.tar.gz
mistymountainstherapy-9af1854a7e35785a8e86426c4fb1edd465f164a3.zip
Massive refactor courtesy of 5 dollars of AI tokens
Diffstat (limited to 'src/routes/index.svelte')
-rw-r--r--src/routes/index.svelte84
1 files changed, 0 insertions, 84 deletions
diff --git a/src/routes/index.svelte b/src/routes/index.svelte
deleted file mode 100644
index 1a701c7..0000000
--- a/src/routes/index.svelte
+++ /dev/null
@@ -1,84 +0,0 @@
-<script>
- import { carouselImages } from '$lib/data/images';
- import { Navigation, Pagination, Scrollbar, A11y, Autoplay } from 'swiper';
- import { Swiper, SwiperSlide } from 'swiper/svelte';
- import 'swiper/css';
- import 'swiper/css/navigation';
- import 'swiper/css/pagination';
- import 'swiper/css/scrollbar';
- import 'swiper/css/autoplay';
-
- const images = [
- { image: carouselImages[0], alt: 'Picture of the glass office door with the Misty Mountains Therapy logo in the center.' },
- { image: carouselImages[1], alt: 'The entry hall to the Misty Mountains Suite room, showing a bench for waiting patients to sit. The vibes are inviting.' },
- { image: carouselImages[2], alt: 'An office room with a rustic lamp and comfy looking couch.' },
- { image: carouselImages[3], alt: 'A second office room with good vibes.' },
- { image: carouselImages[4], alt: 'Cloudy mountains in a light sky' },
- ];
-</script>
-
-<div class="row align-items-center py-2">
- <div class="col-md-7">
- <Swiper
- modules={[Navigation, Pagination, Scrollbar, A11y, Autoplay]}
- class="rounded shadow"
- spaceBetween={50}
- slidesPerView={1}
- autoHeight={true}
- loop={true}
- navigation
- pagination={{ clickable: true }}
- autoplay={true}
- speed={1000}
- on:slideChange={() => console.log('slide change')}
- on:swiper={(e) => console.log(e.detail[0])}
- >
- {#each images as { image, alt } (image)}
- <SwiperSlide>
- <img class="image-fluid" style="width:100%" src={image} {alt} />
- </SwiperSlide>
- {/each}
- </Swiper>
- </div>
- <div class="col-md-5 my-2">
- <h2>Helping you conquer Mount Doom.</h2>
- <p><a href="/contact" class="btn btn-success shadow">FREE 15 Minute Consultation</a></p>
- </div>
-</div>
-
-<div class="bg-light rounded p-3 shadow">
- <div class="d-flex justify-content-center">
- <div class="col-md-8 mt-2 border-bottom">
- <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 />
- <p>
- Misty Mountains Therapy is a privately owned, high quality, specialty therapy clinic,
- founded in January 2020 by Jefferson Hunt. We are dedicated to providing comprehensive
- therapy evaluation and treatment services to children and adults for a wide variety of
- disorders in the most efficient and effective manner possible in the Rexburg area. We
- believe that therapy should be fun, engaging, and most importantly, useful to our clients.
- </p>
- <p>
- We are currently accepting new clients and offer a variety of services to <strong>help you live the
- life you desire</strong>. To find the right fit for you, schedule a <a href="/contact"
- >free 15-minute consultation</a
- >.
- </p>
- </div>
- </div>
-
- <div class="d-flex justify-content-center">
- <div class="col-md-8 mt-2">
- <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">(800)273-TALK</a> (8255), or text HELLO to 741-741.
- </div>
- </div>
- </div>
- <br />
-</div>