initial page

This commit is contained in:
2025-02-13 08:24:00 +01:00
parent 2cc8a03491
commit 32fea815f2
47 changed files with 2490 additions and 0 deletions

10
components/notfound.templ Normal file
View File

@@ -0,0 +1,10 @@
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>
}
}