Files
WRNexusJS/.publish/ui/components/ErrorState.wrn
T
2026-07-19 13:38:23 +05:30

13 lines
580 B
Plaintext

component ErrorState {
props {
code = "500"
title = "Something went wrong"
description = "Please try again."
actionLabel = "Try again"
actionHref = "/"
}
view {
<div class="mx-auto max-w-2xl px-4 py-24 text-center"><div class="text-8xl font-black text-violet-100 dark:text-violet-950">{code}</div><h1 class="-mt-4 text-3xl font-black">{title}</h1><p class="mt-4 text-slate-500">{description}</p><a href="{actionHref}" class="mt-8 inline-flex min-h-12 items-center rounded-xl bg-violet-600 px-5 font-semibold text-white">{actionLabel}</a></div>
}
}