169 lines
3.7 KiB
TypeScript
169 lines
3.7 KiB
TypeScript
import {themes as prismThemes} from 'prism-react-renderer';
|
|
import type {Config} from '@docusaurus/types';
|
|
import type * as Preset from '@docusaurus/preset-classic';
|
|
|
|
const config: Config = {
|
|
title: 'DePIN Board',
|
|
tagline: 'Navigate the rapidly evolving landscape of Decentralized Physical Infrastructure Networks (DePIN)',
|
|
favicon: 'img/favicon.png',
|
|
|
|
url: 'https://threefold.info',
|
|
baseUrl: '/depin/',
|
|
|
|
onBrokenLinks: 'throw',
|
|
onBrokenMarkdownLinks: 'warn',
|
|
|
|
i18n: {
|
|
defaultLocale: 'en',
|
|
locales: ['en'],
|
|
},
|
|
|
|
presets: [
|
|
[
|
|
'classic',
|
|
{
|
|
docs: {
|
|
sidebarPath: './sidebars.ts',
|
|
},
|
|
blog: {
|
|
showReadingTime: true,
|
|
feedOptions: {
|
|
type: ['rss', 'atom'],
|
|
xslt: true,
|
|
},
|
|
onInlineTags: 'warn',
|
|
onInlineAuthors: 'warn',
|
|
onUntruncatedBlogPosts: 'warn',
|
|
},
|
|
theme: {
|
|
customCss: './src/css/custom.css',
|
|
},
|
|
} satisfies Preset.Options,
|
|
],
|
|
],
|
|
|
|
markdown: {
|
|
mermaid: true,
|
|
},
|
|
themes: ['@docusaurus/theme-mermaid'],
|
|
|
|
scripts: [
|
|
|
|
{
|
|
src:
|
|
'/js/crisp.js',
|
|
async: false,
|
|
},
|
|
],
|
|
|
|
themeConfig: {
|
|
|
|
colorMode: {
|
|
defaultMode: 'dark',
|
|
disableSwitch: true,
|
|
respectPrefersColorScheme: false,
|
|
},
|
|
image: 'img/favicon.png',
|
|
navbar: {
|
|
title: '',
|
|
logo: {
|
|
alt: 'ThreeFold Logo',
|
|
src: 'img/logo.svg',
|
|
srcDark: 'img/new_logo_tft.png',
|
|
},
|
|
items: [
|
|
{
|
|
type: 'docSidebar',
|
|
sidebarId: 'tutorialSidebar',
|
|
position: 'left',
|
|
label: 'DePIN',
|
|
},
|
|
{
|
|
to: '/support',
|
|
label: 'Support',
|
|
position: 'left',
|
|
},
|
|
{
|
|
href: 'https://threefold.io',
|
|
label: 'ThreeFold.io',
|
|
position: 'right',
|
|
},
|
|
],
|
|
},
|
|
footer: {
|
|
style: 'dark',
|
|
links: [
|
|
{
|
|
title: 'DePIN',
|
|
items: [
|
|
{
|
|
label: 'Introduction',
|
|
href: '/docs/introduction',
|
|
},
|
|
{
|
|
label: 'DePIN Board',
|
|
href: '/docs/depin_board',
|
|
},
|
|
{
|
|
label: 'TFGrid Features',
|
|
href: '/docs/threefold_features',
|
|
},
|
|
{
|
|
label: 'Feedback',
|
|
to: '/docs/feedback',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: 'Community',
|
|
items: [
|
|
{
|
|
label: 'Telegram',
|
|
href: 'https://t.me/threefold',
|
|
},
|
|
{
|
|
label: 'X',
|
|
href: 'https://x.com/threefold_io',
|
|
},
|
|
{
|
|
label: 'Forum',
|
|
href: 'https://forum.threefold.io',
|
|
},
|
|
{
|
|
label: 'Support',
|
|
to: '/support',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: 'Links',
|
|
items: [
|
|
{
|
|
label: 'ThreeFold.io',
|
|
href: 'https://threefold.io',
|
|
},
|
|
{
|
|
label: 'Dashboard',
|
|
href: 'https://dashboard.grid.tf',
|
|
},
|
|
{
|
|
label: 'GitHub',
|
|
href: 'https://github.com/threefoldtech/home',
|
|
},
|
|
{
|
|
label: 'Gitea',
|
|
href: 'https://git.ourworld.tf/tfgrid/info_docs_depin',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
copyright: `Copyright © ${new Date().getFullYear()} ThreeFold`,
|
|
},
|
|
prism: {
|
|
theme: prismThemes.github,
|
|
darkTheme: prismThemes.dracula,
|
|
},
|
|
} satisfies Preset.ThemeConfig,
|
|
};
|
|
|
|
export default config; |