-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
75 lines (71 loc) · 3.26 KB
/
Copy path404.html
File metadata and controls
75 lines (71 loc) · 3.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>404 — Page not found · Amar Akram</title>
<meta name="robots" content="noindex" />
<meta name="theme-color" content="#0A0E14" />
<script>
(function () {
try {
var t = localStorage.getItem('theme');
if (!t) t = window.matchMedia('(prefers-color-scheme: light)').matches ? 'light' : 'dark';
document.documentElement.setAttribute('data-theme', t);
} catch (e) { document.documentElement.setAttribute('data-theme', 'dark'); }
document.documentElement.classList.add('js');
})();
</script>
<link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Crect width='32' height='32' rx='8' fill='%231E5F74'/%3E%3Ctext x='16' y='22' font-family='Georgia,serif' font-size='16' font-weight='700' fill='white' text-anchor='middle'%3EA%3C/text%3E%3C/svg%3E" />
<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=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600&family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="/css/style.css?v=28" />
</head>
<body class="page-404">
<a class="skip-link" href="#top">Skip to main content</a>
<header class="nav">
<div class="wrap nav__inner">
<a class="brand" href="/" aria-label="Amar Akram — home">
<span class="brand__mark">AA</span>
<span class="brand__name">Amar Akram</span>
</a>
<nav class="nav__links" aria-label="Primary">
<a href="/#work">Work</a>
<a href="/#about">About</a>
<a href="/#contact">Contact</a>
<a class="nav__cta" href="mailto:amarakramali@gmail.com">Email</a>
</nav>
</div>
</header>
<main id="top" tabindex="-1">
<section class="detail-hero">
<div class="wrap">
<p class="eyebrow">Error · 404</p>
<h1>Signal lost.<span class="accent">_</span></h1>
<p class="detail-hero__sub">
This page could not be found — it may have moved or never existed. Let's get you back on the grid.
</p>
<div class="hero__actions" style="margin-top:28px">
<a class="btn btn--primary" href="/">Back to home
<svg class="btn__arrow" width="17" height="17" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M5 12h14M13 6l6 6-6 6"/></svg>
</a>
<a class="btn btn--ghost" href="/#work">View projects</a>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="wrap footer__inner">
<small>© <span data-year>2026</span> Amar Akram · Built with care in Bielefeld.</small>
<nav class="footer__nav" aria-label="Footer">
<a href="/#work">Work</a>
<a href="/#about">About</a>
<a href="/#contact">Contact</a>
<a href="mailto:amarakramali@gmail.com">Email</a>
</nav>
</div>
</footer>
<script src="/js/main.js?v=7"></script>
</body>
</html>