-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
351 lines (313 loc) · 12.1 KB
/
404.html
File metadata and controls
351 lines (313 loc) · 12.1 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="PkLavc">
<title>404 | Page Not Found | Patrick Araujo</title>
<meta name="description" content="The page you are looking for cannot be found. Return to Patrick Araujo's portfolio to explore solutions architecture, APIs, automation, and systems integration.">
<meta property="og:title" content="404 | Page Not Found | Patrick Araujo">
<meta property="og:description" content="The page you are looking for cannot be found. Return to Patrick Araujo's portfolio to explore solutions architecture, APIs, automation, and systems integration.">
<meta property="og:url" content="https://pklavc.com/404.html">
<meta property="og:type" content="website">
<meta property="og:image" content="https://pklavc.com/images/Lavc.png">
<meta property="og:image:alt" content="Brand portrait of enterprise systems architect and automation expert Patrick Araujo">
<meta property="og:site_name" content="Patrick Araujo Portfolio">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="404 | Page Not Found | Patrick Araujo">
<meta name="twitter:description" content="The page you are looking for cannot be found. Return to Patrick Araujo's portfolio to explore solutions architecture, APIs, automation, and systems integration.">
<meta name="twitter:image" content="https://pklavc.com/images/Lavc.png">
<meta name="twitter:image:alt" content="Brand portrait of enterprise systems architect and automation expert Patrick Araujo">
<meta name="robots" content="noindex, follow">
<link rel="canonical" href="https://pklavc.com/404.html">
<script>
(function() {
var path = window.location.pathname.toLowerCase();
var redirects = {
'/about': '/about/',
'/about.html': '/about/',
'/projects': '/projects/',
'/projects.html': '/projects/',
'/blog': '/blog/',
'/blog.html': '/blog/'
};
if (redirects[path]) {
window.location.replace(redirects[path] + window.location.search + window.location.hash);
}
})();
</script>
<link rel="icon" type="image/png" href="/images/Lavc.png">
<style>
:root {
--clr-primary: #00d1ff;
--bg: #101114;
--bg-elev: #171a20;
--text: #f3f7fb;
--text-muted: #c7d2df;
--line: rgba(0, 209, 255, 0.22);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html,
body {
min-height: 100%;
}
body {
font-family: "Inter", "Poppins", "Segoe UI", sans-serif;
background: radial-gradient(1200px 700px at 80% -10%, rgba(0, 209, 255, 0.12), transparent 60%), var(--bg);
color: var(--text);
overflow-x: hidden;
}
#all {
min-height: 100vh;
position: relative;
}
#navigation-content {
position: fixed;
inset: 0;
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background: rgba(5, 8, 12, 0.96);
transform: translateY(-100%);
transition: transform 0.24s ease;
pointer-events: none;
}
#navigation-content.is-open {
transform: translateY(0);
pointer-events: auto;
}
.navigation-links {
display: flex;
flex-direction: column;
gap: 16px;
align-items: center;
}
.navigation-links a {
color: #e8f8ff;
text-decoration: none;
letter-spacing: 0.04em;
font-size: clamp(1.35rem, 2.3vw, 1.9rem);
opacity: 0.88;
transition: opacity 0.2s ease, color 0.2s ease;
}
.navigation-links a:hover {
opacity: 1;
color: var(--clr-primary);
}
#navigation-bar {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 84px;
z-index: 1100;
}
.menubar {
position: absolute;
top: 24px;
right: 26px;
cursor: pointer;
padding: 8px;
opacity: 0.9;
}
.menubar span {
display: block;
width: 38px;
height: 2px;
margin: 8px 0;
border-radius: 2px;
background: transparent;
position: relative;
}
.menubar span::before {
content: "";
position: absolute;
top: 0;
right: 0;
height: 100%;
background: var(--clr-primary);
border-radius: 2px;
}
.menubar .first-span::before { width: 52%; }
.menubar .second-span::before { width: 76%; }
.menubar .third-span::before { width: 100%; }
.menubar:hover .first-span::before,
.menubar:hover .second-span::before {
width: 100%;
}
.error-page-main {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 100px 20px 40px;
}
.error-page-card {
width: min(860px, 100%);
text-align: center;
padding: 40px 28px;
border: 1px solid var(--line);
border-radius: 18px;
background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)), var(--bg-elev);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.error-page-code {
font-size: clamp(3.2rem, 8vw, 5.1rem);
line-height: 1;
color: var(--clr-primary);
margin-bottom: 10px;
}
.error-page-title {
font-size: clamp(1.6rem, 4.5vw, 2.5rem);
margin-bottom: 14px;
}
.error-page-description {
font-size: clamp(1rem, 2.5vw, 1.17rem);
color: var(--text-muted);
line-height: 1.7;
margin-bottom: 24px;
}
.error-page-actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
justify-content: center;
margin-bottom: 16px;
}
.error-page-link {
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 9px;
text-decoration: none;
font-weight: 600;
padding: 11px 18px;
transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.error-page-link-primary {
background: var(--clr-primary);
color: #04202a;
}
.error-page-link-secondary {
border: 1px solid var(--clr-primary);
color: var(--clr-primary);
background: rgba(0, 209, 255, 0.08);
}
.error-page-link:hover {
transform: translateY(-1px);
box-shadow: 0 8px 22px rgba(0, 209, 255, 0.18);
}
.error-page-help {
color: #99a9bb;
font-size: 0.96rem;
}
.error-page-social {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
margin: 4px 0 18px;
}
.error-page-social-link {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 110px;
padding: 9px 12px;
border: 1px solid rgba(0, 209, 255, 0.45);
border-radius: 8px;
color: #cfefff;
text-decoration: none;
font-weight: 600;
font-size: 0.93rem;
background: rgba(0, 209, 255, 0.08);
transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.error-page-social-link:hover {
transform: translateY(-1px);
border-color: #00d1ff;
box-shadow: 0 8px 20px rgba(0, 209, 255, 0.18);
}
@media (max-width: 600px) {
.error-page-card {
padding: 28px 18px;
}
.menubar {
right: 14px;
top: 15px;
}
}
</style>
</head>
<body>
<div id="all">
<div id="navigation-content" role="navigation" aria-label="Primary navigation">
<div class="logo"></div>
<div class="navigation-links">
<a href="/">HOME</a>
<a href="/about/">ABOUT</a>
<a href="/projects/">PROJECTS</a>
</div>
</div>
<div id="navigation-bar">
<div class="menubar">
<span class="first-span"></span>
<span class="second-span"></span>
<span class="third-span"></span>
</div>
</div>
<main role="main" class="error-page-main">
<section class="error-page-card">
<h1 class="error-page-code">404</h1>
<h2 class="error-page-title">Page Not Found</h2>
<p class="error-page-description">The page you are looking for may have been removed, had its name changed, or is temporarily unavailable. Return to the portfolio to explore systems architecture, API integration, and intelligent automation solutions.</p>
<div class="error-page-actions">
<a href="/" class="error-page-link error-page-link-primary">Back to Home</a>
<a href="/about/" class="error-page-link error-page-link-secondary">About</a>
<a href="/projects/" class="error-page-link error-page-link-secondary">View Projects</a>
</div>
<div class="error-page-social" aria-label="Contact links">
<a class="error-page-social-link" href="https://github.com/PkLavc" target="_blank" rel="noopener noreferrer">GitHub</a>
<a class="error-page-social-link" href="https://www.linkedin.com/in/pklavc/" target="_blank" rel="noopener noreferrer">LinkedIn</a>
<a class="error-page-social-link" href="mailto:contact@pklavc.com">Email</a>
</div>
<p class="error-page-help">If you entered the URL manually, please check the spelling and try again.</p>
</section>
</main>
</div>
<script>
(function() {
var nav = document.getElementById('navigation-content');
var menu = document.querySelector('.menubar');
if (!nav || !menu) {
return;
}
function closeMenu() {
nav.classList.remove('is-open');
}
menu.addEventListener('click', function(event) {
event.preventDefault();
event.stopPropagation();
nav.classList.toggle('is-open');
});
document.addEventListener('click', function(event) {
if (!nav.classList.contains('is-open')) {
return;
}
if (!nav.contains(event.target) && !menu.contains(event.target)) {
closeMenu();
}
});
nav.querySelectorAll('a').forEach(function(link) {
link.addEventListener('click', closeMenu);
});
})();
</script>
</body>
</html>