This commit is contained in:
eggy 2022-07-22 15:40:31 -04:00
parent 9105010387
commit 35d37d1a2a

View File

@ -1,12 +1,20 @@
<template> <template>
<ContentDoc tag="article" class="prose dark:prose-invert"> <ContentDoc tag="article" class="prose dark:prose-invert">
<template #not-found> Document not found </template> <template #not-found>
<!-- 404 -->
<main class="prose dark:prose-invert">
<h1>404 - Not Found</h1>
<p>Maybe you can find somewhere else?</p>
</main>
</template>
</ContentDoc> </ContentDoc>
</template> </template>
<style> <style>
article { article,
main {
width: 90%; width: 90%;
height: 100%; height: 100%;
padding-top: 2rem;
} }
</style> </style>