We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 590a0fb commit a431203Copy full SHA for a431203
1 file changed
frontend/src/components/job-board-layout/index.tsx
@@ -72,6 +72,16 @@ export const JobBoardLayout = ({
72
<Text size={2} color="grey-500">
73
{jobListing.company}
74
</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
+ )}
85
<Spacer size="large" />
86
<Article>
87
<StyledHTMLText
0 commit comments