> For the complete documentation index, see [llms.txt](https://pmsgz.gitbook.io/nectar/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pmsgz.gitbook.io/nectar/basics/routes.md).

# Routes

The entry point for the Nectar app is `index.html`

The app shell inside which all other pages are loaded is `/partials/app.html`

The paths for loading pages inside the app shell are defined in `/assets/custom/js/routes.js` file.

You can define all your routes at the end of the file, inside:

```javascript
window.routes.push({

});
```

{% hint style="info" %}
You should learn about Framework7 routes at

<https://framework7.io/docs/routes.html>

<https://framework7.io/docs/view#router-api-methods-properties>
{% endhint %}
