open-nomad/website/data/subnav.js

42 lines
674 B
JavaScript
Raw Normal View History

const subnavData = [
{ text: 'Overview', url: '/', type: 'inbound' },
{
text: 'Enterprise',
url: 'https://www.hashicorp.com/products/nomad/',
2020-07-02 21:45:32 +00:00
type: 'outbound',
},
'divider',
{
2020-07-02 21:45:32 +00:00
text: 'Tutorials',
url: 'https://learn.hashicorp.com/nomad',
2020-07-02 21:45:32 +00:00
type: 'outbound',
},
{
text: 'Docs',
url: '/docs',
2020-07-02 21:45:32 +00:00
type: 'inbound',
},
{
text: 'API',
url: '/api-docs',
2020-07-02 21:45:32 +00:00
type: 'inbound',
},
{
text: 'Plugins',
url: '/plugins',
type: 'inbound',
},
{
text: 'Tools',
url: '/tools',
type: 'inbound',
},
{
text: 'Community',
url: '/community',
2020-07-02 21:45:32 +00:00
type: 'inbound',
},
2020-02-06 23:45:31 +00:00
]
export default subnavData