-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheventcatalog.config.js
56 lines (55 loc) · 1.39 KB
/
eventcatalog.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
const publicPath = process.env.BASE_PATH ? `${process.env.BASE_PATH}/` : '';
module.exports = {
basePath: process.env.BASE_PATH ?? '',
title: 'OPG Event Store',
tagline: 'Documentation source for cross-service events',
organizationName: 'OPG',
projectName: 'Event Store',
editUrl: 'https://github.com/ministryofjustice/opg-event-store/edit/main',
trailingSlash: true,
primaryCTA: {
label: 'Explore Events',
href: '/events'
},
secondaryCTA: {
'label': "Explore Services",
'href': "/services"
},
logo: {
alt: 'EventCatalog Logo',
src: 'logo.svg',
},
footerLinks: [
{ label: 'Events', href: '/events' },
{ label: 'Services', href: '/services' },
{ label: 'Visualiser', href: '/visualiser' },
{ label: '3D Node Graph', href: '/overview' },
{ label: 'GitHub', href: 'https://github.com/ministryofjustice/opg-event-store/edit/main' }
],
users: [
{
id: 'vega',
name: 'Vega',
avatarUrl: `${publicPath}vega.svg`,
role: 'Team',
},
{
id: 'mrlpa',
name: 'Make and Register an LPA',
avatarUrl: `${publicPath}make-register.svg`,
role: 'Team',
},
{
id: 'supervision',
name: 'Supervision',
avatarUrl: `${publicPath}supervision.svg`,
role: 'Team',
},
{
id: 'use',
name: 'UaL',
avatarUrl: `${publicPath}ual.svg`,
role: 'Team',
},
],
}