-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
43 lines (43 loc) · 1.67 KB
/
404.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>404 | Carl Gunderson | web development portfolio</title>
<meta name="viewport" content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no">
<meta property="og:type" content="website" />
<meta property="og:title" content="Web Development Portfolio" />
<meta property="og:description" content="A visual collection of Carl Gunderson's web development projects." />
<meta property="og:url" content="https://carlgunderson.com" />
<meta property="og:image" content="/images/og-image.png" />
<meta property="og:image:alt" content="Carl Gunderson web development portfolio" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;500;600;700&display=swap"
/>
<link rel="stylesheet" href="/src/styles.css" />
<script
defer
data-domain="carlgunderson.com"
src="https://plausible.io/js/script.tagged-events.outbound-links.js"
></script>
<script>
window.plausible = window.plausible
|| function() { (window.plausible.q = window.plausible.q || []).push(arguments) }
</script>
</head>
<body>
<div id="app-root"></div>
<script type="module" crossorigin src="/src/index.jsx"></script>
<script>
document.addEventListener('DOMContentLoaded', function () {
plausible('404', { props: { path: document.location.pathname } });
});
</script>
</body>
</html>