mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
26 lines
541 B
JavaScript
26 lines
541 B
JavaScript
const themeConfig = {
|
|
logo: <span>Documenso</span>,
|
|
project: {
|
|
link: 'https://documen.so/github',
|
|
},
|
|
chat: {
|
|
link: 'https://documen.so/discord',
|
|
},
|
|
docsRepositoryBase: 'https://github.com/documenso/documenso/tree/main/apps/documentation',
|
|
footer: {
|
|
text: (
|
|
<span>
|
|
{new Date().getFullYear()} ©{' '}
|
|
<a href="https://documen.so" target="_blank">
|
|
Documenso
|
|
</a>
|
|
.
|
|
</span>
|
|
),
|
|
},
|
|
primaryHue: 100,
|
|
primarySaturation: 48.47,
|
|
};
|
|
|
|
export default themeConfig;
|