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