-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 865 Bytes
/
index.html
File metadata and controls
22 lines (22 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="description" content="Interactive Resume" />
<meta name="theme-color" content="#171717" />
<title>Interactive Resume</title>
</head>
<body>
<div id="root"></div>
<noscript>
<div style="max-width: 600px; margin: 4rem auto; padding: 2rem; font-family: system-ui, sans-serif; text-align: center;">
<h1>Interactive Resume</h1>
<p>This resume requires JavaScript to display the interactive version.</p>
<p><a href="/cv/resume.pdf" style="color: #1e6091;">Download the PDF version</a></p>
</div>
</noscript>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>