> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://plantstore.dev/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://plantstore.dev/_mcp/server.

# Set up navigation

The `docs.yml` file controls the navigation structure of your documentation site. Explore the navigation options below and click through to the Fern documentation for detailed configuration guides.

#### [Sections and pages](https://buildwithfern.com/learn/docs/configuration/navigation#sections-contents-pages-and-folders)

Organize content into sections with pages and folders

#### [Tabs](https://buildwithfern.com/learn/docs/configuration/tabs)

Create top-level navigation groups

#### [Versions](https://buildwithfern.com/learn/docs/configuration/versions)

Add version switching for your documentation

#### [Products](https://buildwithfern.com/learn/docs/configuration/products)

Support multiple products in one site

#### [API reference](https://buildwithfern.com/learn/docs/api-references/generate-api-ref)

Auto-generate API documentation from your spec

#### [Changelogs](https://buildwithfern.com/learn/docs/configuration/changelogs)

Add a changelog section to your docs

## Quick example

Here's a minimal example showing navigation structure in `docs.yml`:

```yaml title="docs.yml"
navigation:
  - section: Getting started
    contents:
      - page: Introduction
        path: docs/pages/intro.mdx
      - page: Quickstart
        path: docs/pages/quickstart.mdx
  - api: API Reference
```

For complete navigation options, see the [navigation documentation](https://buildwithfern.com/learn/docs/configuration/navigation).