diff --git a/src/components/job-card/JobCard.tsx b/src/components/job-card/JobCard.tsx index e750148..58c9dbc 100644 --- a/src/components/job-card/JobCard.tsx +++ b/src/components/job-card/JobCard.tsx @@ -8,7 +8,7 @@ export default function JobCard(props: {style?: any, className?: string, job: Jo
- {props.job.company+" + {props.job.company+"
diff --git a/src/components/jobs/Jobs.tsx b/src/components/jobs/Jobs.tsx index 3254839..70e2d5d 100644 --- a/src/components/jobs/Jobs.tsx +++ b/src/components/jobs/Jobs.tsx @@ -16,7 +16,7 @@ export default function Jobs() {

Work

{cur}/{AllJobs.length}

- {setCur(e+1)}} indicators={false} wrap={false}> + {setCur(e+1)}} indicators={false} wrap={false}> {AllJobs.map((job, i) => diff --git a/src/static/data/Hobbies.ts b/src/static/data/Hobbies.ts index 49f09db..31e35ef 100644 --- a/src/static/data/Hobbies.ts +++ b/src/static/data/Hobbies.ts @@ -14,7 +14,7 @@ const Lifting: InfoCardProps = { title: "Lifting", description: "Once I was done with cross country, I was so used to working out everyday, I just couldn't stop. I started lifting as a break from my 6 years and 10,000 miles of running and really really liked it.", listTitle: "Personal Records", - list:["Bench - 255lbs (Done at the Home Depot's HQ in Atlanta, GA)", "Squat - 385lbs", "Deadlift - 345lbs"], + list:["Bench - 255lbs (Done at the Home Depot's HQ in Atlanta, GA)", "Squat - 380lbs", "Deadlift - 365lbs"], listClassName: "col-12" } diff --git a/src/static/data/Jobs.ts b/src/static/data/Jobs.ts index 5ffe010..151480c 100644 --- a/src/static/data/Jobs.ts +++ b/src/static/data/Jobs.ts @@ -3,9 +3,10 @@ import VrboImage from "../images/vrbo-logo-min.png"; import CavImage from "../images/cavcash-logo-min.png"; import ChicksImage from "../images/chicks-logo.png"; import CompImage from "../images/compwallet-logo.png"; +import THDImage from "../images/homdepot-logo.png"; const VrboJob: Job = { - title: "Data Scientist", + title: "Data Science Intern", company: "Vrbo, a part of Expedia Group", uri: "https://vrbo.com", timespan: "August 2019 - January 2021", @@ -57,6 +58,17 @@ const CompWalletJob: Job = { image: CompImage } +const HomeDepotJob: Job = { + title: "Software Engineering Intern", + company: "The Home Depot", + uri: "https://homedepot.com", + timespan: "May 2022 - August 2022", + items: [ + "Developed functionality using React.js, Node.js, and Github CI/CD Pipelines for internal tooling saving 500+ engineering hours annually", + "Optimized automotive section of HomeDepot website. Removed unnecessary code, reducing Javascript sent to clients by ~10%" + ], + image: THDImage +} -export const AllJobs: Job[] = [CompWalletJob, CavCashJob, ChicksJob, VrboJob]; +export const AllJobs: Job[] = [HomeDepotJob, CompWalletJob, CavCashJob, ChicksJob, VrboJob]; diff --git a/src/static/data/Projects.ts b/src/static/data/Projects.ts index 2a153be..307afa5 100644 --- a/src/static/data/Projects.ts +++ b/src/static/data/Projects.ts @@ -15,7 +15,7 @@ const RoomyProject: InfoCardProps = { listTitle: "Technologies Used", list: ["C#", ".NET 6", "NoSQL", "Docker", "nginx", "React Native", "Cloudflare"], link: "https://github.com/nickorlow/roomy-sentry", - linkTitle: "Github Repository" + linkTitle: "Github Repo" } const CavCashProject: InfoCardProps = { diff --git a/src/static/images/homdepot-logo.png b/src/static/images/homdepot-logo.png new file mode 100644 index 0000000..24bac19 Binary files /dev/null and b/src/static/images/homdepot-logo.png differ