-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add not found page * hide errors * redirect to not_found * remove unnecessary data * use slot * ok rel=noopener
- Loading branch information
Showing
10 changed files
with
132 additions
and
9 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export const ERROR_MESSAGE_404 = 'Request failed with status code 404'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<template> | ||
<div> | ||
<EmptyState | ||
icon="mdi-code-brackets" | ||
title="Error 404. Page not found." | ||
> | ||
<template #description> | ||
<span class='body-1 font-weight-light text--secondary mt-1'> | ||
Please, try again or write to our team in | ||
<a class='no-decoration' href='https://discord.gg/aG8XKuwsQd' target='_blank' rel="noopener">Discord</a>. | ||
</span> | ||
</template> | ||
</EmptyState> | ||
<div class="d-flex justify-center"> | ||
<v-btn | ||
class="text--secondary" | ||
large depressed | ||
color="border" | ||
to="/" | ||
elevation="0" | ||
> | ||
GO TO HOMEPAGE | ||
</v-btn> | ||
<v-btn | ||
class="ml-6 text--secondary" | ||
large depressed | ||
color="border" | ||
to="/search" | ||
elevation="0" | ||
> | ||
ADVANCED SEARCH | ||
</v-btn> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import EmptyState from "../../components/Cards/EmptyState"; | ||
export default { | ||
name: "NotFound", | ||
components: {EmptyState}, | ||
metaInfo: { | ||
meta: [ | ||
{ | ||
name: 'robots', | ||
content: 'noindex', | ||
}, | ||
], | ||
}, | ||
} | ||
</script> | ||
|
||
<style scoped> | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters