> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hyperwisor.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Navigate Page

> A button that navigates to another dashboard page.

<Info>
  **Category:** Navigation · **Navigates:** to a dashboard page
</Info>

## Mental model

A **Navigate Page button is an internal link.** Press it to jump to another page of
the same dashboard.

## When to use it

* Move between dashboard pages
* A "details" or "back" button

## Settings

### General / Style

* **Target page** — where it goes
* **Button text** · **icon** · **icon position** · **variant**
* **Show label / icon / container**
* **Text alignment** · **corner radius** · colors

### Triggers

`click`, plus common events.

## Script API example

The same interactions from a [dashboard script](/script/overview):

```js theme={null}
widget.on('detailsBtn', 'click', () => storage.set('lastPage', 'details'));
```

<Card title="URL Button" icon="link" href="/dashboard/widgets/url-button">
  For external links instead of internal pages.
</Card>
