Skip to content

Commit

Permalink
feat(docs): created 404 default page
Browse files Browse the repository at this point in the history
  • Loading branch information
93lucasp authored and prometherion committed Nov 6, 2021
1 parent 0acc2d2 commit 43a944a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions docs/src/pages/404.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<template>
<layout-default>
<div class="mx-auto space-y-4 py-16 text-center">
<h1 class="text-2xl sm:text-4xl font-semibold">404 - Page not found</h1>
<p>We couldn't find the page you are looking for</p>
<app-button link="/">Home</app-button>
</div>
</layout-default>
</template>
<script>
import AppButton from "~/components/AppButton.vue";
export default {
metaInfo() {
return {
title: "404 - Page not found",
};
},
components: {
AppButton,
},
};
</script>

0 comments on commit 43a944a

Please sign in to comment.