mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-11 13:29:12 +00:00
16 lines
334 B
Plaintext
16 lines
334 B
Plaintext
package text
|
|
|
|
import "github.com/onsonr/sonr/pkg/common/styles/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()
|
|
}
|