-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (65 loc) · 3.21 KB
/
index.html
File metadata and controls
74 lines (65 loc) · 3.21 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
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- <link rel="icon" type="image/svg+xml" href="/vite.svg" /> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Google Site Verification -->
<meta name="google-site-verification" content="AHFscr6YfI3hzV7gX4PBUrpuhO96B01g1sr1NfHwUf8" />
<!-- Primary Meta Tags -->
<title>Xevrion - Full Stack Developer Portfolio | Projects & Blog</title>
<meta name="title" content="Xevrion - Full Stack Developer Portfolio | Projects & Blog" />
<meta name="description" content="Xevrion - Full Stack Developer. Explore my projects, technical blog, and software engineering work. Showcasing expertise in web development, Linux, and modern tech stack." />
<meta name="keywords" content="Xevrion, Full Stack Developer, Software Engineer, Web Development, Portfolio, Blog, React, TypeScript, Linux, Projects" />
<meta name="author" content="Xevrion" />
<meta name="robots" content="index, follow" />
<!-- Canonical URL -->
<link rel="canonical" href="https://xevrion.dev/" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://xevrion.dev/" />
<meta property="og:title" content="Xevrion - Full Stack Developer Portfolio" />
<meta property="og:description" content="Full Stack Developer. Explore my projects, technical blog, and software engineering work." />
<meta property="og:image" content="/meta.png" />
<meta property="og:site_name" content="Xevrion Portfolio" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://xevrion.dev/" />
<meta name="twitter:title" content="Xevrion - Full Stack Developer Portfolio" />
<meta name="twitter:description" content="Full Stack Developer. Explore my projects, technical blog, and software engineering work." />
<meta name="twitter:image" content="/meta.png" />
<!-- Standard favicon -->
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<!-- Apple / iOS -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<!-- Android / PWA -->
<link
rel="icon"
type="image/png"
sizes="192x192"
href="/android-chrome-192x192.png"
/>
<link
rel="icon"
type="image/png"
sizes="512x512"
href="/android-chrome-512x512.png"
/>
<!-- Umami Analytics -->
<script defer src="https://cloud.umami.is/script.js" data-website-id="74938dae-7cfe-43c2-8933-b5e9be663d8c"></script>
<!-- Theme init: prevent flash of wrong theme -->
<script>
(function () {
var stored = localStorage.getItem('theme');
var sys = window.matchMedia('(prefers-color-scheme: light)').matches ? 'light' : 'dark';
if ((stored || sys) === 'light') document.documentElement.classList.add('light');
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>