Files
vault/ui/app/components/not-found.hbs
Angel Garbarino 9506160c7d Glimmerize old components (#24068)
* update transforms

* glimmer transform alphabet

* move alphabet edit

* license info and remove block error

* logo edition

* not found

* Update ui/app/components/logo-edition.js

Co-authored-by: Kianna <30884335+kiannaquach@users.noreply.github.com>

* ad js docs

---------

Co-authored-by: Kianna <30884335+kiannaquach@users.noreply.github.com>
2023-11-10 12:43:44 -07:00

21 lines
609 B
Handlebars

{{!
Copyright (c) HashiCorp, Inc.
SPDX-License-Identifier: BUSL-1.1
~}}
<div class="box is-shadowless" data-test-not-found>
<PageHeader as |p|>
<p.levelLeft>
<h1 class="title is-3 has-text-grey">
404 Not Found
</h1>
</p.levelLeft>
</PageHeader>
<div class="box is-sideless has-background-white-bis has-text-grey has-text-centered">
<p>Sorry, we were unable to find any content at <code>{{or @model.path this.path}}</code>.</p>
<p>
Double check the url or
<ExternalLink @href="/" @sameTab={{true}}>go back home</ExternalLink>.
</p>
</div>
</div>