mirror of
https://github.com/status-im/subspace-docs.git
synced 2025-02-01 15:37:46 +00:00
41 lines
998 B
JavaScript
41 lines
998 B
JavaScript
module.exports = {
|
|
title: 'Phoenix',
|
|
description: 'Reactive ÐApp Development',
|
|
base: '/phoenix-docs/',
|
|
themeConfig: {
|
|
displayAllHeaders: true,
|
|
nav: [
|
|
{ text: 'Getting Started', link: '/getting-started/' },
|
|
{ text: 'Tutorial', link: '/tutorial' },
|
|
{ text: 'Integrations', link: '/integrations-overview' },
|
|
{ text: 'API', link: '/api' },
|
|
{ text: 'Github', link: 'https://github.com/status-im/phoenix' },
|
|
],
|
|
sidebar: [
|
|
'/',
|
|
'/how-it-works',
|
|
'/getting-started',
|
|
{
|
|
title: 'Integrations',
|
|
collapsable: false,
|
|
children: [
|
|
['/integrations-overview', 'Overview'],
|
|
'/react',
|
|
{
|
|
title: 'Redux',
|
|
collapsable: false,
|
|
children: [
|
|
'/redux',
|
|
'/redux-observables'
|
|
]
|
|
},
|
|
'/graphql',
|
|
'/apollo-client'
|
|
]
|
|
},
|
|
['/tutorial', 'Tutorial'],
|
|
'/api'
|
|
]
|
|
},
|
|
};
|