initial commit

This commit is contained in:
Joakim Repomaa
2026-02-17 02:15:25 +02:00
commit 72a636d175
55 changed files with 6171 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<script lang="ts">
import type { Snippet } from 'svelte';
interface Props {
title: string;
children: Snippet;
}
let { title, children }: Props = $props();
</script>
<section class="mb-6 pb-3 border-b border-pdf-muted/30 last:border-b-0">
<h2 class="text-sm font-bold text-pdf-fg flex items-center uppercase tracking-wide">
{title}
</h2>
<div class="mt-3">
{@render children()}
</div>
</section>