change name

This commit is contained in:
Jesse Winton
2025-04-14 15:02:00 -04:00
parent e521c1f672
commit 4f3258de38
2 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<script lang="ts">
export let text: string;
const words = text.split(' ');
</script>
<span class="sr-only">{text}</span>
<span class="relative">
{#each words as word, i}
<span
class="animate-enter mr-2 inline-block"
style:animation-delay="{i * 75}ms
">{word}</span
>
{/each}
</span>