Skip to content

Commit

Permalink
feat: add Job Preferences and TlDr sections
Browse files Browse the repository at this point in the history
  • Loading branch information
martapanc committed Sep 18, 2023
1 parent f9e1400 commit da32545
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/app/(public)/recruiters-info/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,20 @@ const RecruitersPage = async () => {
</div>

<hr />

<div className='job-preferences mb-8'>
<h2 className='my-4'>{recruitersPage.jobPreferences.title}</h2>
<ReactMarkdown>
{recruitersPage.jobPreferences.content}
</ReactMarkdown>
</div>

<hr />

<div className='tldr mb-8'>
<h2 className='my-4'>{recruitersPage.tldr.title}</h2>
<ReactMarkdown>{recruitersPage.tldr.content}</ReactMarkdown>
</div>
</div>
</section>
</main>
Expand Down
4 changes: 4 additions & 0 deletions src/components/molecules/RecruiterInfo/recruiterInfo.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@ li {
margin-left: 22px;
margin-bottom: 5px;
}

.tldr p {
margin-bottom: 12px;
}
3 changes: 3 additions & 0 deletions src/data/locales/it.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,5 +94,8 @@
},
"uses": {
"title": "Cose che uso"
},
"recruiters": {
"title": "Info per i Recruiters"
}
}

0 comments on commit da32545

Please sign in to comment.