This repository was archived by the owner on Nov 12, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
173 lines (173 loc) · 5.54 KB
/
docusaurus.config.js
File metadata and controls
173 lines (173 loc) · 5.54 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
module.exports = {
"title": "Yet Another Mail Merge Documentation",
"tagline": "The tagline of my site",
"url": "https://your-docusaurus-test-site.com",
"baseUrl": "/",
"onBrokenLinks": "throw",
"favicon": "img/favicon.ico",
"organizationName": "your-org",
"projectName": "docusaurus",
"themeConfig": {
"docs": {
"sidebar": {
"hideable": true,
},
},
"navbar": {
"style": "primary",
"logo": {
"alt": "Yet Another Mail Merge Documentation",
"src": "img/yamm-support-logo.svg"
},
"items": [
{
"type": 'search',
"position": 'right',
}
],
},
"footer": {
"links": [
{
"items": [
{
"html": `
<img src="/img/yamm-logo-text.svg" alt="YAMM" width="189" height="34" />
<ul class="footer-social-items">
<li>
<a href="https://twitter.com/yamm_mail_merge" target="_blank" rel="noreferrer noopener" aria-label="YAMM on Twitter">
<img src="/img/social-twitter-icon.svg" alt="YAMM on Twitter" width="25" height="25" />
</a>
</li>
<li>
<a href="https://www.youtube.com/channel/UCoC_M40gn7JsL4HBpFyZq3Q" target="_blank" rel="noreferrer noopener" aria-label="YAMM on YouTube">
<img src="/img/social-youtube-icon.svg" alt="YAMM on YouTube" width="25" height="25" />
</a>
</li>
<li>
<a href="https://www.linkedin.com/showcase/yet-another-mail-merge/" target="_blank" rel="noreferrer noopener" aria-label="YAMM on LinkedIn">
<img src="/img/social-linkedin-icon.svg" alt="YAMM on LinkedIn" width="25" height="25" />
</a>
</li>
<li>
<a href="https://www.facebook.com/yetanothermailmerge/" target="_blank" rel="noreferrer noopener" aria-label="YAMM on Facebook">
<img src="/img/social-facebook-icon.svg" alt="YAMM on Facebook" width="25" height="25" />
</a>
</li>
</ul>
`,
},
]
},
{
"title": "Product",
"items": [
{
"label": "How it works",
"to": "https://yamm.com/#HowItWorks"
},
{
"label": "Features",
"to": "https://yamm.com/#Features"
},
{
"label": "Pricing",
"to": "https://yamm.com/pricing"
},
{
"label": "Install YAMM",
"to": "https://app.yamm.com/signup"
}
],
},
{
"title": "Resources",
"items": [
{
"label": "Getting started",
"to": "https://support.yet-another-mail-merge.com/hc/en-us/categories/201313669-Getting-Started"
},
{
"label": "Help center",
"to": "https://support.yet-another-mail-merge.com/hc/en-us"
},
{
"label": "Contact support",
"to": "https://support.yet-another-mail-merge.com/hc/en-us/requests/new"
},
{
"label": "Release notes",
"to": "https://support.yet-another-mail-merge.com/hc/en-us/sections/202873045"
},
{
"label": "Blog",
"to": "https://yamm.com/blog/"
}
],
},
{
"title": "Legal",
"items": [
{
"label": "Terms of service",
"to": "https://yamm.com/terms-of-service"
},
{
"label": "Privacy policy",
"to": "https://yamm.com/privacy-policy"
},
{
"label": "Cookie policy",
"to": "https://yamm.com/cookie-policy"
},
{
"label": "Google disclosure",
"to": "https://yamm.com/google-disclosure"
},
{
"label": "DPA",
"to": "https://yamm.com/data-processing-agreement"
},
{
"label": "Impressum",
"to": "https://yamm.com/impressum"
},
],
},
{
"title": "Our other products",
"items": [
{
"label": "Awesome Table",
"to": "https://workspace.google.com/marketplace/app/awesome_table/56088344336"
},
{
"label": "Form Publisher",
"to": "https://workspace.google.com/marketplace/app/form_publisher/827172627657"
},
],
},
],
"copyright": "Copyright © 2022 Talarian Sàrl. All rights reserved.",
}
},
"presets": [
[
"@docusaurus/preset-classic",
{
"docs": {
"routeBasePath": "/",
"sidebarPath": require.resolve('./sidebars.js'),
"remarkPlugins": [
require('./src/remark/convertYoutubeEmbeds.js'),
require('./src/remark/swapContextAndPrereq.js'),
require('./src/remark/createAwesomeTableEmbeds.js')],
},
"theme": {
"customCss": require.resolve('./src/css/custom.css')
}
}
]
],
"plugins": []
};