feat: initial commit

This commit is contained in:
2025-06-10 21:09:58 +02:00
commit 1fb753469e
84 changed files with 3912 additions and 0 deletions

View File

@ -0,0 +1,20 @@
package component
type ErrorPageVModel struct {
Message string
}
templ ErrorPage(vmodel ErrorPageVModel) {
@Page(WithTitle("Error")) {
<div class="is-flex is-justify-content-center is-align-items-center is-fullheight">
<article class="message is-danger">
<div class="message-header">
<p>Error</p>
</div>
<div class="message-body">
{ vmodel.Message }
</div>
</article>
</div>
}
}