-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
317 lines (271 loc) · 9.67 KB
/
index.html
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
---
layout: null
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Cesar Figueroa</title>
<meta name="description" content="A digital product engineer" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link rel="stylesheet" href="/assets/styles.css" />
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<script>
window.addEventListener("load", () => {
const showImage = (entry) => {
if (entry.isIntersecting) {
entry.target.classList.add("visible");
}
};
const hideImage = (element) => {
element.classList.remove('visible');
}
const targets = document.querySelectorAll(".tile, .profile-pic-shadow");
const observer = new IntersectionObserver(
(entries) => entries.forEach(showImage),
{
root: null,
rootMargin: "0px",
threshold: 0.5,
}
);
Array.from(targets).forEach((target) => {
hideImage(target);
observer.observe(target);
});
});
</script>
</head>
<body>
<header id="intro">
<div class="profile-picture">
<picture>
<source
type="image/webp"
srcset="
/assets/images/[email protected] 1x,
/assets/images/[email protected] 2x,
/assets/images/[email protected] 3x
" />
<source
srcset="
/assets/images/[email protected] 1x,
/assets/images/[email protected] 2x,
/assets/images/[email protected] 3x
" />
<img src="/assets/images/[email protected]" alt="Picture of me, Cesar" />
</picture>
<div id="shadow-1" class="profile-pic-shadow"></div>
<div id="shadow-2" class="profile-pic-shadow"></div>
<div id="shadow-3" class="profile-pic-shadow"></div>
</div>
<h1>
<strong>Cesar Figueroa</strong>product engineer
</h1>
</header>
<main>
<section>
<h2 class="section-heading">Selected Works</h2>
<div class="tile-container">
<div class="tile visible">
<div class="tile-bg">
<div class="tile-header">
<p class="tile-desc">
Making car insurance easier and more accessible at
<a href="https://clearcover.com" target="_blank">Clearcover</a>
</p>
</div>
<ul class="tagList">
<li class="tagList-item">
<strong>Role</strong> Engineering Manager
</li>
<li class="tagList-item">
<strong>Stack</strong> Typescript, Swift, React Native, Node.js, RxJS, AWS
</li>
</ul>
<div class="tile-links">
<a
href="https://apps.apple.com/us/app/clearcover-car-insurance/id1267703900"
class="button"
style="margin-right: 8px">
App Store
</a>
<a
href="https://play.google.com/store/apps/details?id=com.clearcover.app&hl=en_US&gl=US"
class="button">
Google Play
</a>
</div>
<div class="tile-image-mask">
<picture>
<source
type="image/webp"
srcset="
/assets/images/[email protected] 1x,
/assets/images/[email protected] 2x,
/assets/images/[email protected] 3x
" />
<source
srcset="
/assets/images/[email protected] 1x,
/assets/images/[email protected] 2x,
/assets/images/[email protected] 3x
" />
<img
src="/assets/images/[email protected]"
alt="Screenshot of the Clearcover app on the home screen" />
</picture>
</div>
</div>
<a
href="https://www.mobile-webaward.org/mwa/winner.asp?eid=11838"
class="tile-award-link">
<img
src="/assets/images/award.svg"
alt="Award icon"
class="tile-award-link-icon" />
Winner, Outstanding Mobile Application
</a>
</div>
<div class="tile visible">
<div class="tile-bg">
<div class="tile-header">
<p class="tile-desc">
Helping people improve their sleep and daily energy at
<a href="https://risescience.com">Rise Science</a>
</p>
</div>
<ul class="tagList">
<li class="tagList-item">
<strong>Role</strong>
Lead Engineer
</li>
<li class="tagList-item">
<strong>Stack</strong> Typescript, React Native, GCP
</li>
</ul>
<div class="tile-links">
<a
href="https://apps.apple.com/us/app/rise-energy-sleep-tracker/id1453884781"
class="button">
App Store
</a>
</div>
<div class="tile-image-mask" style="animation-delay: 200ms">
<picture>
<source
type="image/webp"
srcset="
/assets/images/[email protected] 1x,
/assets/images/[email protected] 2x,
/assets/images/[email protected] 3x
" />
<source
srcset="
/assets/images/[email protected] 1x,
/assets/images/[email protected] 2x,
/assets/images/[email protected] 3x
" />
<img
src="/assets/images/[email protected]"
alt="Screenshot of the Rise app on the schedule tab" />
</picture>
</div>
</div>
<a
href="https://apps.apple.com/us/story/id1621186695"
class="tile-award-link">
<img
src="/assets/images/award.svg"
alt="Award icon"
class="tile-award-link-icon" />
Apple App of the Day
</a>
</div>
</div>
</section>
<section>
<h2 class="section-heading">Experience</h2>
<ol class="experience">
<li>
<h3 class="experience-title">The Rounds</h3>
<time datetime="2023" class="experience-date">2023</time>
</li>
<li>
<h3 class="experience-title">Native</h3>
<time datetime="2022" class="experience-date">2022</time>
</li>
<li>
<h3 class="experience-title">Rise Science</h3>
<time datetime="2021" class="experience-date">2021</time>
</li>
<li>
<h3 class="experience-title">OkCupid</h3>
<time datetime="2020" class="experience-date">2020</time>
</li>
<li>
<h3 class="experience-title">Clearcover</h3>
<time datetime="2017" class="experience-date">2017</time>
</li>
<li>
<h3 class="experience-title">ReviewTrackers</h3>
<time datetime="2016" class="experience-date">2016</time>
</li>
<li>
<h3 class="experience-title">Avant</h3>
<time datetime="2015" class="experience-date">2015</time>
</li>
<li>
<h3 class="experience-title">8th Light</h3>
<time datetime="2014" class="experience-date">2014</time>
</li>
</ol>
</section>
<section>
<h2 class="section-heading">Recognition</h2>
<p class="copy">
<a
href="https://www.builtinchicago.org/spotlight/2019/05/14/clearcover-insurance-chicago-careers"
>Built In Chicago</a
>, Web Marketing Association Award (<a
href="https://www.mobile-webaward.org/mwa/winner.asp?eid=11838"
>2019</a
>,
<a href="https://www.mobile-webaward.org/mwa/winner.asp?eid=11968"
>2020</a
>),
<a href="https://chicagoinnovation.com/winners/clearcover/"
>Chicago Innovation Award</a
>
</p>
</section>
<section>
<h2 class="section-heading">Strengths & Interests</h2>
<p class="copy">
Interface design, functional programming, type theory, systems design
and architecture, animation
</p>
</section>
<section>
<h2 class="section-heading">Contact</h2>
<a class="email" href="mailto:[email protected]">
hello<wbr /><span class="email-at">@</span>csrf.gr
</a>
<p class="copy">
<a href="https://www.linkedin.com/in/cesar-figueroa/">LinkedIn</a>,
<a href="https://github.com/cesarfigueroa">GitHub</a>,
<a href="https://dribbble.com/cesar">Dribbble</a>
</p>
</section>
</main>
<footer>
<p class="colophon">
Typeset in PP Neue Machina and using one color in various shades. Made
in Brooklyn, NY.
</p>
</footer>
</body>
</html>