···5566<div class="border border-solid rounded-lg p-6">
77 <div class="flex flex-col md:flex-row gap-6 items-center md:items-start">
88- <div class="flex-1 space-y-4">
88+ <div class="flex-1 space-y-2">
99 <h1 class="text-5xl font-bold">Hi, I'm Dustin!</h1>
1010 <p class="text-lg">
1111 I'm a full stack software engineer from Michigan!
···1616 </p>
1717 </div>
1818 <Image
1919- class="rounded-full size-40 md:size-48 flex-shrink-0"
1919+ class="rounded-full size-40 flex-shrink-0"
2020 loading="eager"
2121 src={me}
2222 alt="Me smiling in my snowboarding jacket on a sunny winter day"
+1
src/layouts/Layout.astro
···11---
22+import "@/styles/starwind.css";
23import "../styles/global.css";
34import Header from "../components/header.astro";
45import CommonHead from "../components/commonHead.astro";
+62-3
src/pages/work.astro
···11---
22import Layout from "../layouts/Layout.astro";
3344-44+const jobs = [
55+ {
66+ company: "Zenimax Online Studios",
77+ title: "Applications Engineer",
88+ notes: [
99+ "Architected and built web app to bring studio knowledge and communication to one place and automate workflows across different teams - React, Fastify, BullMQ, MySQL",
1010+ "Worked on web app to search and review both 2D and 3D game assets - React, Fastify, ArangoDB",
1111+ "Worked on web app to aggregate in-game market performance data and various BI data - React, Fastify, MySQL",
1212+ "Managed and automated deployments for web applications and set up hosting infrastrucure - Ubuntu, Docker, Nginx, Github Actions",
1313+ "Worked on UX improvement features in desktop application that automates 3D asset pipeline from 3DS Max to game ready assets - Python, PyQT"
1414+ ],
1515+ startYear: "2023",
1616+ endYear: "Present"
1717+ },
1818+ {
1919+ company: "Ford Motor Company",
2020+ title: "Software Engineer Technical Lead",
2121+ notes: [
2222+ "Modernized legacy manufacturing quality software, leading the development effort as the team technical lead",
2323+ "Worked with designers and product managers to plan out features in order to meet deliverable expectations",
2424+2525+ ],
2626+ startYear: "2022",
2727+ endYear: "2023"
2828+ },
2929+ {
3030+ company: "Ford Motor Company",
3131+ title: 'Software Engineer - "Ford College Graduate (FCG)"',
3232+ notes: [
3333+ "Helped automate internal application onboarding into various monitoring tools, like Splunk and Dynatrace in a single self-serve web application",
3434+ "Worked on FordPass Android application",
3535+ "Built various web applications used to train and onboard engineers to company coding standards"
3636+ ],
3737+ startYear: "2019",
3838+ endYear: "2022"
3939+ }
4040+];
541---
4242+643<Layout title="dustycode - work">
77-88-</Layout>4444+ <div class="flex flex-col gap-3 [&>*]:mx-auto">
4545+ <h1 class="font-semibold text-5xl">Work Experience</h1>
4646+ <div class="[&>*]:mb-3">
4747+ {
4848+ jobs.map((job) => (
4949+ <div class="border border-solid rounded-lg p-6">
5050+ <h2 class="text-2xl">{job.title}</h2>
5151+ <div class="text-lg flex gap-2 items-center">
5252+ {job.company}
5353+ <span class="text-gray-0 text-sm">
5454+ {job.startYear} - {job.endYear}
5555+ </span>
5656+ </div>
5757+ <ul class="list-disc ml-3 [&>li]:mb-2 text-md">
5858+ {job.notes.map((note) => (
5959+ <li>{note}</li>
6060+ ))}
6161+ </ul>
6262+ </div>
6363+ ))
6464+ }
6565+ </div>
6666+ </div>
6767+</Layout>