open-nomad/website/data/subnav.js

47 lines
972 B
JavaScript
Raw Normal View History

2020-02-06 23:45:31 +00:00
export default [
{ text: 'Overview', url: '/', type: 'inbound' },
{
text: 'Use Cases',
submenu: [
{
text: 'Simple Container Orchestration',
2020-07-02 21:45:32 +00:00
url: '/use-cases/simple-container-orchestration',
},
{
text: 'Non-Containerized Application Orchestration',
2020-07-02 21:45:32 +00:00
url: '/use-cases/non-containerized-application-orchestration',
},
{
text: 'Automated Service Networking with Consul',
2020-07-02 21:45:32 +00:00
url: '/use-cases/automated-service-networking-with-consul',
},
],
},
{
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: 'Resources',
url: '/resources',
2020-07-02 21:45:32 +00:00
type: 'inbound',
},
2020-02-06 23:45:31 +00:00
]