-
Notifications
You must be signed in to change notification settings - Fork 441
Expand file tree
/
Copy pathinkeep.js
More file actions
31 lines (28 loc) · 909 Bytes
/
inkeep.js
File metadata and controls
31 lines (28 loc) · 909 Bytes
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
// Shared Inkeep configuration
const inkeepBaseSettings = {
apiKey: process.env.INKEEP_API_KEY,
primaryBrandColor: '#213147',
organizationDisplayName: 'Arbitrum',
theme: {
syntaxHighlighter: {
lightTheme: require('prism-react-renderer/themes/github'),
darkTheme: require('prism-react-renderer/themes/palenight'),
},
},
};
const inkeepModalSettings = {
placeholder: 'Search documentation...',
defaultQuery: '',
maxResults: 40,
debounceTimeMs: 300,
shouldOpenLinksInNewTab: true,
};
const inkeepExampleQuestions = [
'How to estimate gas in Arbitrum?',
'What is the difference between Arbitrum One and Nova?',
'How to deploy a smart contract on Arbitrum?',
'What are Arbitrum Orbit chains?',
'How does Arbitrum handle L1 to L2 messaging?',
'What is Arbitrum Stylus?',
];
module.exports = { inkeepBaseSettings, inkeepModalSettings, inkeepExampleQuestions };