11 lines
226 B
Plaintext
11 lines
226 B
Plaintext
package components
|
|
|
|
templ NotFound() {
|
|
@rootLayout() {
|
|
<main class="w-full h-full flex flex-col gap-0 items-center justify-center">
|
|
<h1 class="text-3xl">404</h1>
|
|
<p class="text-base">Page not found</p>
|
|
</main>
|
|
}
|
|
}
|