mirror of
https://github.com/dyzulk/trustlab-docs.git
synced 2026-01-26 05:25:38 +07:00
16 lines
373 B
TypeScript
16 lines
373 B
TypeScript
import React from 'react'
|
|
import { DocsThemeConfig } from 'nextra-theme-docs'
|
|
|
|
const config: DocsThemeConfig = {
|
|
logo: <span>TrustLab Docs</span>,
|
|
project: {
|
|
link: 'https://github.com/dyzulk/trustlab-docs',
|
|
},
|
|
docsRepositoryBase: 'https://github.com/dyzulk/trustlab-docs/tree/main',
|
|
footer: {
|
|
text: 'TrustLab Documentation',
|
|
},
|
|
}
|
|
|
|
export default config
|