mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-08-25 16:07:24 +00:00
feat(docs): created 404 default page
This commit is contained in:
committed by
Dario Tranchitella
parent
0acc2d2ef1
commit
43a944ace0
@@ -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>
|
||||
Reference in New Issue
Block a user