aboutsummaryrefslogtreecommitdiff
path: root/src/routes/team
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/team
parent0248a3899ed910f005dccaeefc1d9dcb893e8154 (diff)
downloadmistymountainstherapy-9af1854a7e35785a8e86426c4fb1edd465f164a3.tar.gz
mistymountainstherapy-9af1854a7e35785a8e86426c4fb1edd465f164a3.zip
Massive refactor courtesy of 5 dollars of AI tokens
Diffstat (limited to 'src/routes/team')
-rw-r--r--src/routes/team/+page.svelte (renamed from src/routes/team/index.svelte)8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/routes/team/index.svelte b/src/routes/team/+page.svelte
index 631645b..12e068f 100644
--- a/src/routes/team/index.svelte
+++ b/src/routes/team/+page.svelte
@@ -3,20 +3,20 @@
import { people } from '$lib/data/people';
</script>
-<main>
+<div>
<h1 class="text-center">Our Team.</h1>
{#if people.length}
- {#each people as person, i}
+ {#each people as person, i (person.email)}
<div class="row border-bottom">
<DirectionCard
imageSpec={{ image: person.image, alt: person.name }}
direction={i % 2 ? 'left' : 'right'}
>
<h2>{person.name}, {person.position}</h2>
- <p style="white-space: pre-line">{person.bio}</p>
<a href="mailto:{person.email}"><p>{person.email}</p></a>
+ <p style="white-space: pre-line">{person.bio}</p>
</DirectionCard>
</div>
{/each}
{/if}
-</main>
+</div>