# 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 %}
