mirror of
https://github.com/onsonr/nebula.git
synced 2025-03-10 17:29:11 +00:00
16 lines
321 B
Plaintext
16 lines
321 B
Plaintext
package text
|
|
|
|
import "github.com/onsonr/nebula/ui/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()
|
|
}
|