-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
180 lines (175 loc) · 4.24 KB
/
docusaurus.config.js
File metadata and controls
180 lines (175 loc) · 4.24 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
174
175
176
177
178
179
180
// @ts-check
const config = {
title: 'Inkly Cat',
tagline: 'Turn scientific data into publishable results.',
url: 'https://inklycat.com',
baseUrl: '/',
onBrokenLinks: 'throw',
markdown: {
hooks: {
onBrokenMarkdownLinks: 'warn',
},
},
i18n: {
defaultLocale: 'en',
locales: ['en'],
},
presets: [
[
'classic',
{
docs: false,
blog: false,
pages: {
path: 'src/pages',
routeBasePath: '/',
},
theme: {
customCss: './src/css/custom.css',
},
},
],
],
themeConfig: {
metadata: [
{
name: 'description',
content:
'Inkly Cat is a results-oriented workspace for scientific and high-rigor analysis, connecting data processing, scripts, charts, and structured deliverables.',
},
{
name: 'keywords',
content:
'Inkly Cat, scientific analysis agent, research workflow, publishable charts, statistical analysis, chart editor, data processing, OOMOL',
},
],
headTags: [
{
tagName: 'script',
attributes: {
type: 'application/ld+json',
},
innerHTML: JSON.stringify({
'@context': 'https://schema.org',
'@type': 'Organization',
name: 'Inkly Cat',
tagline: 'Turn scientific data into publishable results.',
url: 'https://inklycat.com',
}),
},
],
colorMode: {
defaultMode: 'light',
disableSwitch: true,
respectPrefersColorScheme: false,
},
navbar: {
title: 'Inkly Cat',
logo: {
alt: 'Inkly Cat Logo',
src: 'img/logo.png',
},
items: [
{
label: '工作台',
position: 'left',
to: '/#showcase',
'data-noBrokenLinkCheck': true,
},
{
label: '模板',
position: 'left',
to: '/#templates',
'data-noBrokenLinkCheck': true,
},
{
label: '复用',
position: 'left',
to: '/#reusable',
'data-noBrokenLinkCheck': true,
},
{
label: '开始使用',
position: 'right',
to: '/#contact',
'data-noBrokenLinkCheck': true,
className: 'navbar__cta',
},
],
},
footer: {
style: 'light',
links: [
{
title: '产品',
items: [
{
label: '工作界面',
to: '/#showcase',
'data-noBrokenLinkCheck': true,
},
{
label: '工作流',
to: '/#workflow',
'data-noBrokenLinkCheck': true,
},
{
label: '复用方法',
to: '/#reusable',
'data-noBrokenLinkCheck': true,
},
],
},
{
title: '科研分析',
items: [
{
label: '研究场景',
to: '/#use-cases',
'data-noBrokenLinkCheck': true,
},
{
label: '图表编辑',
to: '/#showcase',
'data-noBrokenLinkCheck': true,
},
{
label: '结构化工作流',
to: '/#workflow',
'data-noBrokenLinkCheck': true,
},
],
},
{
title: '获取方式',
items: [
{
label: '打开 Web 版',
href: 'https://app.oomol.com/',
},
{
label: 'iOS App Store',
href: 'https://apps.apple.com/cn/app/%E5%B0%8F%E5%A2%A8-oomol-ai/id6749377154',
},
{
label: '联系邮箱',
href: 'mailto:hello@inklycat.com',
},
{
label: '回到顶部',
to: '/#top',
'data-noBrokenLinkCheck': true,
},
{
label: '下载入口',
to: '/#contact',
'data-noBrokenLinkCheck': true,
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Inkly Cat.`,
},
},
};
module.exports = config;