v5/src/components/JobCard.jsx

18 lines
357 B
React
Raw Normal View History

2025-01-29 17:35:25 -05:00
const JobCard = (props) => {
return (
2025-01-29 23:25:18 -05:00
<div class="p-4">
2025-01-29 17:35:25 -05:00
<h3 class="font-bold text-xl">
{props.job.title} @
<a href={props.job.url} class="text-blue-500 hover:text-blue-600">
{props.job.company}
</a>
</h3>
2025-01-29 23:25:18 -05:00
<p class="text-nord-1 mb-4">
2025-01-29 17:35:25 -05:00
{props.job.range} | {props.job.location}
</p>
</div>
);
};
export default JobCard;