develop #1

Merged
aboutrax merged 7 commits from develop into main 2025-10-04 23:36:52 +00:00
Showing only changes of commit a49ef8ac8d - Show all commits

View File

@@ -0,0 +1,14 @@
<script lang="ts">
import { m } from '$lib/paraglide/messages.js';
let { cssClass = '' }: { cssClass?: string } = $props();
</script>
<section class={`bg-amber-50 ${cssClass}`}>
<h2 class="text-sm font-medium">{m['welcome.header']()}</h2>
<p>
{m['welcome.before_name']()}
<span class="font-bold">{m['name']()}</span>
{m['welcome.after_name']()}
</p>
</section>