Files
portfolio/components/notfound.templ
2025-02-13 08:35:26 +01:00

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>
}
}