mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-04-28 03:30:48 +00:00
19 lines
473 B
TypeScript
19 lines
473 B
TypeScript
import React from 'react'
|
||
import {DocsThemeConfig} from 'nextra-theme-docs'
|
||
|
||
const config: DocsThemeConfig = {
|
||
logo: <span>ProxyAI</span>,
|
||
project: {
|
||
link: 'https://github.com/carlrobertoh/ProxyAI',
|
||
},
|
||
chat: {
|
||
link: 'https://discord.gg/8dTGGrwcnR',
|
||
},
|
||
docsRepositoryBase: 'https://github.com/carlrobertoh/ProxyAI',
|
||
footer: {
|
||
text: 'ProxyAI Documentation',
|
||
},
|
||
useNextSeoProps: () => ({titleTemplate: '%s – ProxyAI'})
|
||
}
|
||
|
||
export default config
|