Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Attach Resume #103

Merged
merged 3 commits into from
Aug 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ updates:
- package-ecosystem: 'npm' # See documentation for possible values
directory: '/' # Location of package manifests
schedule:
interval: 'daily'
interval: 'weekly'
reviewers:
- 'noahtigner'
Binary file added public/NoahTignerResume.pdf
Binary file not shown.
5 changes: 3 additions & 2 deletions src/assets/data/experienceItems.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"title": "Cloud Developer (SWE II)",
"organization": "HP",
"description": [
"Maintained full product ownership of an internal software service; optimized the Django backend to reduce average API latency by 20% while simultaneously introducing a React frontend",
"Solely maintained an internal software service; optimized the Django backend to reduce average API latency by 20% while simultaneously introducing a React frontend",
"Improved system scalability and resilience through containerization, distributed multitasking, etc.",
"Implemented cloud-based services that seamlessly integrated with platforms and organizations across HP"
]
Expand Down Expand Up @@ -41,7 +41,8 @@
"description": [
"B.S. in Computer Science (Departmental Honors) - Software Development Track",
"B.S. in Spatial Data Science (Departmental Honors)",
"Minor in Music Technology"
"Minor in Music Technology",
"Phi Beta Kappa Honor Society"
]
}
]
13 changes: 11 additions & 2 deletions src/components/ContactIcon/ContactIcon.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
import { Icon, styled } from '@mui/material';
import { GitHub, YouTube, LinkedIn, EmailOutlined } from '@mui/icons-material';
import {
GitHub,
YouTube,
LinkedIn,
EmailOutlined,
InsertDriveFileOutlined,
} from '@mui/icons-material';

import contactItems from '../../assets/data/contactItems.json';

Expand All @@ -22,8 +28,11 @@ function ContactIcon({ label }: ContactIconProps) {
return <StyledIcon as={GitHub} />;
case 'YouTube':
return <StyledIcon as={YouTube} />;
case 'Résumé':
return <StyledIcon as={InsertDriveFileOutlined} />;
default:
throw new Error(`Unknown contact item label: ${label}`);
console.error(`Unknown contact item label: ${label}`);
return null;
}
}

Expand Down
12 changes: 12 additions & 0 deletions src/components/TopNav/ContactDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,18 @@ function ContactDropdown({ anchorEl, onClose }: ContactDropdownProps) {
<ListItemText>{label}</ListItemText>
</MenuItem>
))}
<MenuItem
component="a"
href="/NoahTignerResume.pdf"
target="_blank"
rel="noopener noreferrer"
sx={{ animation: `fadeIn ${(contactItems.length + 1) * 500}ms` }}
>
<ListItemIcon>
<ContactIcon label="Résumé" />
</ListItemIcon>
<ListItemText>Résumé</ListItemText>
</MenuItem>
</MenuList>
</StyledMenu>
);
Expand Down