Skip to content

Commit 66cc3f9

Browse files
committed
final formatting!
1 parent 7a3ad36 commit 66cc3f9

File tree

4 files changed

+66
-24
lines changed

4 files changed

+66
-24
lines changed

_layouts/home.html

Lines changed: 33 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,33 +7,53 @@
77
<div class="profile-container">
88
<div class="profile-image">
99
<img src="/assets/images/headshot.png" alt="headshot">
10+
11+
<!-- <div class="section-text">
12+
<a href="mailto:fionachen@g.harvard.edu">fionachen@g.harvard.edu</a><br>
13+
<a href="/assets/cv/cv.pdf">CV</a>
14+
</div> -->
1015
</div>
1116

1217
<div class="profile-content">
1318
<!-- Name as first section header in right column -->
14-
<h2 class="content-title">Fiona Yifei Chen</h2>
19+
<h2 class="main-title">Fiona Yifei Chen</h2>
1520

16-
<div class="intro-text">
17-
<p>Hello! I am a Ph.D. candidate in Business Economics at Harvard University. My research is in labor economics, with a focus on the economics of AI.
21+
<div class="section-text">
22+
<p>I am a Ph.D. candidate in Business Economics at Harvard University. My research is in labor economics, with a focus on the economics of AI.
1823
I received my B.S. in Mathematics and in Economics from MIT.
1924
</p>
20-
25+
2126
<p>In Winter of 2026, I am visiting the Stanford Digital Economy Lab.</p>
22-
23-
<p>You can reach me at <a href="mailto:fionachen@g.harvard.edu">fionachen [at] g.harvard.edu</a> and access my <a href="/assets/cv/cv.pdf">CV here</a>.</p>
27+
28+
<p>You can reach me at <a href="mailto:fionachen@g.harvard.edu">fionachen@g.harvard.edu</a> and access my <a href="/assets/cv/cv.pdf">CV here</a>.</p>
2429
</div>
2530

2631
<section class="research-section">
27-
<h3 class="content-title">Research</h3>
28-
<p><em>Artificial Intelligence in the Firm</em><br>with James Stratton</p>
29-
</section>
30-
31-
<section class="policy-section">
32-
<h3 class="content-title">Policy</h3>
32+
<h3 class="section-title">Research</h3>
33+
<div class="section-text">
34+
<p><a href="/assets/papers/jellyfish.pdf"><em>Artificial Intelligence in the Firm</em></a>
35+
<br>
36+
with James Stratton
37+
</p>
38+
</div>
3339
</section>
3440

3541
<section class="misc-section">
36-
<h3 class="content-title">Miscellaneous</h3>
42+
<h3 class="section-title">Policy and Service</h3>
43+
<div class="section-text">
44+
<p>
45+
I am a Research Fellow at the <a href="https://socialfinance.org/institute/">Social Finance Institute</a>, where I work on
46+
practitioner-oriented research projects on the <a href="https://socialfinance.org/insight/shaping-the-future-of-work-generative-ai-inequality-and-opportunity/">economics of AI</a>.
47+
</p>
48+
<p>
49+
I also serve on the <a href="https://corporation.mit.edu/">MIT</a>
50+
<a href="https://news.mit.edu/2021/corporation-11-term-three-life-members-0603">Corporation</a>,
51+
and formerly served in various policy roles while as an MIT student.
52+
An example of work I have done in this capacity is assisting in writing MIT's <a href="https://www.mit.edu/values/">Values</a>
53+
<a href="https://web.mit.edu/valuescomm-report/mit-values-committee-final-report-1.pdf">Statement</a>.
54+
</p>
55+
</div>
56+
3757
</section>
3858
</div>
3959
</div>

_sass/_base.scss

Lines changed: 30 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
body {
22
background: $brand-color;
3-
color: $muted-text-color;
3+
color: $text-color;
44
font-family: $font-family;
55
font-style: normal;
6-
font-size: 1.1em;
6+
font-size: 1.0em;
77
line-height: 1.4;
88
padding-top: 2em; // Adds space at the very top
99
}
@@ -16,7 +16,7 @@ h1 {
1616
}
1717

1818
h2 {
19-
font-size: 1.4em;
19+
font-size: 1.2em;
2020
margin-top: 0.8em;
2121
margin-bottom: 0.2em;
2222
font-weight: 500;
@@ -25,7 +25,7 @@ h2 {
2525
}
2626

2727
h3 {
28-
font-size: 1.2em;
28+
font-size: 1.1em;
2929
margin-top: 0.8em;
3030
margin-bottom: 0.2em;
3131
font-weight: 500;
@@ -64,6 +64,14 @@ strong {
6464

6565
a {
6666
color: $text-color;
67+
text-decoration: none;
68+
border-bottom: 1px solid rgba($text-color, 0.35);
69+
transition: border-color 0.15s ease, color 0.15s ease;
70+
}
71+
72+
a:hover {
73+
color: $muted-text-color;
74+
border-bottom-color: rgba($muted-text-color, 0.35);
6775
}
6876

6977
a:focus {
@@ -122,13 +130,19 @@ figcaption {
122130
@include divider;
123131
}
124132

125-
126-
.content-title {
133+
.main-title {
127134
font-size: 1.5em;
128135
margin-bottom: 0em;
129136
text-align: left;
130137
}
131138

139+
.section-title {
140+
font-size: 1.2em;
141+
margin-top: 1.2em;
142+
margin-bottom: 0em;
143+
text-align: left;
144+
}
145+
132146
.post-date {
133147
color: $muted-text-color;
134148
display: block;
@@ -170,9 +184,9 @@ figcaption {
170184
margin-top: 0;
171185
}
172186

173-
.intro-text p {
187+
.section-text p {
174188
font-style: normal;
175-
margin-bottom: 1em;
189+
margin-bottom: 0.75em;
176190
}
177191

178192
// Profile container - photo and text side by side
@@ -200,7 +214,7 @@ figcaption {
200214

201215
.profile-image {
202216
flex-shrink: 0;
203-
margin-top: 2.6em; // Push image down to align with "Hello!"
217+
margin-top: 3.7em; // Push image down to align with "Hello!"
204218
padding-top: 0;
205219

206220
img {
@@ -215,6 +229,13 @@ figcaption {
215229
}
216230
}
217231

232+
.profile-contact {
233+
margin-top: 0.6rem;
234+
font-size: 0.9rem;
235+
line-height: 1.4;
236+
text-align: center;
237+
}
238+
218239
// Adjust home max-width for two-column layout
219240
.home {
220241
max-width: 45em; // Make wider to accommodate both columns

_sass/_variables.scss

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
$brand-color: #ffffff;
22
$highlight: lighten($brand-color, 35%);
3-
$text-color: #090801;
4-
$muted-text-color: #474641;
3+
$text-color: #181818;
4+
$muted-text-color: #545454;
5+
$link-text-color: #2164e9;
56
$font-family: 'EB Garamond', 'Garamond', serif;
67

78
$on-bigphone: 375px;

assets/.DS_Store

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)