feat: enable jobs

This commit is contained in:
jinhojang6 2023-12-05 01:21:43 +09:00 committed by Jinho Jang
parent 855971e658
commit c1411aaeb6
3 changed files with 28 additions and 0 deletions

2
.gitignore vendored
View File

@ -24,3 +24,5 @@ yalc.lock
.idea
static/search-index.json
static/generated/*

View File

@ -43,6 +43,15 @@ const config = {
routeBasePath: '/',
path: 'root-pages',
},
generated: {
// challenges: {
// repoArray: [{ owner: 'status-im', repo: 'bounties' }],
// githubAccessToken: process.env.GITHUB_ACCESS_TOKEN,
// },
jobList: {
jobBoard: 'nimbus',
},
},
og: {},
}),
],
@ -95,6 +104,10 @@ const config = {
label: 'Docs',
to: '/docs',
},
{
label: 'Join Us',
href: '/join-us',
},
{
title: 'Nimbus GitHub repository',
href: 'https://github.com/status-im/nimbus-eth2',

13
root-pages/join-us.mdx Normal file
View File

@ -0,0 +1,13 @@
---
title: Join Us
hide_title: true
pagination_prev: null
pagination_next: null
displayed_sidebar: null
hide_table_of_contents: true
---
import * as jobData from '/static/generated/jobs.json'
import { JobsPerDepartment } from '/src/components/mdx'
<JobsPerDepartment jobData={jobData} />