-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (91 loc) · 2.77 KB
/
index.html
File metadata and controls
106 lines (91 loc) · 2.77 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="shortcut icon"
type="image/svg+xml"
href="/assets/shum-logo-1.svg"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Shumanskii Egor | Web Developer & Mentor</title>
<meta
name="description"
content="Web Development and Audit for Frontend Applications"
/>
<meta property="og:site_name" content="Shumanskii Egor" />
<meta
property="og:title"
content="Shumanskii Egor | Web Developer & Mentor"
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://shum.dev/" />
<meta
property="og:image"
content="/assets/og-shum-dev.png"
/>
<meta
property="og:description"
content="Web Development and Audit for Frontend Applications"
/>
<meta
name="twitter:title"
content="Shumanskii Egor | Web Developer & Mentor"
/>
<meta
name="twitter:description"
content="Web Development and Audit for Frontend Applications"
/>
<meta
name="twitter:image"
content="/assets/og-shum-dev.png"
/>
<meta name="twitter:image:alt" content="Welcome screen of Egor's website" />
<meta name="twitter:card" content="summary_large_image" />
<!-- Fonts -->
<link
rel="preload"
href="/src/assets/fonts/RobotoCondensed-Bold-optimized.woff2"
as="font"
crossorigin
/>
<link
rel="preload"
href="/src/assets/fonts/RobotoCondensed-Light-optimized.woff2"
as="font"
crossorigin
/>
<link
rel="preload"
href="/src/assets/fonts/Vollkorn-Regular-optimized.woff2"
as="font"
crossorigin
/>
<link href="/src/styles/style.css" rel="stylesheet" />
<!-- Dark default user agent schema -->
<meta name="color-scheme" content="dark" />
<icon-set></icon-set>
</head>
<body
class="font-body bg-bkg text-white selection:bg-accent selection:text-bkg text-base bg-cover"
>
<header-component></header-component>
<main class="flex flex-col gap-28 pb-16">
<!-- About -->
<about-component class="hidden-section"></about-component>
<!-- Education -->
<education-component class="hidden-section"></education-component>
<!-- Work Exp. -->
<work-experience-component
class="hidden-section"
></work-experience-component>
<!-- Skills -->
<skills-component class="hidden-section"></skills-component>
<!-- Code Examples -->
<code-examples-component class="hidden-section"></code-examples-component>
</main>
<!-- Caption -->
<footer-component></footer-component>
<script type="module" src="/src/main.ts" defer></script>
</body>
</html>