12 lines
355 B
Plaintext
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>
|
|
}
|