Skip to content

Commit

Permalink
chore: updated resume
Browse files Browse the repository at this point in the history
  • Loading branch information
lukexor committed Jun 12, 2024
1 parent b53fd65 commit c3aa9c9
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
Binary file modified web/public/resume.pdf
100755 → 100644
Binary file not shown.
8 changes: 6 additions & 2 deletions web/src/components/resume/employment.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export type PositionInfo = {

export type EmploymentInfo = {
entity: string;
subentity: string;
location: string;
icon: string;
positions: PositionInfo[];
Expand Down Expand Up @@ -55,7 +56,7 @@ function Position({ position }: PositionProps) {
}

function EmploymentItem({ employment }: EmploymentItemProps) {
const { positions, icon, entity, location } = employment;
const { positions, icon, entity, subentity, location } = employment;

return (
<>
Expand All @@ -69,7 +70,10 @@ function EmploymentItem({ employment }: EmploymentItemProps) {
/>
</div>
<div className={s.experienceEntity}>
<h4>{entity}</h4>
<h4>
{entity}
<div className={s.subentity}>{subentity}</div>
</h4>
<em>{location}</em>
</div>
</div>
Expand Down
3 changes: 2 additions & 1 deletion web/src/data/resumeInfo.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@
]
},
{
"entity": "TEKsystems - Consultant at Nike",
"entity": "TEKsystems",
"subentity": "Consultant at Nike",
"icon": "/images/resume/teksystems.png",
"location": "Beaverton, OR",
"positions": [
Expand Down
7 changes: 5 additions & 2 deletions web/src/pages/styles/resume.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,11 @@
text-align: center;
}

.subentity {
font-size: 0.6em;
color: #666;
}

.title {
white-space: nowrap;
}
Expand Down Expand Up @@ -165,8 +170,6 @@
margin-right: 10px;
}
.experienceEntity {
display: flex;
align-items: baseline;
width: 100%;
}
.experienceEntity em {
Expand Down

0 comments on commit c3aa9c9

Please sign in to comment.