46 lines
1.1 KiB
JavaScript
Raw Normal View History

2019-09-03 14:40:19 -04:00
module.exports = {
2019-10-03 14:54:46 -04:00
title: 'SUBSPACE',
2019-09-03 14:40:19 -04:00
description: 'Reactive ÐApp Development',
2019-09-27 15:24:05 -04:00
base: '/subspace-docs/',
2019-09-04 21:41:25 -04:00
markdown: {
lineNumbers: true
},
2019-09-03 14:40:19 -04:00
themeConfig: {
2019-10-03 14:54:46 -04:00
logo: "/assets/img/logo-small.png",
2019-09-03 14:40:19 -04:00
displayAllHeaders: true,
2019-09-25 10:17:55 -04:00
search: false,
2019-09-03 14:40:19 -04:00
nav: [
{ text: 'Getting Started', link: '/getting-started/' },
{ text: 'Tutorial', link: '/tutorial' },
2019-09-03 14:40:19 -04:00
{ text: 'Integrations', link: '/integrations-overview' },
{ text: 'API', link: '/api' },
2019-09-27 15:24:05 -04:00
{ text: 'Github', link: 'https://github.com/status-im/subspace' },
2019-09-03 14:40:19 -04:00
],
sidebar: [
'/',
'/how-it-works',
'/getting-started',
{
title: 'Integrations',
collapsable: false,
children: [
['/integrations-overview', 'Overview'],
'/react',
{
title: 'Redux',
collapsable: false,
children: [
'/redux',
2019-09-06 09:28:26 -04:00
'/redux-observable'
]
},
2019-09-10 13:33:00 -04:00
'/reactive-graphql',
'/apollo-client'
2019-09-03 14:40:19 -04:00
]
},
['/tutorial', 'Tutorial'],
'/api'
2019-09-03 14:40:19 -04:00
]
},
};