| 1234567891011121314151617181920212223242526272829303132 |
- module.exports = {
- title: 'iBS Member Portal',
- description: 'Where members buy things',
- themeConfig: {
- displayAllHeaders: true,
- nav: [
- // Normal Links
- { text: 'Home', link: '/' },
- { text: 'Guide', link: '/guide/' },
- // Links with dropdown
- {
- text: 'Resources',
- items: [
- { text: 'Prototype', link: 'https://drive.google.com/drive/u/0/folders/1kN1cyT0M-cjiCo3Qys5ydtX-Unam174E' },
- { text: 'URS', link: 'https://drive.google.com/drive/u/0/folders/0B3pJekzAmHmTZWtReXphWDk4QzQ' },
- { text: 'API Docs', link: 'https://drive.google.com/drive/u/0/folders/0B-IzsfKWJTKTYlVadHBHTnpMNE0' }
- ]
- },
- ],
- sidebar: [
- {
- title: 'Guide',
- collapsable: false,
- children: [
- '/guide/',
- '/guide/routing',
- ]
- }
- ]
- }
- }
|