-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (69 loc) · 2.78 KB
/
Copy pathindex.html
File metadata and controls
69 lines (69 loc) · 2.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<script>
// Apply the theme before first paint to avoid a light-mode flash.
(function () {
var saved = localStorage.getItem("theme");
var dark =
saved === "dark" ||
(!saved && window.matchMedia("(prefers-color-scheme: dark)").matches);
if (dark) document.documentElement.classList.add("dark");
})();
</script>
<link rel="icon" type="image/jpeg" href="/images/profile.jpeg" />
<link rel="apple-touch-icon" href="/images/profile.jpeg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#111827" media="(prefers-color-scheme: dark)" />
<title>Standley | Senior Software Engineer</title>
<meta
name="description"
content="Standley is a senior software engineer from Malaysia with expertise in .NET, React, Angular, Aurelia, and Azure."
/>
<meta name="author" content="Standley Gury" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Standley Gury | Senior Software Engineer" />
<meta
property="og:description"
content="Senior software engineer from Malaysia specializing in .NET, React, Angular, Aurelia, and Azure."
/>
<meta property="og:image" content="/images/profile.jpeg" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Standley Gury | Senior Software Engineer" />
<meta
name="twitter:description"
content="Senior software engineer from Malaysia specializing in .NET, React, Angular, Aurelia, and Azure."
/>
<meta name="twitter:image" content="/images/profile.jpeg" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Standley Gury",
"jobTitle": "Senior Software Engineer",
"email": "mailto:standleypg@gmail.com",
"address": {
"@type": "PostalAddress",
"addressLocality": "Kuala Lumpur",
"addressCountry": "MY"
},
"sameAs": [
"https://github.com/standleypg",
"https://linkedin.com/in/standleypg"
]
}
</script>
<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=Fraunces:ital,opsz,wght@0,9..144,500..700;1,9..144,500..700&family=Inter:wght@400..600&display=swap"
rel="stylesheet"
/>
</head>
<body class="min-h-screen">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>