This commit is contained in:
Nicholas Orlowsky 2022-07-31 21:28:13 -05:00
parent b99b1c4f74
commit c20d558676
No known key found for this signature in database
GPG key ID: 3845F78A73B14100
6 changed files with 18 additions and 6 deletions

View file

@ -8,7 +8,7 @@ export default function JobCard(props: {style?: any, className?: string, job: Jo
<ScrollAnimation className={"job-card "+(props.className || "")} style={props.style} animateIn={"no-fade-up"} initiallyVisible={true} duration={2} animateOnce={true} offset={50} delay={200}> <ScrollAnimation className={"job-card "+(props.className || "")} style={props.style} animateIn={"no-fade-up"} initiallyVisible={true} duration={2} animateOnce={true} offset={50} delay={200}>
<div className={"row"} style={{paddingTop: 40}}> <div className={"row"} style={{paddingTop: 40}}>
<div className={"col-md-4"}> <div className={"col-md-4"}>
<img className={"float-left float-md-none"} alt={props.job.company+" company logo"} src={props.job.image} style={{objectFit: "contain" ,height: "auto", width: "300px", maxWidth: '100%'}}/> <img className={"float-left float-md-none"} alt={props.job.company+" company logo"} src={props.job.image} style={{objectFit: "contain" ,height: "auto", width: "auto", maxHeight: 100, maxWidth: '300px'}}/>
</div> </div>
<div className={"col-md-8 row"}> <div className={"col-md-8 row"}>
<div className={"col-md-6 text-left"}> <div className={"col-md-6 text-left"}>

View file

@ -14,7 +14,7 @@ const Lifting: InfoCardProps = {
title: "Lifting", 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.", 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", 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" listClassName: "col-12"
} }

View file

@ -3,9 +3,10 @@ import VrboImage from "../images/vrbo-logo-min.png";
import CavImage from "../images/cavcash-logo-min.png"; import CavImage from "../images/cavcash-logo-min.png";
import ChicksImage from "../images/chicks-logo.png"; import ChicksImage from "../images/chicks-logo.png";
import CompImage from "../images/compwallet-logo.png"; import CompImage from "../images/compwallet-logo.png";
import THDImage from "../images/homdepot-logo.png";
const VrboJob: Job = { const VrboJob: Job = {
title: "Data Scientist", title: "Data Science Intern",
company: "Vrbo, a part of Expedia Group", company: "Vrbo, a part of Expedia Group",
uri: "https://vrbo.com", uri: "https://vrbo.com",
timespan: "August 2019 - January 2021", timespan: "August 2019 - January 2021",
@ -57,6 +58,17 @@ const CompWalletJob: Job = {
image: CompImage 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];

View file

@ -15,7 +15,7 @@ const RoomyProject: InfoCardProps = {
listTitle: "Technologies Used", listTitle: "Technologies Used",
list: ["C#", ".NET 6", "NoSQL", "Docker", "nginx", "React Native", "Cloudflare"], list: ["C#", ".NET 6", "NoSQL", "Docker", "nginx", "React Native", "Cloudflare"],
link: "https://github.com/nickorlow/roomy-sentry", link: "https://github.com/nickorlow/roomy-sentry",
linkTitle: "Github Repository" linkTitle: "Github Repo"
} }
const CavCashProject: InfoCardProps = { const CavCashProject: InfoCardProps = {

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB