## Automatic main navigation rules

The main navigation component builds itself automatically based on the MDX files present on the `content/pages` folder. It only supports a single level of navigation items.

As a rule please use an `index.mdx` file for your home page.

To provide a meaningful label to the navigation item you can use the frontmatter metadata in the MDX files. All you need to know is in every page that you create, you just need to set `frontmatter` with the following properties:

```
---
title: About
order: 10
---
```

Where `title` is the label you want for the navigation item and `order` is the sort order where you want the navigation item to appear in.
