-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
136 lines (120 loc) · 4.29 KB
/
Copy pathindex.html
File metadata and controls
136 lines (120 loc) · 4.29 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="shortcut icon" href="/favicon.ico" />
<title>Andrej Dunaev | Energy Infrastructure Engineer</title>
<script defer src="https://cloud.umami.is/script.js" data-website-id="ee922ac4-1287-40a1-aff5-7729dee4fcc0"></script>
<meta name="description"
content="20+ years in energy infrastructure projects. Engineering coordination, technical documentation, vendor collaboration, automation, and AI-assisted tools." />
<link rel="canonical" href="https://dun4ev.com/" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://dun4ev.com/" />
<meta property="og:site_name" content="Dun4Ev" />
<meta property="og:title" content="Andrej Dunaev | Energy Infrastructure Engineer" />
<meta property="og:description"
content="20+ years in energy infrastructure projects. Engineering coordination, technical documentation, vendor collaboration, automation, and AI-assisted tools." />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Andrej Dunaev | Energy Infrastructure Engineer" />
<meta name="twitter:description"
content="20+ years in energy infrastructure projects. Engineering coordination, technical documentation, vendor collaboration, automation, and AI-assisted tools." />
<meta name="keywords"
content="Engineering Coordination, Technical Documentation, Vendor Documentation, RFQ, AI Automation, Industrial Engineering, Data Analytics, Python, Django, Power Query, EPC Projects, UGS, PED/ATEX Compliance" />
<script src="https://cdn.tailwindcss.com"></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=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
colors: {
navy: '#0a192f',
lightNavy: '#112240',
lightestNavy: '#233554',
slate: '#8892b0',
lightSlate: '#a8b2d1',
lightestSlate: '#ccd6f6',
white: '#e6f1ff',
teal: '#64ffda',
tealTint: 'rgba(100, 255, 218, 0.1)',
}
}
}
}
</script>
<style>
body {
background-color: #0f172a;
/* Slate 900 */
color: #94a3b8;
/* Slate 400 */
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #0f172a;
}
::-webkit-scrollbar-thumb {
background: #334155;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #475569;
}
@keyframes soft-blink {
0%,
100% {
background-color: rgba(45, 212, 191, 0.1);
box-shadow: 0 0 0 rgba(45, 212, 191, 0);
border-color: rgba(45, 212, 191, 0.1);
transform: translateY(0);
}
50% {
background-color: rgba(45, 212, 191, 0.2);
box-shadow: 0 0 25px rgba(45, 212, 191, 0.3);
border-color: rgba(45, 212, 191, 0.5);
transform: translateY(-2px);
color: #5eead4;
/* teal-200 */
}
}
.tech-tag-animate {
animation: soft-blink 5s infinite ease-in-out;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@keyframes rotate-slow {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.radar-web-base {
transform-origin: center;
transition: transform 0.8s ease-out;
}
.radar-rotate-web {
animation: rotate-slow 60s linear infinite;
}
.radar-web-static {
transform: rotate(0deg) !important;
animation: none !important;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>