Files
spend-sparrow/template/index.templ
Tim Wundenberg f24f1bb82e
All checks were successful
Build Docker Image / Build-Docker-Image (push) Successful in 4m24s
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Successful in 4m30s
feat: add missing stylings for buttons and inputs
2025-05-05 20:08:45 +02:00

15 lines
556 B
Plaintext

package template
templ Index() {
<div class="h-full text-center flex flex-col items-center justify-center">
<h1 class="flex gap-2 w-full justify-center">
<img class="w-24" src="/static/favicon.svg" alt="SpendSparrow logo" />
<span class="text-8xl tracking-tighter font-bold font-pirata">SpendSparrow</span>
</h1>
<h2 class="text-3xl mt-8 text-gray-800">
Spend on the important<span class="text-sm">, like a fine Whiskey</span>
</h2>
<a href="/auth/signup" class="mt-24 button button-primary text-2xl p-4 font-bold">Getting Started</a>
</div>
}