-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.html
More file actions
218 lines (190 loc) · 6.66 KB
/
resume.html
File metadata and controls
218 lines (190 loc) · 6.66 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Alejandro Echeverría - Resume">
<title>Alejandro Echeverría · Resume</title>
<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;600;700&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: 'Inter', sans-serif;
background: #0f1117;
color: #e2e8f0;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
}
.container {
max-width: 640px;
width: 100%;
}
header {
margin-bottom: 3rem;
}
h1 {
font-size: 2rem;
font-weight: 700;
color: #f8fafc;
letter-spacing: -0.02em;
}
.subtitle {
font-size: 1rem;
color: #94a3b8;
margin-top: 0.25rem;
}
.social {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social a {
color: #64748b;
text-decoration: none;
font-size: 0.85rem;
transition: color 0.2s;
}
.social a:hover { color: #94a3b8; }
h2 {
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.08em;
color: #475569;
margin-bottom: 1rem;
}
.resume-list {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.resume-card {
background: #1e2330;
border: 1px solid #2d3748;
border-radius: 8px;
padding: 1rem 1.25rem;
display: flex;
align-items: center;
justify-content: space-between;
transition: border-color 0.2s;
}
.resume-card:hover { border-color: #4a5568; }
.resume-info h3 {
font-size: 0.95rem;
font-weight: 600;
color: #e2e8f0;
}
.resume-info p {
font-size: 0.8rem;
color: #64748b;
margin-top: 0.15rem;
}
.resume-links {
display: flex;
gap: 0.5rem;
flex-shrink: 0;
margin-left: 1rem;
}
.btn {
display: inline-block;
padding: 0.35rem 0.75rem;
border-radius: 5px;
font-size: 0.78rem;
font-weight: 500;
text-decoration: none;
transition: background 0.2s;
}
.btn-pdf {
background: #1e3a5f;
color: #93c5fd;
border: 1px solid #2563eb44;
}
.btn-pdf:hover { background: #1d4ed8; color: #fff; }
.btn-html {
background: #1a3330;
color: #6ee7b7;
border: 1px solid #10b98144;
}
.btn-html:hover { background: #065f46; color: #fff; }
.btn-md {
background: #2a2a1a;
color: #fde68a;
border: 1px solid #d9770644;
}
.btn-md:hover { background: #92400e; color: #fff; }
footer {
margin-top: 3rem;
font-size: 0.75rem;
color: #334155;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Alejandro Echeverría</h1>
<p class="subtitle">Senior Data and AI Solutions Engineer · Gates Foundation</p>
<div class="social">
<a href="https://linkedin.com/in/cuete" target="_blank">LinkedIn</a>
<a href="https://github.com/cuete" target="_blank">GitHub</a>
<a href="mailto:nablaservices@outlook.com">Email</a>
</div>
</header>
<h2>Résumé Versions</h2>
<div class="resume-list">
<div class="resume-card">
<div class="resume-info">
<h3>Base</h3>
<p>Senior Data and AI Solutions Engineer</p>
</div>
<div class="resume-links">
<a class="btn btn-pdf" href="resume/resume.pdf" target="_blank">PDF</a>
<a class="btn btn-html" href="resume/resume.html" target="_blank">HTML</a>
<a class="btn btn-md" href="resume/resume.md" target="_blank">MD</a>
</div>
</div>
<div class="resume-card">
<div class="resume-info">
<h3>Senior AI Engineer</h3>
<p>Tailored for AI engineering roles</p>
</div>
<div class="resume-links">
<a class="btn btn-pdf" href="resume/resume-aie.pdf" target="_blank">PDF</a>
<a class="btn btn-html" href="resume/resume-aie.html" target="_blank">HTML</a>
<a class="btn btn-md" href="resume/resume-aie.md" target="_blank">MD</a>
</div>
</div>
<div class="resume-card">
<div class="resume-info">
<h3>Forward Deployed AI Engineer</h3>
<p>Tailored for FDE / customer-embedded AI roles</p>
</div>
<div class="resume-links">
<a class="btn btn-pdf" href="resume/resume-fde-ai.pdf" target="_blank">PDF</a>
<a class="btn btn-html" href="resume/resume-fde-ai.html" target="_blank">HTML</a>
<a class="btn btn-md" href="resume/resume-fde-ai.md" target="_blank">MD</a>
</div>
</div>
<div class="resume-card">
<div class="resume-info">
<h3>Lead Data Engineer</h3>
<p>Tailored for data engineering leadership roles</p>
</div>
<div class="resume-links">
<a class="btn btn-pdf" href="resume/resume-lde.pdf" target="_blank">PDF</a>
<a class="btn btn-html" href="resume/resume-lde.html" target="_blank">HTML</a>
<a class="btn btn-md" href="resume/resume-lde.md" target="_blank">MD</a>
</div>
</div>
</div>
<footer>
<p>cuete.github.io · © 2026 Alejandro Echeverría</p>
</footer>
</div>
</body>
</html>