feat: add listen section

This commit is contained in:
Julian Tölle 2023-11-04 01:27:13 +01:00
parent e8f4fd6fc7
commit cc300c6868
5 changed files with 24 additions and 5 deletions

1
src/lib/divider.svelte Normal file
View file

@ -0,0 +1 @@
<div class="border-t-[1px] my-8"></div>

View file

@ -1 +1,5 @@
<h2 class="text-4xl font-vinque my-8"><slot /></h2>
<script lang="ts">
export let id: string = "";
</script>
<h2 class="text-4xl font-vinque my-8" {id}><slot /></h2>