added all components and assembeled an okayish looking website

This commit is contained in:
Nicholas Orlowsky 2021-06-30 15:19:59 -04:00
parent 33621b1556
commit d5e25dac3e
44 changed files with 38970 additions and 1587 deletions

51
src/static/data/Jobs.ts Normal file
View file

@ -0,0 +1,51 @@
import Job from "../../types/Job";
import VrboImage from "../images/vrbo-logo-min.png";
import CavImage from "../images/cavcash-logo-min.png";
import ChicksImage from "../images/chicks-logo.svg";
const VrboJob: Job = {
title: "Data Scientist",
company: "Vrbo, a part of Expedia Group",
uri: "https://vrbo.com",
timespan: "August 2019 - January 2021",
items: [
"Worked on Natural Language Processing chatbot",
"Worked with team to identify dataset patterns",
"Helped reduce wait times",
"Reduced offsite booking attempts"
],
image: VrboImage
}
const CavCashJob: Job = {
title: "CEO & Software Engineer",
company: "CavCash Inc",
timespan: "May 2017 - Present",
items: [
"Founded the company",
"Wrote a C# webAPI",
"Managed mongoDB and MSSQL databases",
"Deployed and maintained k8s clusters on bare metal",
"Managed CI/CD & DevOps in Azure DevOps",
"Ran & migrated services between Azure, AWS, and GCP"
],
image: CavImage
}
const ChicksJob: Job = {
title: "Software Engineer",
company: "Chicks Gold",
uri: "https://chicksgold.com",
timespan: "April 2021 - Present",
items: [
"Added features & bugfixes to .NET 5 API",
"Added features & bugfixes to Aurelia website",
"Worked with team to create new feature & bug tickets",
"Deployed code to k8s cluster"
],
image: ChicksImage
}
export const AllJobs: Job[] = [VrboJob, CavCashJob, ChicksJob];