Skip to content

Commit

Permalink
fixed typos and added compressed pdf
Browse files Browse the repository at this point in the history
  • Loading branch information
nmacdon3 committed Mar 18, 2023
1 parent e8d31e9 commit 14bf93a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
Binary file modified src/assets/MacDonald_Resume_2023.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion src/components/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const About = () => {
<Section title="About">
<p className="text-gray-500 text-xs print:text-sm text-justify">
Nathan is a passionate, driven, and highly ambitious worker who takes immense pride in the
things he creates. He cares deeply about the end user experience, and is dedicated to
things he creates. He cares deeply about the end-user experience, and is dedicated to
providing humane and beautiful interfaces for everyday use.
</p>
</Section>
Expand Down
5 changes: 5 additions & 0 deletions src/contexts/FirebaseContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ import { initializeApp } from 'firebase/app';
import { getFirestore } from 'firebase/firestore';
import { ReactNode } from 'react';

//Resume values are stored in firestore, with backups stored on disk (store-backup.ts).
//This isn't because I think static, user-facing strings should be stored in the db,
//but just to include some querying logic in this project to showcase how'd I'd typically
//go about it :) - Nathan

const firebaseConfig = {
apiKey: import.meta.env.VITE_FIRESTORE_APIKEY,
authDomain: 'resume-53741.firebaseapp.com',
Expand Down
7 changes: 4 additions & 3 deletions src/store/store-backup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const jobs: JobType[] = [
title: 'Frontend Developer',
company: 'Magnet Forensics',
duration: 'July 2022 - Present',
description: `Hired to spearhead web development for an new product being launched and to mentor other developers. `,
description: `Hired to spearhead web development for a new product being launched and to mentor other developers. `,
responsibilities: [
'Rewriting entire repositories to be clean, fast, and future-proof',
'Leading efforts in API design, UX, DX, testing, and security',
Expand All @@ -47,7 +47,7 @@ export const jobs: JobType[] = [
title: 'Lead Frontend Developer - Lead UX Designer',
company: 'Gray Wolf Analytics Inc.',
duration: 'January 2021 - July 2022',
description: `Sole Frontend contributor for fast-paced startup. The small size of the company allowed for Nathan to learn many new skills, such as: `,
description: `Sole Frontend contributor for fast-paced startup. The small size of the company allowed Nathan to learn many new skills, including: `,
responsibilities: [
'Building, securing, and deploying a production-grade web app',
'Designing attractive and intuitive UI / UX',
Expand All @@ -62,7 +62,8 @@ export const jobs: JobType[] = [
description: `Nathan worked 5 terms during his formal education as part of his CO-OP designation. Each term taught him new skills such as:`,
responsibilities: [
"Performing automated QA on an app's frontend",
'Thorough understanding of SCRUM and agile methodologiess'
'Thorough understanding of SCRUM and agile methodologies',
'Strong foundation in SaaS technologies'
]
}
];
Expand Down

0 comments on commit 14bf93a

Please sign in to comment.