-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.vue
49 lines (43 loc) · 1.02 KB
/
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
42
43
44
45
46
47
48
49
<template>
<!-- Landing page in case of errors. -->
<div class="error">
<NuxtLink to="/" title="Homepage" class="flex items-center space-x-3 rtl:space-x-reverse">
<img src="~/assets/imgs/Logo.svg" class="h-36" alt="Flowbite Logo" />
<span class="name"><strong>HERmet </strong></span>
</NuxtLink>
<br>
<div>
<p class="message"><strong>Lost in the Digital World?</strong></p>
</div>
<div>
<p class="message2">
This page isn't here, but we are. <br>Please try searching for what you need or return to the homepage. <br>Your safety and support are our priority.
</p>
</div>
</div>
</template>
<script>
export default {
name: "error"
}
</script>
<style scoped>
.name {
font-size: 3rem;
color: black;
}
.message, .message2 {
font-size: 1.5rem;
}
.error {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
color: #d62828;
padding-left: 10px;
padding-right: 10px;
}
</style>