Files
minhtran_dev/src/components/Experience.jsx

35 lines
895 B
React
Raw Normal View History

2025-01-29 17:35:25 -05:00
import { For } from "solid-js";
import JobCard from "./JobCard";
import { createSignal } from "solid-js";
const Experience = () => {
2025-01-29 23:25:18 -05:00
const [jobs, _] = createSignal([
2025-01-29 17:35:25 -05:00
{
title: "Software Developer Engineer Intern",
2025-02-03 15:40:44 -05:00
company: "Amazon Canada (Delivery Extensions Team)",
2025-01-29 17:35:25 -05:00
location: "Toronto, Ontario, Canada",
range: "May 2025 - July 2025",
2025-01-29 23:25:18 -05:00
url: "https://amazon.jobs/content/en/teams/ftr",
2025-01-29 17:35:25 -05:00
},
{
title: "Software Engineer Intern",
2025-02-03 15:40:44 -05:00
company: "Cisco Canada",
2025-01-29 17:35:25 -05:00
location: "Remote",
range: "January 2023 - May 2023",
url: "https://developer.cisco.com/docs/modeling-labs/cat-9000v/",
},
]);
return (
2025-01-29 23:25:18 -05:00
<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">
2025-01-29 17:35:25 -05:00
<For each={jobs()}>{(job) => <JobCard job={job} />}</For>
</div>
</section>
);
};
export default Experience;