-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.vue
29 lines (22 loc) · 909 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
<template>
<div>
<section class="header5 cid-t7W19CM5wS mbr-fullscreen mbr-parallax-background" id="header5-2">
<div class="mbr-overlay" style="opacity: 0.2; background-color: rgb(53, 53, 53);"></div>
<div class="container">
<div class="row justify-content-end">
<div class="col-12 col-lg-7">
<h1 class="mbr-section-title mbr-fonts-style mbr-white mb-3 display-1"><strong>Oops Error
Page</strong></h1>
<p class="mbr-text mbr-fonts-style mbr-white display-7">
<a href="/" class="text-primary">Please go back to the homepage.</a></p>
</div>
</div>
</div>
</section>
</div>
</template>
<script setup>
useHead({
title: 'Oops Error Page',
})
</script>