-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathfooterConfig.ts
45 lines (43 loc) · 978 Bytes
/
footerConfig.ts
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
import type { Footer } from '@docusaurus/theme-common';
const footer: Footer = {
style: 'dark',
links: [
{
items: [
{
label: 'Blog',
href: '/blog',
},
{
label: 'Contact',
to: '/project/kernteam',
},
{
label: 'Toegankelijkheid',
to: '/toegankelijkheidsverklaring',
},
{
label: 'Privacyverklaring',
to: '/privacyverklaring',
},
{
label: 'Colofon',
to: '/colofon',
},
{
label: 'GitHub',
href: 'https://github.com/nl-design-system/backlog',
},
{
label: 'Storybook',
href: 'https://nl-design-system.github.io/themes',
},
{
label: 'Figma',
href: 'https://www.figma.com/file/shhwGcqPLi2CapK0P1zz8O/NL-Design-System---Bibliotheek',
},
],
},
],
};
export default footer;