-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.vue
More file actions
29 lines (27 loc) · 1.4 KB
/
error.vue
File metadata and controls
29 lines (27 loc) · 1.4 KB
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
class="px-[12px] md:px-[36px] xl:px-0 mt-[70px] flex flex-col justify-center items-center text-center lg:mt-[161px]">
<div class="max-w-[565px] mb-[50px]"> <img class="h-full w-full object-cover" src="/assets/images/404.png"
alt="404 image">
</div>
<h1
class="font-chivo text-[35px] leading-[44px] sm:text-[46px] sm:leading-[52px] md:text-heading-1 font-extrabold mb-7">
Whoops! That page doesn’t exist.
</h1>
<h4 class="font-bold font-chivo text-[14px] xl:text-heading-5 text-gray-500 mb-[70px]">The page you requested could
not be found
</h4>
<button type="button"> <a
class="flex items-center z-10 relative transition-all duration-200 group px-[22px] py-[15px] lg:px-[32px] lg:py-[22px] rounded-[50px] bg-gray-900 text-white hover:bg-gray-100 hover:text-gray-900 flex-row-reverse"
href="/"><span class="block text-inherit w-full h-full rounded-[50px] text-lg font-chivo font-semibold">Back
to Homepage</span><i> <img class="mr-4 rotate-180 filter-white w-[12px] group-hover:filter-black"
src="/assets/images/icons/icon-right.svg" alt="arrow right icon"></i></a></button>
</div>
</template>
<script setup>
useHead({
bodyAttrs: {
class: "overflow-x-hidden w-screen relative error-page"
},
})
</script>