forked from sweepai/sweep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.config.tsx
34 lines (32 loc) · 975 Bytes
/
theme.config.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import React from 'react'
import { DocsThemeConfig } from 'nextra-theme-docs'
const config: DocsThemeConfig = {
logo: <img width={120} src="https://docs.sweep.dev/banner.png" style={{borderRadius: 5}}/>,
head: (
<head>
<link rel="icon" type="image/png" href="./favicon.png" />
<meta property="og:title" content="Sweep AI Documentation" />
<meta property="og:description" content="The official documentation for Sweep AI." />
<meta property="og:image" content="https://docs.sweep.dev/banner.png" />
<script defer src="/_vercel/insights/script.js"></script>
</head>
),
project: {
link: 'https://github.com/sweepai/sweep',
},
chat: {
link: 'https://discord.gg/sweep-ai',
},
docsRepositoryBase: 'https://github.com/sweepai/sweep-docs',
darkMode: true,
primaryHue: 220,
footer: {
text: 'Sweep AI © 2023',
},
useNextSeoProps() {
return {
titleTemplate: '%s'
}
}
}
export default config