christian 29a4d0be05
Some checks failed
Vercel Production Deployment / Deploy-Production (push) Failing after 43s
initial frontend before bed
2024-06-09 00:27:02 +02:00

17 lines
458 B
TypeScript

import { Job } from "../page";
export default async function JobCard(props: {job: Job}) {
const { title, company, date_posted, description, img, link, location, url } = props.job;
return (
<JobTitle />
<JobImage />
<JobCompany company={company} companyUrl={url} />
<JobDatePosted date_posted={date_posted} />
<JobDescription description={desc} />
<JobLink />
<JobLocation />
)
}