refactor: improve address display in property details

This commit is contained in:
Prad Nukala
2024-12-08 18:48:04 -05:00
parent 6bb2c2143e
commit 4087fdd79e
33 changed files with 2132 additions and 31 deletions
+15
View File
@@ -0,0 +1,15 @@
package text
import "github.com/onsonr/sonr/pkg/blocks/layout"
templ Header(title string, subtitle string) {
<div class="flex flex-col items-center justify-center h-full">
<h1 class="text-3xl font-bold mb-2.5">
{ title }
</h1>
<p class="text-lg text-neutral-500">
{ subtitle }
</p>
</div>
@layout.Spacer()
}