-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
51 lines (50 loc) · 1.77 KB
/
Copy path404.html
File metadata and controls
51 lines (50 loc) · 1.77 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Page not found — Arjun Patel, PhD</title>
<meta name="robots" content="noindex" />
<meta name="theme-color" content="#0a0705" />
<link rel="icon" href="/assets/favicon.svg" type="image/svg+xml">
<link rel="stylesheet" href="/styles.css" />
<style>
.nf{min-height:78vh; display:flex; flex-direction:column; justify-content:center}
.nf .code{
font-family:var(--mono); font-size:13px; letter-spacing:.14em;
text-transform:uppercase; color:var(--flux); margin:0 0 14px;
}
.nf h1{font-size:clamp(30px,4vw,46px); margin-bottom:14px}
.nf p{color:var(--dim); max-width:52ch; margin:0 0 24px; font-size:17px}
</style>
</head>
<body>
<header class="header">
<div class="container nav">
<a class="brand" href="/" aria-label="Home">
<span class="dot"></span><span>Arjun Patel, PhD</span>
</a>
<nav class="navlinks" aria-label="Primary">
<a href="/#about">About</a>
<a href="/#work">Work</a>
<a href="/#publications">Publications</a>
<a href="/#cv">CV</a>
<a href="/#contact">Contact</a>
</nav>
</div>
</header>
<main>
<section class="section" style="border-top:none">
<div class="container nf">
<p class="code">Error 404</p>
<h1>This page doesn’t exist.</h1>
<p>The link may be out of date, or the address may have a typo. Everything on this site lives on the front page.</p>
<div class="cta">
<a class="btn" href="/">Back to the front page</a>
<a class="btn ghost" href="/#publications">Publications</a>
</div>
</div>
</section>
</main>
</body>
</html>