Skip to content

Commit 7b68358

Browse files
committed
Add banner and make jake resume default
1 parent 30ed43b commit 7b68358

4 files changed

Lines changed: 45 additions & 6 deletions

File tree

app/info/resume/page/resume-jake/resume-jake.module.scss

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,35 @@ $basic-info-font-size-print: 0.75rem;
126126
}
127127
}
128128

129+
//bannder
130+
aside[role="banner"] {
131+
background: variables.$color-two;
132+
margin: 1rem 0;
133+
padding: 1rem;
134+
text-align: center;
135+
color: variables.$color-font-five;
136+
font-family: variables.$font-family-open-sans;
137+
138+
h2 {
139+
margin: 0;
140+
text-transform: none;
141+
font-size: variables.$font-size-xxlarge;
142+
font-weight: variables.$heading-weight-bold;
143+
border: none;
144+
145+
&::first-letter{
146+
font-size: inherit;
147+
letter-spacing: inherit;
148+
}
149+
}
150+
151+
h3 {
152+
display: initial;
153+
font-weight: variables.$heading-weight-regular;
154+
font-size: variables.$font-size-large;
155+
}
156+
}
157+
129158
background: {
130159
color: #fff;
131160
}
@@ -152,6 +181,11 @@ $basic-info-font-size-print: 0.75rem;
152181
border-color: variables.$color-three;
153182
}
154183
}
184+
aside[role="banner"] {
185+
color: variables.$color-font-five !important;
186+
background-color: variables.$color-bg-three !important;
187+
print-color-adjust: exact;
188+
}
155189
}
156190
}
157191

app/info/resume/page/resume-wrapper.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import Resume from './resume/resume';
77

88
export default function ResumeWrapper() {
99
const searchParams = useSearchParams();
10-
const isJakeTheme = searchParams?.get('theme')?.toLowerCase() === 'jake';
10+
const isOldTheme = searchParams?.get('theme')?.toLowerCase() === 'old';
1111

12-
return <>{(isJakeTheme && <ResumeJake />) || <Resume />}</>;
12+
return <>{(isOldTheme && <Resume />) || <ResumeJake />}</>;
1313
}

app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const martel = Martel({
1010
});
1111

1212
const openSans = Open_Sans({
13-
weight: ['300', '400', '800'],
13+
weight: ['300', '400', '700', '800'],
1414
subsets: ['latin'],
1515
});
1616

markdown/resume-hand-revised.mdx

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,14 @@ import {Suspense} from 'react';
1212
<li>[github.com/ffffranklin](https://www.github.com/ffffranklin)</li>
1313
</ul>
1414

15+
<aside role="banner">
16+
<h2>Frontend Engineer</h2>
17+
<h3>Delivering delightful experiences and seamless fullstack solutions</h3>
18+
</aside>
19+
1520
## Summary
1621

17-
Versatile Frontend software engineer with 15+ years of experience building reliable, scalable, and robust
22+
Versatile frontend software engineer with 15+ years of experience building reliable, scalable, and robust
1823
frontend systems across data analytics and enterprise software environments. I've also served as
1924
a tech lead responsible for cross-team integrations. I helped drive the fullstack integrations
2025
with collaborative technical planning, test driven code, and with high agility.
@@ -62,8 +67,8 @@ enabling hundreds of users to perform faster searches.
6267
#### Senior Software Engineer, Front End (L3) <aside>2016 - 2022</aside>
6368

6469
- Developed and optimized frontend systems for visual analytics using Angular,
65-
React, and NodeJS; resolved performance bottlenecks in report rendering and
66-
led Agile adoption with real user monitoring
70+
React, and NodeJS; resolved performance bottlenecks in report rendering.
71+
- Built first generation visualizations for tables, pivot tables, and big numbers.
6772
- Mentored and grew the frontend team by leading a Quality ERG that implemented
6873
automation and style guides, collaborating on UI improvements, and establishing
6974
durable architecture and DX teams, increasing code quality and drastically

0 commit comments

Comments
 (0)