|
| 1 | +const base = '/blockr/' |
| 2 | + |
| 3 | +module.exports = { |
| 4 | + base, |
| 5 | + title: 'blockr', |
| 6 | + description: 'A visual, no-code framework for R', |
| 7 | + head: [ |
| 8 | + ['link', { rel: 'icon', type: 'image/svg+xml', href: `${base}logos/logo-e4-light.svg` }] |
| 9 | + ], |
| 10 | + themeConfig: { |
| 11 | + logo: { light: '/logos/logo-e4-light.svg', dark: '/logos/logo-e4-dark.svg' }, |
| 12 | + siteTitle: 'blockr', |
| 13 | + nav: [ |
| 14 | + { text: 'Learn', link: '/learn/01-build-your-first-app' }, |
| 15 | + { text: 'Docs', link: '/docs/concepts/01-reactivity' }, |
| 16 | + { text: 'Videos', link: '/videos/getting-started' }, |
| 17 | + { text: 'Examples', link: '/examples/' }, |
| 18 | + { text: 'Playground', link: 'https://blockr.cloud/app/empty' } |
| 19 | + ], |
| 20 | + sidebar: { |
| 21 | + '/learn/': [{ |
| 22 | + text: 'Learn', |
| 23 | + items: [ |
| 24 | + { text: 'Build your first app', link: '/learn/01-build-your-first-app' }, |
| 25 | + { text: 'Build a dashboard', link: '/learn/02-build-a-dashboard' }, |
| 26 | + { text: 'Create a custom block', link: '/learn/03-create-a-block' } |
| 27 | + ] |
| 28 | + }], |
| 29 | + '/docs/': [ |
| 30 | + { |
| 31 | + text: 'Concepts', |
| 32 | + items: [ |
| 33 | + { text: 'Reactivity', link: '/docs/concepts/01-reactivity' } |
| 34 | + ] |
| 35 | + }, |
| 36 | + { |
| 37 | + text: 'Block Reference', |
| 38 | + items: [ |
| 39 | + { text: 'Wrangling', link: '/docs/blocks/01-wrangling' }, |
| 40 | + { text: 'Visualisation', link: '/docs/blocks/02-visualisation' }, |
| 41 | + { text: 'I/O', link: '/docs/blocks/03-io' } |
| 42 | + ] |
| 43 | + }, |
| 44 | + { |
| 45 | + text: 'Developer', |
| 46 | + items: [ |
| 47 | + { text: 'Create a block', link: '/docs/dev/create-block' }, |
| 48 | + { text: 'Extend blockr', link: '/docs/dev/extend-blockr' }, |
| 49 | + { text: 'Testing blocks', link: '/docs/dev/testing-blocks' } |
| 50 | + ] |
| 51 | + } |
| 52 | + ], |
| 53 | + '/videos/': [{ |
| 54 | + text: 'Videos', |
| 55 | + items: [ |
| 56 | + { text: 'Getting Started', link: '/videos/getting-started' }, |
| 57 | + { text: 'Filtering and Selecting', link: '/videos/filtering-and-selecting' }, |
| 58 | + { text: 'Transforming Data', link: '/videos/transforming-data' }, |
| 59 | + { text: 'Joining Data', link: '/videos/joining-data' }, |
| 60 | + { text: 'Visualising Data', link: '/videos/visualising-data' }, |
| 61 | + { text: 'Exporting Data', link: '/videos/exporting-data' }, |
| 62 | + { text: 'Creating Custom Blocks', link: '/videos/creating-blocks' }, |
| 63 | + { text: 'Testing Blocks', link: '/videos/testing-blocks' } |
| 64 | + ] |
| 65 | + }] |
| 66 | + }, |
| 67 | + socialLinks: [ |
| 68 | + { icon: 'github', link: 'https://github.com/BristolMyersSquibb/blockr' } |
| 69 | + ], |
| 70 | + footer: { |
| 71 | + message: `Developed by <a href="https://cynkra.com" target="_blank"><img src="${base}logos/logo-cynkra.png" alt="cynkra" style="height:36px;vertical-align:middle"></a> and <a href="https://www.bms.com" target="_blank"><img src="${base}logos/logo-bms.png" alt="BMS" style="height:24px;vertical-align:middle"></a>`, |
| 72 | + copyright: '' |
| 73 | + }, |
| 74 | + } |
| 75 | +} |
0 commit comments