Skip to content

Commit 366a58c

Browse files
authored
Update h3 header and copies (#75)
* feat: update home, work, contact copy * feat: update h3 heading style * feat: revert home copy * feat: revert contact heading styles. stray from h3 * feat: update h3 fontSize 24.5rem to 25 * feat: contact remove "now" copy
1 parent a8232ed commit 366a58c

5 files changed

Lines changed: 29 additions & 9 deletions

File tree

src/components/sections/contact/ContactLeftSide.js

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,30 @@ function ContactLeftSide() {
1818
}}
1919
>
2020
<div>
21-
<h3 sx={{ color: (t) => getColor(t, 'contactSubHeader'), pb: 3 }}>
21+
<div sx={{
22+
variant: 'text.heading',
23+
color: (t) => getColor(t, 'contactSubHeader'),
24+
pb: 3,
25+
fontSize: [3, 4, 4],
26+
letterSpacing: '5rem',
27+
28+
/** @hack: fix uneven alignment */
29+
marginBottom: '6px',
30+
}}>
2231
<Fade delay={200}>
2332
Let&apos;s Connect!
2433
</Fade>
25-
</h3>
34+
</div>
2635

2736
<br />
2837

2938
<Fade>
3039
<h6 sx={{ color: (t) => getColor(t, 'contactText') }}>
31-
Working remotely since 2018
40+
After working remotely since 2018,
41+
<br />
42+
I&apos;m open to opportunities, location-based
43+
<br />
44+
(SF, bay area, NY, other) or remote
3245
</h6>
3346
</Fade>
3447

src/components/sections/contact/ContactRightSide.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,17 @@ function ContactRightSide() {
1818
textAlign: ['center', 'center', 'left'],
1919
}}
2020
>
21-
<h3 sx={{ color: (t) => getColor(t, 'contactSubHeader'), pb: 3 }}>
21+
<div sx={{
22+
variant: 'text.heading',
23+
color: (t) => getColor(t, 'contactSubHeader'),
24+
pb: 3,
25+
fontSize: [3, 4, 4],
26+
letterSpacing: '5rem',
27+
}}>
2228
<Fade delay={200}>
2329
Send me a message
2430
</Fade>
25-
</h3>
31+
</div>
2632

2733
<br />
2834

src/components/sections/home/Home.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ function HomeSection(props, ref) {
9191
pb: ['52rem', '52rem', '54rem'],
9292
}}
9393
>
94-
I&apos;m a software engineer passionate about solving complex problems through clean, secure, scalable code and crafting delightful experiences.
94+
I&apos;m a software engineer building secure, maintainable systems and elegant solutions to complex problems.
9595
</p>
9696
</Fade>
9797
<Pulse delay={5200} duration={620}>

src/components/sections/work/job-section/MetaMask.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function JobSectionMetaMask() {
2424
date="Jan 2022 - Sept 2025"
2525
techKeys={TECH_KEYS}
2626
>
27-
As a core developer on MetaMask's extension and mobile applications, I tackled a wide range of complex projects,
27+
As a core developer on MetaMask&apos;s extension and mobile applications, I tackled a wide range of complex projects,
2828
from restructuring Node.js multiplex streams for the Chromium Manifest V3 migration, to leading the
2929
Sign-in with Ethereum (EIP-4361) integration and dissecting the nuances of EIP signatures and transactions.
3030
I also deployed safeguards that protected 30+ million user accounts from phishing attacks and pioneered fixes

src/styles/theme/styles.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ const styles: Theme['styles'] = {
2424
},
2525
h3: {
2626
variant: 'text.heading',
27-
fontSize: [3, 4, 4],
27+
fontSize: [3, '25rem', '25rem'],
28+
fontFamily: 'barlow',
2829
fontWeight: 'body',
29-
letterSpacing: '5rem',
30+
letterSpacing: '2rem',
3031
lineHeight: 1.225,
3132
},
3233
h4: {

0 commit comments

Comments
 (0)