wip, run migration command, fix api

This commit is contained in:
2025-01-21 00:08:18 -05:00
parent 08b56e13f3
commit d08171ef14
37 changed files with 8894 additions and 8458 deletions

View File

@@ -1,3 +1,11 @@
<script lang="ts">
interface Props {
children?: import('svelte').Snippet;
}
let { children }: Props = $props();
</script>
<h1 class="poetry-headline">
<slot></slot>
{@render children?.()}
</h1>

View File

@@ -1,3 +1,11 @@
<script lang="ts">
interface Props {
children?: import('svelte').Snippet;
}
let { children }: Props = $props();
</script>
<p class="whitespace-pre-wrap">
<slot></slot>
{@render children?.()}
</p>