-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
153 lines (135 loc) · 5.57 KB
/
404.html
File metadata and controls
153 lines (135 loc) · 5.57 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<meta name="build-version" content="2026-04-15T11:12:29.717Z">
<title>Page Not Found - Iron_Adamant</title>
<meta name="description" content="The page you're looking for couldn't be found.">
<!-- Favicon -->
<link rel="icon" type="image/png" href="/favicon.png">
<link rel="stylesheet" href="css/main.css?v=1776251549719">
<link rel="stylesheet" href="css/accessibility.css?v=1776251549719">
<link rel="stylesheet" href="css/mobile-nav.css?v=1776251549719">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css?v=1766516293480"
media="print" onload="this.media='all'">
<style>
.error-404 {
min-height: calc(100vh - 100px);
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 2rem;
}
.error-content {
max-width: 600px;
}
.error-code {
font-size: 6rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 1rem;
letter-spacing: 3px;
}
.error-title {
font-size: 2rem;
margin-bottom: 1rem;
color: var(--text);
}
.error-message {
font-size: 1.1rem;
color: var(--text-muted);
margin-bottom: 2rem;
line-height: 1.6;
}
.error-glyph {
font-size: 3rem;
color: var(--primary);
margin-bottom: 2rem;
opacity: 0.6;
animation: pulse 2s ease-in-out infinite;
}
</style>
</head>
<body>
<!-- Unified Background Element -->
<div class="unified-background"></div>
<!-- Necron Glyphs Background Elements -->
<div class="necron-glyph circuit-circle" style="top: 20%; left: 5%;"></div>
<div class="necron-glyph circuit-circle" style="top: 70%; left: 90%;"></div>
<div class="necron-glyph connected-nodes" style="top: 40%; left: 85%;">
<div class="node node-1"></div>
<div class="node node-2"></div>
<div class="node node-3"></div>
<div class="node node-4"></div>
<div class="node node-5"></div>
</div>
<a href="#main-content" class="skip-link">Skip to main content</a>
<header>
<div class="container">
<nav aria-label="Main navigation">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="apps.html">Apps</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<button class="hamburger" aria-label="Toggle menu" aria-expanded="false">
<span></span>
<span></span>
<span></span>
</button>
</nav>
</div>
</header>
<!-- Mobile Navigation -->
<div class="nav-overlay"></div>
<nav class="mobile-nav" aria-label="Mobile navigation">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="apps.html">Apps</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main id="main-content" tabindex="-1">
<div class="error-404">
<div class="error-content">
<div class="error-glyph" aria-hidden="true">🔍</div>
<div class="error-code">404</div>
<h1 class="error-title">Page Not Found</h1>
<p class="error-message">
The page you're looking for doesn't exist or has been moved.
Check the URL or return to the homepage to explore my projects.
</p>
<div class="cta-buttons">
<a href="index.html" class="btn">Go to Homepage</a>
<a href="projects.html" class="btn btn-secondary">View Projects</a>
</div>
</div>
</div>
</main>
<footer>
<div class="container">
<p>© 2026 Iron_Adamant. All rights reserved.</p>
<div class="social-links">
<a href="https://github.com/IronAdamant" target="_blank" rel="noopener noreferrer" aria-label="GitHub"><i
class="fab fa-github"></i></a>
<a href="https://x.com/Iron_Adamant" target="_blank" rel="noopener noreferrer" aria-label="X (Twitter)"
title="This Iron_Adamant account is not linked or associated with any other IronAdamant X accounts"><i
class="fab fa-x-twitter"></i></a>
<a href="https://www.linkedin.com/in/aron-amos-64045582/" target="_blank" rel="noopener noreferrer" aria-label="LinkedIn"><i
class="fab fa-linkedin"></i></a>
<a href="https://buymeacoffee.com/ironadamant" target="_blank" rel="noopener noreferrer" aria-label="Buy Me A Coffee"><i
class="fas fa-coffee"></i></a>
</div>
</div>
</footer>
<script src="js/navigation.js?v=1776251549719" defer></script>
<script src="js/page-transitions.js?v=1776251549719" defer></script>
<script src="js/main.js?v=1776251549719" defer></script>
<script src="js/sw-register.js?v=1776251549719" defer></script>
</body>
</html>