-
Notifications
You must be signed in to change notification settings - Fork 2
/
error.vue
41 lines (38 loc) · 814 Bytes
/
error.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<template>
<NuxtLayout>
<section class="error-banner">
<!-- 404 Page -->
<h1>404 - Seite nicht gefunden</h1>
<p>
Die Seite, die du suchst, existiert nicht. Möglicherweise wurde sie
verschoben oder gelöscht.
</p>
<NuxtImg
src="svg/not_found.svg"
alt="Space Aliens nothing found image"
format="webp"
/>
</section>
</NuxtLayout>
</template>
<script>
export default {
layout: 'error',
// eslint-disable-next-line vue/require-prop-types
props: ['error'],
}
</script>
<style scoped lang="scss">
.error-banner {
margin-top: 6rem;
height: 80vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
img {
margin-top: var(--space-large);
max-width: 500px;
}
}
</style>