updated it jobbank
All checks were successful
Vercel Production Deployment / Deploy-Production (push) Successful in 1m6s

This commit is contained in:
ChrQR 2024-06-11 13:41:29 +02:00
parent 8a4c867a8a
commit c373845227
2 changed files with 7 additions and 0 deletions

View File

@ -35,6 +35,12 @@ export default async function ITJobbank() {
return (
<>
<h1 className="text-4xl my-4">IT Jobbank</h1>
<p className="text-xl">
It jobbank do not optimize their images for the web, and like to use
images and videos in their job postings. This is heavily impacting the
user experience of this part of the site, and I am working on a
solution.
</p>
{jobs.map((job, i) => (
<JobCard key={i} job={job} />
))}

View File

@ -74,6 +74,7 @@ export default async function JobCard(props: { job: JobPosting }) {
</AccordionTrigger>
<AccordionContent>
<div className="flex flex-col gap-2">
{title.length > 50 && title}
<div className={`py-4 ${styles.parsedDescription}`}>
{parsedDescription}
</div>