mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 21:09:11 +00:00
13 lines
331 B
Plaintext
13 lines
331 B
Plaintext
package text
|
|
|
|
templ TitleDescription(title string, subtitle string) {
|
|
<div class="flex flex-col items-center justify-center h-full w-full gap-2.5">
|
|
<h1 class="text-2xl md:text-3xl lg:text-4xl font-bold">
|
|
{ title }
|
|
</h1>
|
|
<p class="text-md md:text-lg lg:text-xl font-medium text-gray-500">
|
|
{ subtitle }
|
|
</p>
|
|
</div>
|
|
}
|