forked from deltaDAO/pontusx-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvocs.config.tsx
99 lines (98 loc) · 2.42 KB
/
vocs.config.tsx
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
import { defineConfig } from 'vocs'
import { sidebar } from './sidebar'
import remarkGemoji from 'remark-gemoji'
export default defineConfig({
baseUrl: 'https://docs.pontus-x.eu',
title: 'Pontus-X Docs',
titleTemplate: '%s · Pontus-X Docs',
description:
'The official documentation for Pontus-X, a decentralized data and ai ecosystem.',
head() {
return (
<>
<script
defer
data-domain='docs.pontus-x.eu'
src='https://plausible.io/js/script.js'
></script>
</>
)
},
ogImageUrl: {
'/': '/og-image.png',
'/docs':
'https://vocs.dev/api/og?logo=%logo&title=%title&description=%description',
'/op-stack':
'https://vocs.dev/api/og?logo=%logo&title=%title&description=%description',
},
iconUrl: { light: '/favicons/icon.png', dark: '/favicons/icon.png' },
logoUrl: { light: '/icon-light.png', dark: '/icon-dark.png' },
rootDir: '.',
sidebar,
socials: [
{
icon: 'github',
link: 'https://github.com/deltaDAO/pontusx-docs',
},
],
theme: {
accentColor: {
light: '#004967',
dark: '#00a19e',
},
},
topNav: [
{
text: 'Portals',
items: [
{
text: 'Pontus-X Portal',
link: 'https://www.pontus-x.eu/',
},
{
text: 'EuProGigant Portal',
link: 'https://portal.euprogigant.io/',
},
{
text: 'moveID Portal',
link: 'https://portal.moveid.eu/',
},
{
text: 'Cooperants Portal',
link: 'https://federator.cooperants.info/marketplace',
},
{
text: 'Airbus Portal',
link: 'https://airbus.pontus-x.eu/',
},
{
text: 'Service-Meister Portal',
link: 'https://servicemeister.pontus-x.eu/',
},
{
text: 'Berlin State Portal',
link: 'https://sbb.pontus-x.eu/',
},
{
text: 'Flex4Res Portal',
link: 'https://flex4res.pontus-x.eu/',
},
{
text: 'Future Mobility Portal',
link: 'https://marketplace.future-mobility-alliance.org/',
},
{
text: 'EnergySHR Portal',
link: 'https://www.energyshr.nl/',
},
{
text: 'AgrospAI Portal',
link: 'https://agrospai.udl.cat/',
},
],
},
],
markdown: {
remarkPlugins: [remarkGemoji],
},
})