One of the most valuable signals you can track on LinkedIn is when your target company’s champions (key decision makers or influencers) change roles or companies. These job changes often present strategic opportunities - whether it’s following champions to their new organizations or identifying replacement stakeholders. With DataGen, you can easily create signals to monitor these champion movements by tracking specific individuals and receiving notifications when they update their profiles. This allows you to stay proactive and maintain relationships even as your key contacts transition to new roles. Our navigation syntax is recursive which means you can make nested navigation groups. You don’t need to include .mdx in page names.
"navigation": {
  "tabs": [
    {
      "tab": "Docs",
      "groups": [
        {
          "group": "Getting Started",
          "pages": ["quickstart"]
        }
      ]
    }
  ]
}

Folders

Simply put your MDX files in folders and update the paths in docs.json. For example, to have a page at https://yoursite.com/your-folder/your-page you would make a folder called your-folder containing an MDX file called your-page.mdx.
You cannot use api for the name of a folder unless you nest it inside another folder. Mintlify uses Next.js which reserves the top-level api folder for internal server calls. A folder name such as api-reference would be accepted.
Navigation With Folder
"navigation": {
  "tabs": [
    {
      "tab": "Docs",
      "groups": [
        {
          "group": "Group Name",
          "pages": ["your-folder/your-page"]
        }
      ]
    }
  ]
}

Hidden Pages

MDX files not included in docs.json will not show up in the sidebar but are accessible through the search bar and by linking directly to them.