diff options
Diffstat (limited to 'src/routes/approach')
| -rw-r--r-- | src/routes/approach/index.svelte | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/routes/approach/index.svelte b/src/routes/approach/index.svelte index 90a0863..3a4e963 100644 --- a/src/routes/approach/index.svelte +++ b/src/routes/approach/index.svelte @@ -1,10 +1,14 @@ +<script> + import { approachImage } from '$lib/data/images'; +</script> + <main> <h1 class="text-center">Our Approach.</h1> <div class="bg-light rounded p-4 shadow"> <div class="row justify-content-center"> <div class="col-sm-10"> <div style="text-align:center"> - <img class="shadow" src="https://ztxoywaazhxdeiftmsiy.supabase.co/storage/v1/object/public/mistymountains/boats.jpg" alt="boats in water" style="width:60%;border-radius: 0.25em;"> + <img class="shadow" src={approachImage} alt="boats in water" style="width:60%;border-radius: 0.25em;"> </div> <br> <p>We meet each client where they are at and customize their therapeutic journey to best fit their personality and issues. Some of the approaches we use most are listed below:</p> |
