github.com/Ilhicas/nomad@v1.0.4-0.20210304152020-e86851182bc3/website/data/intro-navigation.js (about)

     1  // The root folder for this documentation category is `pages/intro`
     2  //
     3  // - A string refers to the name of a file
     4  // - A "category" value refers to the name of a directory
     5  // - All directories must have an "index.mdx" file to serve as
     6  //   the landing page for the category
     7  
     8  export default [
     9    'use-cases',
    10    { category: 'vs', content: ['ecs', 'mesos', 'terraform'] },
    11    {
    12      category: 'getting-started',
    13      name: 'Getting Started',
    14      content: [
    15        {
    16          title: 'Overview',
    17          href: 'https://learn.hashicorp.com/collections/nomad/get-started',
    18        },
    19        {
    20          title: 'Running Nomad',
    21          href: 'https://learn.hashicorp.com/tutorials/nomad/get-started-run',
    22        },
    23        {
    24          title: 'Jobs',
    25          href: 'https://learn.hashicorp.com/tutorials/nomad/get-started-jobs',
    26        },
    27        {
    28          title: 'Clustering',
    29          href: 'https://learn.hashicorp.com/tutorials/nomad/get-started-cluster',
    30        },
    31        {
    32          title: 'Web UI',
    33          href: 'https://learn.hashicorp.com/tutorials/nomad/get-started-ui',
    34        },
    35        {
    36          title: 'Next Steps',
    37          href:
    38            'https://learn.hashicorp.com/tutorials/nomad/get-started-learn-more',
    39        },
    40      ],
    41    },
    42  ]