updated it jobbank
All checks were successful
Vercel Production Deployment / Deploy-Production (push) Successful in 1m6s
All checks were successful
Vercel Production Deployment / Deploy-Production (push) Successful in 1m6s
This commit is contained in:
parent
8a4c867a8a
commit
c373845227
@ -35,6 +35,12 @@ export default async function ITJobbank() {
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<h1 className="text-4xl my-4">IT Jobbank</h1>
|
<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) => (
|
{jobs.map((job, i) => (
|
||||||
<JobCard key={i} job={job} />
|
<JobCard key={i} job={job} />
|
||||||
))}
|
))}
|
||||||
|
@ -74,6 +74,7 @@ export default async function JobCard(props: { job: JobPosting }) {
|
|||||||
</AccordionTrigger>
|
</AccordionTrigger>
|
||||||
<AccordionContent>
|
<AccordionContent>
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
|
{title.length > 50 && title}
|
||||||
<div className={`py-4 ${styles.parsedDescription}`}>
|
<div className={`py-4 ${styles.parsedDescription}`}>
|
||||||
{parsedDescription}
|
{parsedDescription}
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user