-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
36 lines (33 loc) · 1.06 KB
/
404.html
File metadata and controls
36 lines (33 loc) · 1.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>404 | TanziTech</title>
<meta name="description" content="Page not found on TanziTech.">
<link rel="stylesheet" href="/styles.css">
</head>
<body>
<canvas id="matrix-canvas"></canvas>
<div class="matrix-overlay"></div>
<header class="topbar">
<div class="brand">TanziTech // ROUTE NOT FOUND</div>
<nav class="nav">
<a href="/en/">Home</a>
<a href="/en/posts/">Archive</a>
</nav>
</header>
<main class="layout">
<section class="panel hero">
<div class="terminal-line">[ERROR 404] Requested route not found.</div>
<h1>Page not found</h1>
<p class="lead">The requested page does not exist, was moved, or the path is invalid.</p>
<div class="cta-row">
<a class="btn btn-primary" href="/en/">Back to Home</a>
<a class="btn btn-secondary" href="/en/posts/">Open Archive</a>
</div>
</section>
</main>
<script src="/matrix.js"></script>
</body>
</html>