-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (60 loc) · 2.55 KB
/
index.html
File metadata and controls
60 lines (60 loc) · 2.55 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
<!doctype html>
<html lang="en" data-theme="workers">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Interactive portfolio and resume website with experience, projects, skills, and contact details."
/>
<meta
name="keywords"
content="portfolio, resume, software engineer, developer, projects, experience, skills"
/>
<meta name="robots" content="index, follow" />
<link rel="canonical" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Portfolio & Resume" />
<meta
property="og:description"
content="Interactive portfolio and resume website with experience, projects, skills, and contact details."
/>
<meta property="og:url" content="/" />
<meta property="og:site_name" content="Portfolio & Resume" />
<meta property="og:image" content="/og-image.png" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Portfolio & Resume" />
<meta
name="twitter:description"
content="Interactive portfolio and resume website with experience, projects, skills, and contact details."
/>
<meta name="twitter:image" content="/og-image.png" />
<title>Portfolio & Resume</title>
<meta name="theme-color" content="#0b1c31" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="alternate icon" type="image/x-icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/favicon-source.png" />
<script>
(() => {
const mode = localStorage.getItem("theme") || "light";
document.documentElement.setAttribute("data-mode", mode);
document.documentElement.style.colorScheme = mode;
const canonical = document.querySelector('link[rel="canonical"]');
if (canonical) canonical.href = window.location.origin + "/";
const ogUrl = document.querySelector('meta[property="og:url"]');
if (ogUrl) ogUrl.content = window.location.origin + "/";
const ogImage = document.querySelector('meta[property="og:image"]');
if (ogImage) ogImage.content = window.location.origin + "/og-image.png";
const twitterImage = document.querySelector(
'meta[name="twitter:image"]'
);
if (twitterImage)
twitterImage.content = window.location.origin + "/og-image.png";
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/client.tsx"></script>
</body>
</html>