add info
This commit is contained in:
parent
b99b1c4f74
commit
c20d558676
|
@ -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}>
|
||||
<div className={"row"} style={{paddingTop: 40}}>
|
||||
<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 className={"col-md-8 row"}>
|
||||
<div className={"col-md-6 text-left"}>
|
||||
|
|
|
@ -16,7 +16,7 @@ export default function Jobs() {
|
|||
<div className={"align-content-center d-md-none"}>
|
||||
<h1 className={"mb-4"}>Work</h1>
|
||||
<p>{cur}/{AllJobs.length}</p>
|
||||
<Carousel controls={false} interval={null} onSlide={(e)=>{setCur(e+1)}} indicators={false} wrap={false}>
|
||||
<Carousel controls={false} interval={null} onSlide={(e)=>{setCur(e+1)}} indicators={false} wrap={false}>
|
||||
{AllJobs.map((job, i) =>
|
||||
<Carousel.Item>
|
||||
<JobCard job={job}/>
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
|
||||
|
|
|
@ -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];
|
||||
|
||||
|
|
|
@ -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 = {
|
||||
|
|
BIN
src/static/images/homdepot-logo.png
Normal file
BIN
src/static/images/homdepot-logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
Loading…
Reference in a new issue