-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (34 loc) · 1.73 KB
/
index.html
File metadata and controls
36 lines (34 loc) · 1.73 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
---
layout: default
title: Home
lang: en
js: [ multilingual, fontawesome.min, solid.min, brands.min ]
---
<section class="about-intro">
<h1>About</h1>
<p>Joanne J Lee is a UX designer based in Seoul, Korea. Through having experience as both an in-house designer and an agency designer, she's been practising design in various fields for large corporates and startups.</p>
<p>To deliver a delightful and integrated experience, her scope of design ranges from user interface and branding to printed matter and video directing. Currently, she is working for <a href="https://peekaby.com" target="_blank" rel="noreferrer">Ordinary Magic Corp.</a>, a Korean startup creating developmental toy solutions for infants and toddlers.</p>
</section>
<section class="about-contact">
<h2>Get in touch</h2>
<p><i class="fa-solid fa-envelope"></i> <a href="mailto:j@joannelee.kr">j@joannelee.kr</a></p>
<p><i class="fa-brands fa-linkedin-in"></i> <a href="https://linkedin.com/in/joanneleee" target="_blank">linkedin.com/in/joanneleee</a></p>
<p><i class="fa-brands fa-github"></i> <a href="https://github.com/joannelee" target="_blank">@joannelee</a></p>
</section>
<section class="works-list">
<h2>Featured works</h2>
<ul>
{% for index in site.data.works["_sort"] %}
{% assign work = site.data.works[index] %}
{% if work.featured %}
<li>
<a href="{{ site.lang }}/works/{{ work.slug }}">
<img src="/assets/images/works/{{work.slug}}/thumb.jpg" srcset="/assets/images/works/{{work.slug}}/thumb@2x.jpg 2x" alt="{{ work.title[lang] }}">
<h3>{{ work.title[site.lang] }}</h3>
<p>{{ work.summary[site.lang] }}</p>
</a>
</li>
{% endif %}
{% endfor %}
</ul>
</section>