46 lines
3.0 KiB
TypeScript
46 lines
3.0 KiB
TypeScript
import Link from "next/link";
|
|
|
|
const Experience = () => {
|
|
return (
|
|
<section className="w-full">
|
|
<article className="bg-slate-800 bg-opacity-40 shadow shadow-black p-3 my-4 rounded-lg">
|
|
<Link target="_blank" referrerPolicy="no-referrer" href="https://dropper.studio" className="uppercase text-2xl text-rose-600 hover:text-rose-400 active:text-rose-600">Dropper Studio</Link>
|
|
<p className="font-light italic text-rose-300">Nashville, TN (hybrid) - Software Engineer</p>
|
|
<p>March 2023 - present</p>
|
|
|
|
<div className="h-[1px] w-full my-3 bg-rose-300" />
|
|
|
|
<p className="leading-relaxed font-light">Building a full-stack e-commerce platform for the music industry. Experience includes: producing a functional proof of concept from design specifications; constructing a scalable, performant full-stack architecture; and project/team management skills.</p>
|
|
|
|
<Link href="/about/work/dropper" className="text-rose-300 hover:text-rose-500 active:text-rose-300">Learn more about my work with Dropper</Link>
|
|
</article>
|
|
|
|
<article className="bg-slate-800 bg-opacity-40 shadow shadow-black p-3 my-4 rounded-lg">
|
|
<Link target="_blank" referrerPolicy="no-referrer" href="https://dization.com/" className="uppercase text-2xl text-rose-600 hover:text-rose-400 active:text-rose-600">Dization, Inc.</Link>
|
|
<p className="font-light italic text-rose-300">Pittsburgh, PA (remote) - Software Engineer (intern)</p>
|
|
<p>October 2022 - March 2023</p>
|
|
|
|
<div className="h-[1px] w-full my-3 bg-rose-300" />
|
|
|
|
<p className="leading-relaxed font-light">Participated in the development of an enterprise project management solution. Built several new features, contributed to design and UX discussions, and took initiative on debugging efforts. Technologies included PHP, MySQL, jQuery, and Bootstrap.</p>
|
|
|
|
<Link href="/about/work/dization" className="text-rose-300 hover:text-rose-500 active:text-rose-300">Learn more about my work with Dization</Link>
|
|
</article>
|
|
|
|
<article className="bg-slate-800 bg-opacity-40 shadow shadow-black p-3 my-4 rounded-lg">
|
|
<h3 className="uppercase text-2xl text-rose-600">Metazu Studio</h3>
|
|
<p className="font-light italic text-rose-300">Nashville, TN (hybrid) - Software Engineer (consultant)</p>
|
|
<p>March 2022 - December 2022</p>
|
|
|
|
<div className="h-[1px] w-full my-3 bg-rose-300" />
|
|
|
|
<p className="leading-relaxed font-light">Consulted on small teams for the design and engineering of full-stack web applications for clients. Used technologies including Node.js, React, MongoDB, and PostgreSQL.</p>
|
|
</article>
|
|
|
|
<Link href="/about/work" className="text-rose-300 hover:text-rose-500 active:text-rose-300 bg-slate-950 p-2 rounded-lg shadow-lg">See more about my experience</Link>
|
|
</section>
|
|
)
|
|
}
|
|
|
|
export default Experience;
|