diff options
Diffstat (limited to 'src/routes/services')
| -rw-r--r-- | src/routes/services/index.svelte | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/routes/services/index.svelte b/src/routes/services/index.svelte index e6ac4de..1a02120 100644 --- a/src/routes/services/index.svelte +++ b/src/routes/services/index.svelte @@ -1,10 +1,11 @@ <script> import DirectionCard from '../../components/DirectionCard.svelte'; + import { servicesImages } from '$lib/data/images'; </script> <main> <h1 class="text-center">Our Services.</h1> - <DirectionCard direction="left" imageSpec={{image: "https://ztxoywaazhxdeiftmsiy.supabase.co/storage/v1/object/public/mistymountains/girl.jpg", alt: "Girl looking at camera"}}> + <DirectionCard direction="left" imageSpec={{image: servicesImages.girl, alt: "Girl looking at camera"}}> <h2>Therapy</h2> <em>We provide personalized, unassuming, and nonjudgemental guidance in the following:</em> <ul> @@ -24,7 +25,7 @@ <li><em>And more</em></li> </ul> </DirectionCard> - <DirectionCard direction="right" imageSpec={{image: "https://ztxoywaazhxdeiftmsiy.supabase.co/storage/v1/object/public/mistymountains/guy.jpg", alt: "Boy smiling to left"}}> + <DirectionCard direction="right" imageSpec={{image: servicesImages.guy, alt: "Boy smiling to left"}}> <h2>Screeners</h2> <em>We perform high quality screening for:</em> <ul> |
