first commit

This commit is contained in:
2026-04-07 07:43:30 +02:00
commit 3f76639497
16 changed files with 2568 additions and 0 deletions

8
src/layout/card.tsx Normal file
View File

@@ -0,0 +1,8 @@
export const Card = ({ title, body }: { title: string; body: string }) => (
<div class="card bg-base-100 shadow-xl w-96">
<div class="card-body">
<h2 class="card-title">{title}</h2>
<p>{body}</p>
</div>
</div>
)