forked from Velocimeter/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.config.js
More file actions
59 lines (59 loc) · 1.92 KB
/
theme.config.js
File metadata and controls
59 lines (59 loc) · 1.92 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
export default {
projectLink: "https://github.com/Velocimeter/",
docsRepositoryBase: "https://github.com/Velocimeter/docs/blob/main",
titleSuffix: "Velocimeter",
nextLinks: true,
prevLinks: true,
search: true,
unstable_stork: false,
darkMode: true,
font: false,
footer: true,
footerText: `MIT ${new Date().getFullYear()} © Velocimeter.`,
footerEditLink: `Edit this page on GitHub`,
logo: (
<>
<img src='/velocimeter.png' alt='Velocimeter' height={240} width={240} />
<span className='mr-2 font-extrabold md:inline'></span>
<span className='text-gray-600 font-normal hidden md:inline'>
Liquidity Labs
</span>
</>
),
head: (
<>
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
<meta
name='description'
content='Velocimeter: The liquidity base-layer of the Canto ecosystem.'
/>
<meta name='twitter:card' content='summary_large_image' />
<meta name='twitter:site' content='@VelocimeterFi' />
<meta
name='twitter:title'
content='Velocimeter: The liquidity base-layer of the Canto ecosystem.'
/>
<meta
name='twitter:description'
content='Velocimeter is an automated market maker (AMM or simply, decentralized exchange) on Canto L2 blockchain.'
/>
<meta
name='twitter:image'
content='https://docs.velocimeter.xyz/dome6.jpg'
/>
<meta
property='og:title'
content='Velocimeter: The liquidity base-layer of the Canto ecosystem.'
/>
<meta
property='og:description'
content='Velocimeter is an automated market maker (AMM or simply, decentralized exchange) on Canto L2 blockchain.'
/>
<meta
property='og:image'
content='https://Velocimeter-docs.pages.dev/Velocimeter_banner.jpg'
/>
<meta name='apple-mobile-web-app-title' content='Velocimeter' />
</>
),
};