-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.ts
More file actions
82 lines (80 loc) · 2.25 KB
/
Copy pathsidebars.ts
File metadata and controls
82 lines (80 loc) · 2.25 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
tutorialSidebar: [
'intro',
{
type: 'category',
label: 'Getting Started',
collapsed: false,
items: [
'getting-started/installation',
'getting-started/quick-start',
],
},
{
type: 'category',
label: 'Guides',
collapsed: false,
items: [
'guides/basic-usage',
'guides/configuration',
'guides/fetching-messages',
'guides/searching',
'guides/mailbox-management',
],
},
{
type: 'category',
label: 'API Reference',
collapsed: false,
items: [
'api/imapflow-client',
],
},
{
type: 'category',
label: 'Examples',
collapsed: true,
items: [
'examples/fetching-messages',
],
},
{
type: 'html',
value: `
<div
style="
max-width: 260px;
margin: 3px auto 16px auto;
font-size: 13px;
margin-top: 20px;
color: #407ec9;
background-color: hsl(0, 0%, 98%);
box-shadow: 0 1px 4px 1px hsla(0, 0%, 0%, 0.1);
"
>
<a
href="https://emailengine.app/?utm_source=imapflow&utm_campaign=imapflow&utm_medium=sidebar"
style="
display: inline-block;
color: #407ec9;
text-decoration: none;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', Helvetica, Arial, sans-serif;
"
>
<div style="display: flex; align-items: center; gap: 5px; width: 100%; background: white" target="_blank">
<div style="flex-basis: 50%">
<img src="/img/EmailEngine_logo_vert.png" style="width: 130px" />
</div>
<div style="flex-basis: 50%">
<div style="font-size: 13px; line-height: 1.5; text-align: left">Send and receive emails easily with Outlook and Gmail using OAuth2.</div>
</div>
</div>
</a>
</div>
`,
defaultStyle: false,
},
],
};
export default sidebars;