mirror of
https://github.com/onsonr/hway.git
synced 2025-03-10 21:09:11 +00:00
20 lines
381 B
Plaintext
20 lines
381 B
Plaintext
package views
|
|
|
|
import (
|
|
"github.com/onsonr/nebula/ui/hero"
|
|
"github.com/onsonr/nebula/ui/layout"
|
|
)
|
|
|
|
templ ErrorView(err string) {
|
|
@layout.Root("Error | Sonr.ID") {
|
|
@layout.Container() {
|
|
@hero.Title("Uh oh!", "Something went wrong.")
|
|
<div class="pt-3 flex flex-col items-center justify-center h-full">
|
|
<p class="text-red-500">
|
|
{ err }
|
|
</p>
|
|
</div>
|
|
}
|
|
}
|
|
}
|