Skip to content

Commit 05a78a1

Browse files
feat(job-board): add Apply Now button at top of job description
1 parent 6b43dee commit 05a78a1

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

  • frontend/src/components/job-board-layout

frontend/src/components/job-board-layout/index.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,16 @@ export const JobBoardLayout = ({
7272
<Text size={2} color="grey-500">
7373
{jobListing.company}
7474
</Text>
75+
<Spacer size="small" />
76+
{jobListing.applyUrl && (
77+
<Button
78+
target="_blank"
79+
href={jobListing.applyUrl}
80+
variant="secondary"
81+
>
82+
<FormattedMessage id="jobboard.applyNow" />
83+
</Button>
84+
)}
7585
<Spacer size="large" />
7686
<Article>
7787
<StyledHTMLText

0 commit comments

Comments
 (0)