forked from axelarnetwork/axelar-docs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
theme.config.js
260 lines (256 loc) · 7.84 KB
/
theme.config.js
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
import { useRouter } from "next/router";
import Link from "next/link";
import Image from "next/image";
const Logo = ({ theme, width, height }) => (
<>
<div className="flex dark:hidden items-center">
<Image
src="/logo/logo.png"
alt=""
width={width}
height={height}
/>
</div>
<div className="hidden dark:flex items-center">
<Image
src="/logo/logo_dark.png"
alt=""
width={width}
height={height}
/>
</div>
</>
);
const TITLE_WITH_TRANSLATIONS = {
"en-US": "Resources & Documentation",
};
const FEEDBACK_LINK_WITH_TRANSLATIONS = {
"en-US": "Question? Give us feedback →",
};
export default {
projectLink: "https://github.com/axelarnetwork",
docsRepositoryBase: "https://github.com/axelarnetwork/axelar-docs/blob/main/pages",
titleSuffix: " | Axelar Network",
search: true,
unstable_flexsearch: true,
floatTOC: true,
defaultMenuCollapsed: true,
feedbackLink: () => {
const { locale } = useRouter();
return (
FEEDBACK_LINK_WITH_TRANSLATIONS[locale] ||
FEEDBACK_LINK_WITH_TRANSLATIONS["en-US"]
);
},
feedbackLabels: "feedback",
logo: () => {
const { locale } = useRouter();
return (
<>
<Logo width={24} height={24} />
<span
className="hidden md:inline select-none font-extrabold mx-2"
title={`Axelar Network | ${TITLE_WITH_TRANSLATIONS[locale] || TITLE_WITH_TRANSLATIONS["en-US"]}`}
>
Axelar Network
</span>
<span className="hidden md:inline select-none text-gray-500 dark:text-gray-400 mx-1">
Documentation
</span>
</>
);
},
head: ({ title, meta }) => {
const { route } = useRouter();
const ogImage = meta.image || "/images/og.png";
return (
<>
{/* Favicons, meta */}
<link
rel="apple-touch-icon"
sizes="180x180"
href="/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon/favicon-16x16.png"
/>
<link rel="manifest" href="/favicon/site.webmanifest" />
<link
rel="mask-icon"
href="/favicon/safari-pinned-tab.svg"
color="#000000"
/>
<meta name="msapplication-TileColor" content="#ffffff" />
<meta httpEquiv="Content-Language" content="en" />
<meta
name="description"
content={
meta.description ||
"Axelar Network Resources & Documentation"
}
/>
<meta
name="og:description"
content={
meta.description ||
"Axelar Network Resources & Documentation"
}
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@axelarcore" />
<meta name="twitter:image" content={ogImage} />
<meta
name="og:title"
content={
title ? title + " | Axelar Network" : "Axelar Network | Documentation"
}
/>
<meta name="og:image" content={ogImage} />
<meta name="apple-mobile-web-app-title" content="Axelar Network" />
</>
);
},
footerEditLink: ({ locale }) => {
switch (locale) {
default:
return "Edit this page on GitHub →";
}
},
footerText: (
<div className="space-y-8 mt-4">
<div className="grid grid-flow-row grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-4">
<div className="space-y-2 mx-4">
<div>
<div className="flex dark:hidden items-center">
<Image
src="/logo/logo_full.png"
alt=""
width={270}
height={60}
/>
</div>
<div className="hidden dark:flex items-center">
<Image
src="/logo/logo_full_dark.png"
alt=""
width={270}
height={60}
/>
</div>
</div>
<div className="text-lg">Empowering developers to build scalable, multichain dApps</div>
</div>
<div className="md:col-span-2 grid grid-flow-row grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-4">
<div className="space-y-4 mx-4">
<div className="text-black dark:text-white text-lg font-bold">Learn</div>
<div className="flex flex-col space-y-3">
<a
href="https://axelar.network"
target="_blank"
rel="noopener noreferrer"
className="no-underline text-current"
>
Website
</a>
<a
href="https://axelar.network/wp-content/uploads/2021/07/axelar_whitepaper.pdf"
target="_blank"
rel="noopener noreferrer"
className="no-underline text-current"
>
Whitepaper
</a>
<a
href="https://axelar.network/blog"
target="_blank"
rel="noopener noreferrer"
className="no-underline text-current"
>
Blog
</a>
<a
href="https://github.com/axelarnetwork"
target="_blank"
rel="noopener noreferrer"
className="no-underline text-current"
>
Github
</a>
</div>
</div>
<div className="space-y-4 mx-4">
<div className="text-black dark:text-white text-lg font-bold">Community</div>
<div className="flex flex-col space-y-3">
<a
href="https://twitter.com/axelarcore"
target="_blank"
rel="noopener noreferrer"
className="no-underline text-current"
>
Twitter
</a>
<a
href="https://discord.gg/aRZ3Ra6f7D"
target="_blank"
rel="noopener noreferrer"
className="no-underline text-current"
>
Discord
</a>
<a
href="https://t.me/axelarcommunity"
target="_blank"
rel="noopener noreferrer"
className="no-underline text-current"
>
Telegram
</a>
<a
href="https://community.axelar.network"
target="_blank"
rel="noopener noreferrer"
className="no-underline text-current"
>
Discussion
</a>
</div>
</div>
<div className="space-y-4 mx-4">
<div className="text-black dark:text-white text-lg font-bold">Others</div>
<div className="flex flex-col space-y-3">
<Link href="/bug-bounty">
<a className="no-underline text-current">
Bug Bounty
</a>
</Link>
<Link href="/terms-of-use">
<a className="no-underline text-current">
Terms of Use
</a>
</Link>
</div>
</div>
</div>
</div>
<div className="text-center">
<a
href="https://axelar.network"
target="_blank"
rel="noopener"
className="inline-flex items-center no-underline text-current font-semibold"
>
<span className="whitespace-nowrap">© {new Date().getFullYear()} Axelar Network. All Rights Reserved.</span>
</a>
</div>
</div>
),
};