Migrate more stuff

This commit is contained in:
Jon Staab
2025-02-03 16:37:14 -08:00
parent 0f705c459a
commit 8d3433b167
150 changed files with 2001 additions and 1205 deletions
+11 -2
View File
@@ -1,4 +1,13 @@
<script lang="ts">
interface Props {
title?: import("svelte").Snippet
info?: import("svelte").Snippet
}
let {title, info}: Props = $props()
</script>
<div class="column m-auto max-w-xs gap-2 py-4">
<h1 class="heading"><slot name="title" /></h1>
<p class="text-center"><slot name="info" /></p>
<h1 class="heading">{@render title?.()}</h1>
<p class="text-center">{@render info?.()}</p>
</div>