Files
spend-sparrow/internal/template/not_found.templ
Tim Wundenberg 6219741634
All checks were successful
Build Docker Image / Build-Docker-Image (push) Successful in 4m49s
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Successful in 5m8s
fix: move implementation to "internal" package
2025-05-29 13:42:13 +02:00

12 lines
355 B
Plaintext

package template
templ NotFound() {
<main class="flex h-full justify-center items-center">
<div class="p-16 rounded-lg">
<h1 class="text-4xl mb-5">Not Found</h1>
<p class="text-lg mb-5">The page you are looking for does not exist.</p>
<a href="/" class="button button-primary text-2xl py-2 px-4 mt-10">Go back to home</a>
</div>
</main>
}