made minor updates
This commit is contained in:
parent
29a0116d05
commit
e30cb592a9
|
@ -10,11 +10,11 @@ const RunningHobby: InfoCardProps = {
|
||||||
listClassName: "col-12"
|
listClassName: "col-12"
|
||||||
}
|
}
|
||||||
|
|
||||||
const Listing: InfoCardProps = {
|
const Lifting: InfoCardProps = {
|
||||||
title: "Lifting",
|
title: "Lifting",
|
||||||
description: "Began lifting when I got into college. (TODO: add more before publishing)",
|
description: "Began lifting when I got into college.",
|
||||||
listTitle: "Personal Records",
|
listTitle: "Personal Records",
|
||||||
list:["Bench - 200lbs", "Squat - 305lbs"],
|
list:["Bench - 235lbs", "Squat - 345lbs"],
|
||||||
listClassName: "col-12"
|
listClassName: "col-12"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -25,5 +25,5 @@ const VideogameHobby: InfoCardProps = {
|
||||||
list: ["Galaga", "Clone Hero", "Minecraft"]
|
list: ["Galaga", "Clone Hero", "Minecraft"]
|
||||||
}
|
}
|
||||||
|
|
||||||
export const AllHobbies: InfoCardProps[] = [RunningHobby, VideogameHobby];
|
export const AllHobbies: InfoCardProps[] = [RunningHobby, Lifting];
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import Job from "../../types/Job";
|
import Job from "../../types/Job";
|
||||||
import VrboImage from "../images/vrbo-logo-min.png";
|
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.svg";
|
import ChicksImage from "../images/chicks-logo.png";
|
||||||
import CompImage from "../images/compwallet-logo.png";
|
import CompImage from "../images/compwallet-logo.png";
|
||||||
|
|
||||||
const VrboJob: Job = {
|
const VrboJob: Job = {
|
||||||
|
@ -50,8 +50,9 @@ const CompWalletJob: Job = {
|
||||||
company: "Casino CompWallet",
|
company: "Casino CompWallet",
|
||||||
timespan: "October 2021 - Present",
|
timespan: "October 2021 - Present",
|
||||||
items: [
|
items: [
|
||||||
|
"Architected & built in-house advertising platform",
|
||||||
"Work on Ruby-On-Rails API",
|
"Work on Ruby-On-Rails API",
|
||||||
"Updated a React Native mobile app"
|
"Updated a React Native mobile app used with ~15,000 users"
|
||||||
],
|
],
|
||||||
image: CompImage
|
image: CompImage
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,6 +9,15 @@ const WebsiteProject: InfoCardProps = {
|
||||||
linkTitle: "GitHub Repo"
|
linkTitle: "GitHub Repo"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const RoomyProject: InfoCardProps = {
|
||||||
|
title: "roomy-sentry",
|
||||||
|
description: "Built software to monitor the presence of a person based on sniffing the wi-fi packets of their mobile devices. Practically used in order to tell if my roommate is home.",
|
||||||
|
listTitle: "Technologies Used",
|
||||||
|
list: ["C#", ".NET 6", "NoSQL", "Docker", "nginx", "React Native", "Cloudflare"],
|
||||||
|
link: "https://github.com/nickorlow/roomy-sentry",
|
||||||
|
linkTitle: "Github Repository"
|
||||||
|
}
|
||||||
|
|
||||||
const CavCashProject: InfoCardProps = {
|
const CavCashProject: InfoCardProps = {
|
||||||
title: "cavcash",
|
title: "cavcash",
|
||||||
description: "CavCash started as a project in 2017 as a way to pay with flashdrives. After recruiting a few friends to help me, we build ourselves into a PayPal competitor but shutdown due to funding. I continued to re-write the platform as a cryptocurrency.",
|
description: "CavCash started as a project in 2017 as a way to pay with flashdrives. After recruiting a few friends to help me, we build ourselves into a PayPal competitor but shutdown due to funding. I continued to re-write the platform as a cryptocurrency.",
|
||||||
|
@ -36,5 +45,5 @@ const SPONODEProject: InfoCardProps = {
|
||||||
linkTitle: "GitHub Repo"
|
linkTitle: "GitHub Repo"
|
||||||
}
|
}
|
||||||
|
|
||||||
export const AllProjects: InfoCardProps[] = [WebsiteProject, CavCashProject, XenMapProject, SPONODEProject];
|
export const AllProjects: InfoCardProps[] = [WebsiteProject, RoomyProject, XenMapProject, SPONODEProject];
|
||||||
|
|
||||||
|
|
BIN
src/static/images/chicks-logo.png
Normal file
BIN
src/static/images/chicks-logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.1 KiB |
Loading…
Reference in a new issue