12 lines
379 B
Plaintext
12 lines
379 B
Plaintext
package template
|
|
|
|
templ NotFound() {
|
|
<main class="flex h-full justify-center items-center ">
|
|
<div class="bg-error p-16 rounded-lg">
|
|
<h1 class="text-4xl text-error-content mb-5">Not Found</h1>
|
|
<p class="text-lg text-error-content mb-5">The page you are looking for does not exist.</p>
|
|
<a href="/" class="btn btn-lg btn-primary">Go back to home</a>
|
|
</div>
|
|
</main>
|
|
}
|