feat: space card for spaces list

This commit is contained in:
juancwu 2026-04-11 15:38:20 +00:00
commit fec29bcc0e
7 changed files with 92 additions and 8 deletions

View file

@ -0,0 +1,8 @@
package blocks
templ PageHeader(heading, subHeading string) {
<div class="mb-8">
<h1 class="text-3xl font-bold">{ heading }</h1>
<p class="text-muted-foreground mt-2">{ subHeading }</p>
</div>
}