-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (36 loc) · 1.3 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
---
layout: default
title:
description:
featured_image: /images/social.jpg
---
<section class="intro">
<div class="wrap">
<h1>Hi! 👋 </h1>
<p>I'm a Product Manager at Capital One. I love to collaborate and bring people in tech, design, and research together to create amazing products.
<br>
<br>
Prior to Capital One, I worked in various interdisciplinary roles, working as a
software engineer, UX designer, and as a product manager. With this passion, I went to get my masters degree in Human Computer Interaction from Carnegie Mellon.
<br> <br> Check out my portfolio below and feel free to <a href="mailto:[email protected]">reach out!</a> </p>
</div>
</section>
<section class="portfolio">
<div class="content-wrap portfolio-wrap">
{% for project in site.projects reversed %}
<div class="portfolio-item">
<a class="portfolio-item__link" href="{{ project.url }}">
<div class="portfolio-item__image">
<img src="{{ project.featured_image }}" alt="{{ project.title }}">
</div>
<div class="portfolio-item__content">
<div class="portfolio-item__info">
<h2 class="portfolio-item__title">{{ project.title }}</h2>
<p class="portfolio-item__subtitle">{{ project.subtitle }}</p>
</div>
</div>
</a>
</div>
{% endfor %}
</div>
</section>