-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(docs): created 404 default page
- Loading branch information
1 parent
0acc2d2
commit 43a944a
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
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,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> |