ProxyAI/docs/theme.config.tsx
Carl-Robert Linnupuu 33e886860c
Some checks are pending
Build / Build (push) Waiting to run
Build / Verify Plugin (push) Blocked by required conditions
docs: add nextra docs
2026-02-18 03:01:54 +00:00

19 lines
473 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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