-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
47 lines (47 loc) · 3.06 KB
/
404.html
File metadata and controls
47 lines (47 loc) · 3.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/>
<meta name="robots" content="noindex,nofollow"/>
<title>Page Not Found | Falcon 98</title>
<link rel="icon" type="image/png" href="https://res.cloudinary.com/dkj22lm1g/image/upload/v1763972046/Falcon_98-1_cx8xvv.png"/>
<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@400;600;700;800&display=swap" rel="stylesheet"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"/>
<style>
:root{--ink:#0a0f1e;--navy:#1e3a8a;--navy-glow:#6b9bfa;--cream:#faf9f7;--white:#fff;--body:'Plus Jakarta Sans',-apple-system,sans-serif}
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:var(--body);min-height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:center;background:var(--ink);color:var(--white);text-align:center;padding:2rem}
.container{max-width:600px}
.logo{width:100px;height:100px;margin-bottom:2rem;animation:float 3s ease-in-out infinite}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
.error-code{font-size:8rem;font-weight:800;background:linear-gradient(135deg,#93c5fd 0%,#f9a8a8 50%,#fcd34d 100%);background-size:200% 200%;-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;animation:shimmer 6s ease-in-out infinite;line-height:1}
@keyframes shimmer{0%,100%{background-position:0% 50%}50%{background-position:100% 50%}}
h1{font-size:1.5rem;font-weight:700;margin:1rem 0;color:var(--white)}
p{color:rgba(255,255,255,.6);margin-bottom:2rem;line-height:1.7}
.btn{display:inline-flex;align-items:center;gap:.5rem;background:var(--white);color:var(--ink);padding:.85rem 1.75rem;border-radius:200px;font-weight:700;font-size:.95rem;text-decoration:none;transition:all .35s cubic-bezier(.16,1,.3,1)}
.btn:hover{background:var(--navy-glow);transform:translateY(-2px);box-shadow:0 10px 32px rgba(107,155,250,.35)}
.btn i{font-size:.8rem}
.links{margin-top:3rem;display:flex;gap:1rem;flex-wrap:wrap;justify-content:center}
.links a{color:rgba(255,255,255,.4);font-size:.875rem;text-decoration:none;transition:color .2s}
.links a:hover{color:var(--navy-glow)}
</style>
</head>
<body>
<div class="container">
<img src="https://res.cloudinary.com/dkj22lm1g/image/upload/v1763972046/Falcon_98-1_cx8xvv.png" alt="Falcon 98" class="logo"/>
<div class="error-code">404</div>
<h1>Page Not Found</h1>
<p>Oops! The page you're looking for doesn't exist or has been moved. Let's get you back on track.</p>
<a href="/" class="btn"><i class="fas fa-home"></i> Back to Home</a>
<div class="links">
<a href="/#about">About Us</a>
<a href="/#services">Services</a>
<a href="/#projects">Projects</a>
<a href="/#contact">Contact</a>
</div>
</div>
</body>
</html>