diff --git a/.gitignore b/.gitignore index e8af2f5..b38b040 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,5 @@ yalc.lock .idea static/search-index.json + +static/generated/* diff --git a/docusaurus.config.js b/docusaurus.config.js index 444be99..a56c832 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -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', diff --git a/root-pages/join-us.mdx b/root-pages/join-us.mdx new file mode 100644 index 0000000..bdfef66 --- /dev/null +++ b/root-pages/join-us.mdx @@ -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' + + \ No newline at end of file