zed/crates/collab/templates/error.hbs
Nathan Sobo ab8204368c Rename zed-server to collab
Over time, I think we may end up having multiple services, so it seems like a good opportunity to name this one more specifically while the cost is low. It just seems like naming it "zed" and "zed-server" leaves it a bit open ended.
2022-04-09 08:30:42 -06:00

15 lines
511 B
Handlebars

{{#> layout }}
<div class="max-w-screen-lg p-10 mx-auto text-main font-extralight lg:p-20">
<article class="max-w-xl">
<h1 class="mb-5 text-4xl text-white font-display font-extralight">Sorry!</h1>
<p class="mb-5 leading-relaxed">
Looks like we encountered a {{status}} error: {{reason}}
</p>
<p class="leading-relaxed">
Try refreshing or going <a class="underline hover:no-underline" href="/">home</a>.
</p>
</article>
</div>
{{/layout}}