-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
90 lines (79 loc) · 3.23 KB
/
Copy path404.html
File metadata and controls
90 lines (79 loc) · 3.23 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LOCALM | 404 - Lost Connection</title>
<link rel="icon" type="image/png" href="./assets/logo.png">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#0F172A',
secondary: 'rgb(0, 254, 39)',
bg-light: '#F8FAFC',
},
fontFamily: {
sans: ['Plus Jakarta Sans', 'sans-serif'],
}
}
}
}
</script>
<!-- Lucide Icons -->
<script src="https://unpkg.com/lucide@latest"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<style>
body {
background-color: #FFFFFF;
}
.btn-primary {
background: #0F172A;
color: #FFFFFF;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.3);
}
</style>
</head>
<body class="font-sans overflow-hidden h-screen flex flex-col items-center justify-center">
<div class="relative z-10 text-center px-6">
<div class="mb-12 flex justify-center">
<div class="w-24 h-24 bg-slate-50 rounded-[2.5rem] flex items-center justify-center border border-slate-100 shadow-sm">
<i data-lucide="satellite-dish" class="w-10 h-10 text-slate-400"></i>
</div>
</div>
<h1 class="text-9xl font-extrabold text-slate-900 mb-6 tracking-tighter opacity-10">404</h1>
<h2 class="text-4xl md:text-5xl font-extrabold text-slate-900 mb-8 tracking-tight">Lost in Transit.</h2>
<p class="text-slate-500 max-w-md mx-auto mb-12 text-lg font-medium leading-relaxed">
The packet you requested could not be routed. The destination either moved or never existed.
</p>
<a href="index.html" class="btn-primary inline-flex items-center gap-3 px-10 py-4 rounded-2xl font-bold text-lg">
<i data-lucide="arrow-left" class="w-5 h-5"></i>
Back to Safety
</a>
</div>
<!-- Minimal background decoration -->
<div class="absolute top-1/4 left-1/4 w-96 h-96 bg-secondary/5 blur-[120px] rounded-full"></div>
<div class="absolute bottom-1/4 right-1/4 w-96 h-96 bg-primary/5 blur-[120px] rounded-full"></div>
<script>
lucide.createIcons();
gsap.from(".relative > *", {
y: 20,
opacity: 0,
duration: 1,
stagger: 0.1,
ease: "power3.out"
});
</script>
</body>
</html>