feat: streamline experience section

- Jobs can now be added by changing jobs.json
This commit is contained in:
2025-12-31 18:40:41 -05:00
parent 5c1d7f4b67
commit 41b92fe886
6 changed files with 52 additions and 35 deletions

View File

@@ -0,0 +1,17 @@
import { For } from "solid-js";
import JobCard from "./JobCard";
import { jobs } from "~/data/jobs";
const Experience = () => {
return (
<section class="mt-16 px-4">
<h2 class="text-xl text-nord-1 font-bold mb-6">Experience</h2>
<div class="!flex !flex-col !gap-0.5v ml-2h">
<For each={jobs}>{(job) => <JobCard job={job} />}</For>
</div>
</section>
);
};
export default Experience;