open-nomad/website/data/subnav.js

42 lines
674 B
JavaScript

const subnavData = [
{ text: 'Overview', url: '/', type: 'inbound' },
{
text: 'Enterprise',
url: 'https://www.hashicorp.com/products/nomad/',
type: 'outbound',
},
'divider',
{
text: 'Tutorials',
url: 'https://learn.hashicorp.com/nomad',
type: 'outbound',
},
{
text: 'Docs',
url: '/docs',
type: 'inbound',
},
{
text: 'API',
url: '/api-docs',
type: 'inbound',
},
{
text: 'Plugins',
url: '/plugins',
type: 'inbound',
},
{
text: 'Tools',
url: '/tools',
type: 'inbound',
},
{
text: 'Community',
url: '/community',
type: 'inbound',
},
]
export default subnavData