Skip to content

Commit

Permalink
updated work experience
Browse files Browse the repository at this point in the history
lalewis7 committed Nov 23, 2023
1 parent ec9040f commit 8835bbc
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/components/WorkExperience.jsx
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ import Image from "next/image";

export default function WorkExperience({ job }) {
return <>
<div className="d-flex gap-3">
<div className="d-flex gap-3 pt-4">
{/* <div>
<Image src={`/work/${job.img}`} alt={`${job.company} logo`} width={64} height={64} className="rounded-3" />
</div> */}
10 changes: 9 additions & 1 deletion app/config/work.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
[
{
"title": "Full-stack Software Engineer",
"company": "Confidential (NDA)",
"time": "October 2023 - Present",
"description": [
"Designing the architecture for a peer-to-peer service for scheduling and handling payments of teaching lessons between clients and professionals in the industry.",
"Building the platform using a NextJS frontend, MySQL database, NodeJS API hosted on AWS, payment processing using Stripe, and containerized and orchestrated using Kubernetes."
]
},
{
"title": "Software Engineer",
"company": "Gearbrain",
"img": "gearbrain.png",
"time": "June 2019 - August 2019",
"description": [
"Coded a RWD DMS website using handlebars with the MeteorJS framework for partners and employees to manage and update over 5,000 products for the content website receiving 385k unique visitors and 500k page views each month.",
2 changes: 1 addition & 1 deletion app/page.jsx
Original file line number Diff line number Diff line change
@@ -91,7 +91,7 @@ export default function Home() {
<div className="d-flex flex-column mt-5 mb-4">
<h2 className="display-5 mb-3">Education & Experience</h2>
{degrees.map(degree => <Education edu={degree} />)}
<span className="pt-5 pb-2"></span>
<span className="pt-4 pb-2"></span>
{jobs.map(job => <WorkExperience job={job} />)}
<Link href="/resume" className="btn btn-primary btn-lg rounded-5 d-inline-flex align-items-center gap-2 align-self-center mt-4" tabIndex={0} role="link" aria-label="View Resume">
View Resume <ArrowRight/>

0 comments on commit 8835bbc

Please sign in to comment.