-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.vue.bak
More file actions
38 lines (33 loc) · 1.51 KB
/
Copy patherror.vue.bak
File metadata and controls
38 lines (33 loc) · 1.51 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
30
31
32
33
34
35
36
37
38
<template>
<div class="min-h-screen bg-surface flex items-center justify-center px-6 relative overflow-hidden">
<!-- Glow Background -->
<div class="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-[500px] h-[500px] bg-brand/10 blur-[120px] animate-pulse-slow"></div>
<div class="max-w-xl w-full text-center relative z-10">
<div class="mb-12 relative inline-block">
<h1 class="text-[12rem] md:text-[15rem] font-black leading-none text-slate-900 select-none">404</h1>
<div class="absolute inset-0 flex items-center justify-center">
<div class="text-3xl md:text-5xl font-black text-brand tracking-tighter transform -rotate-12">PAGE NOT FOUND</div>
</div>
</div>
<p class="text-slate-400 text-lg md:text-xl font-medium mb-12">
The system couldn't find the resource you're looking for. It might have been moved or doesn't exist anymore.
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<NuxtLink to="/" class="btn-primary flex items-center justify-center gap-3 px-10 py-4">
<HomeIcon class="w-5 h-5" />
Back to Home
</NuxtLink>
<button @click="$router.back()" class="btn-secondary flex items-center justify-center gap-3 px-10 py-4">
<ArrowLeftIcon class="w-5 h-5" />
Go Back
</button>
</div>
</div>
</div>
</template>
<script setup>
import { HomeIcon, ArrowLeftIcon } from 'lucide-vue-next'
defineProps({
error: Object
})
</script>