nimbus-site/docusaurus.config.js

177 lines
4.0 KiB
JavaScript
Raw Normal View History

2023-06-01 19:37:55 +09:00
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion
require('dotenv').config()
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'Nimbus',
2023-06-03 01:27:56 +09:00
url: 'https://nimbus.team/',
2023-06-01 19:37:55 +09:00
baseUrl: '/',
markdown: {
mermaid: true,
},
// Even if you don't use internalization, you can use this field to set useful
// metadata like html lang. For example, if your site is Chinese, you may want
// to replace "en" with "zh-Hans".
i18n: {
defaultLocale: 'en',
locales: ['en'],
},
presets: [
[
'@acid-info/logos-docusaurus-preset',
/** @type {import('@acid-info/logos-docusaurus-preset').PluginOptions} */
({
businessUnit: 'Nimbus',
theme: {
name: 'default',
options: {
customCss: [require.resolve('./src/css/custom.scss')],
2023-06-02 22:53:47 +03:30
docs: {
default: {
sidebar: {
hide: true,
},
},
},
2023-06-01 19:37:55 +09:00
},
},
docs: {
2023-06-03 01:27:56 +09:00
routeBasePath: '/',
path: 'root-pages',
2023-06-01 19:37:55 +09:00
},
2023-12-05 01:21:43 +09:00
generated: {
// challenges: {
// repoArray: [{ owner: 'status-im', repo: 'bounties' }],
// githubAccessToken: process.env.GITHUB_ACCESS_TOKEN,
// },
jobList: {
jobBoard: 'nimbus',
},
},
2023-07-11 17:06:22 +03:30
og: {},
2023-06-01 19:37:55 +09:00
}),
],
],
2023-06-03 01:27:56 +09:00
plugins: [
[
'@docusaurus/plugin-content-docs',
{
id: 'about',
routeBasePath: '/about',
path: 'about',
breadcrumbs: false,
2023-06-03 01:27:56 +09:00
},
],
2023-07-17 21:32:36 +03:30
[
'@docusaurus/plugin-content-docs',
{
id: 'docs',
routeBasePath: '/docs',
path: 'docs',
sidebarPath: 'docs/sidebars.js',
},
],
],
scripts: [
{
src: 'https://platform.twitter.com/widgets.js',
async: true,
},
2023-06-03 01:27:56 +09:00
],
2023-06-01 19:37:55 +09:00
themeConfig:
/** @type {import('@acid-info/logos-docusaurus-preset').ThemeConfig} */
({
2023-11-28 22:38:18 +09:00
colorMode: {
disableSwitch: false,
respectPrefersColorScheme: true,
},
2023-06-01 19:37:55 +09:00
navbar: {
items: [
{
type: 'search',
},
{
2023-12-15 12:51:21 +03:30
label: 'About Nimbus',
2023-06-01 19:37:55 +09:00
to: '/about',
},
2023-12-15 12:51:21 +03:30
{
label: 'Community',
to: '/community',
},
2023-07-17 21:32:36 +03:30
{
label: 'Docs',
to: '/docs',
},
2023-12-20 17:11:29 +01:00
{
label: 'Guide',
href: 'https://nimbus.guide/',
},
2023-12-15 12:51:21 +03:30
{
label: 'Blog',
href: 'https://blog.nimbus.team/',
},
2023-12-05 01:21:43 +09:00
{
label: 'Join Us',
href: '/join-us',
},
2023-06-01 19:37:55 +09:00
{
2023-12-05 01:03:50 +09:00
title: 'Nimbus GitHub repository',
href: 'https://github.com/status-im/nimbus-eth2',
position: 'right',
className: 'header-github-link',
2023-06-01 19:37:55 +09:00
},
],
},
footer: {
copyright: 'Nimbus @2023<br/>All Rights Reserved.',
links: [
{
items: [
{
href: 'https://twitter.com/ethnimbus',
label: 'Twitter',
},
{
href: 'https://discord.gg/EP8DZnXu9y',
label: 'Discord',
},
{
2023-07-17 21:32:36 +03:30
to: '/docs',
2023-06-01 19:37:55 +09:00
label: 'Docs',
},
{
2023-06-03 01:27:56 +09:00
href: 'https://github.com/status-im',
2023-06-01 19:37:55 +09:00
label: 'Github',
}
2023-06-01 19:37:55 +09:00
],
},
{
items: [
{
href: 'https://jobs.status.im/',
label: 'Work with us',
},
{
href: 'https://guide.nimbus.team/',
label: 'Brand Guidelines',
},
2023-06-01 19:37:55 +09:00
{
2023-06-03 01:27:56 +09:00
href: '/terms',
2023-06-02 19:10:45 +09:00
label: 'Terms & conditions',
2023-06-01 19:37:55 +09:00
},
],
},
],
},
}),
}
module.exports = config