-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.config.tsx
More file actions
44 lines (42 loc) · 1.2 KB
/
theme.config.tsx
File metadata and controls
44 lines (42 loc) · 1.2 KB
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
35
36
37
38
39
40
41
42
43
44
import React from 'react';
import { DocsThemeConfig } from 'nextra-theme-docs';
import { FaTelegram } from 'react-icons/fa6';
import { Logo } from './components/logo';
const config: DocsThemeConfig = {
logo: <Logo />,
useNextSeoProps() {
return {
titleTemplate: '%s - BotMate Docs',
};
},
head: (
<>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="BotMate Docs" />
<meta property="og:description" content="Documentation for BotMate" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://docs.botmate.dev" />
<meta
property="og:image"
content="https://docs.botmate.dev/og-image.png"
/>
<link rel="icon" href="/favicon.ico" />
</>
),
project: {
link: 'https://github.com/botmate/botmate',
},
chat: {
link: 'https://t.me/chatbotmate',
icon: <FaTelegram fontSize={24} fill="currentColor" />,
},
banner: {
text: 'BotMate is a chatbot framework for developers.',
dismissible: true,
},
docsRepositoryBase: 'https://github.com/botmate/docs',
footer: {
text: 'BotMate Docs',
},
};
export default config;