-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
53 lines (53 loc) · 3.16 KB
/
Copy path404.html
File metadata and controls
53 lines (53 loc) · 3.16 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
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="noindex" />
<link rel="icon" href="favicon/favicon.ico">
<link rel="icon" type="image/svg+xml" href="favicon/favicon.svg">
<link rel="apple-touch-icon" href="favicon/apple-touch-icon.png">
<title>404 - Vali</title>
<meta name="description" content="Page not found on Vali's security blog." />
<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=Syne:wght@400;600;700;800&family=Outfit:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="site.css" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="interactive.css" />
<style>
.not-found-shell { min-height: calc(100vh - 82px); display: grid; place-items: center; padding: 7rem 6vw 4rem; }
.not-found-card { width: min(780px, 100%); border: 1px solid var(--border); border-radius: 28px; padding: clamp(2rem, 5vw, 4rem); background: linear-gradient(135deg, rgba(79, 140, 255, 0.10), rgba(139, 92, 246, 0.06)); box-shadow: 0 30px 90px rgba(0,0,0,.35); position: relative; overflow: hidden; }
.not-found-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(79, 140, 255, .24), transparent 34%); pointer-events: none; }
.not-found-code { font-family: var(--mono); color: var(--accent); letter-spacing: .16em; text-transform: uppercase; font-size: .78rem; margin-bottom: 1rem; position: relative; }
.not-found-card h1 { font-family: var(--display); font-size: clamp(3rem, 10vw, 7rem); margin: 0 0 .6rem; line-height: .9; letter-spacing: -.07em; position: relative; }
.not-found-card p { color: var(--text2); line-height: 1.8; max-width: 34rem; position: relative; }
.not-found-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; position: relative; }
</style>
</head>
<body class="site-page">
<nav>
<a href="index.html" class="nav-logo"><span>~/</span>Vali</a>
<ul class="nav-links">
<li><a href="index.html#about">About</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="learning-path.html">Path</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
<div class="nav-right"><button class="theme-btn" onclick="toggleTheme()">[ theme ]</button></div>
</nav>
<main class="not-found-shell">
<section class="not-found-card fade-in">
<div class="not-found-code">// route not found</div>
<h1>404</h1>
<p>The page you tried to reach does not exist, moved, or got lost somewhere between recon and exploitation.</p>
<div class="not-found-actions">
<a class="btn btn-primary" href="blog.html">Open blog -></a>
<a class="btn btn-ghost" href="learning-path.html">View learning path</a>
<a class="btn btn-ghost" href="index.html">Back home</a>
</div>
</section>
</main>
<script src="script.js"></script>
</body>
</html>