> Portal Navigation:
>
> - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version.
> - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages).
> - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`).
> - Top-level index of all portals: https://dev.wix.com/docs/llms.txt
> - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt
## Resource: Add a Dashboard Page
## Article: Add a Dashboard Page
## Article Link: https://dev.wix.com/docs/develop-websites/articles/coding-with-velo/frontend-code/dashboard-admin-pages/add-a-dashboard-page.md
## Article Content:
# Add a Dashboard Page
[Dashboard pages](#LINK-PLACEHOLDER) allow you to create a custom back office for you and your [collaborators](https://support.wix.com/en/article/roles-permissions-overview) to efficiently manage your business operations and dynamic content. You can add functionality to your dashboard pages using the [Wix Dashboard API](https://dev.wix.com/docs/velo/api-reference/wix-dashboard/introduction.md), allowing your code to interact with the dashboard environment.
> **Note:** In your local IDE, run `wix dev` to open the editor to add a dashboard page to your site.
## Add a dashboard page to your site
Dashboard pages can only be added to your site in the editor and can be viewed in your site's dashboard after publishing your site.
**Add a dashboard page in Wix Studio**
1. Click the **Pages**  icon on the left sidebar.
1. Click the **Add New Page**  icon and then click **Add** under Dashboard Page.
If the **Introducing Dashboard Pages** panel appears, click **Add Dashboard Page**.
1. Find your new dashboard page in the **Dashboard Pages tab**.
1. Click on the **More Actions**  icon and then select **Rename** to give your new page a name.
1. Use Wix elements, datasets, and code to build your dashboard pages.
1. Publish your site.
1. Navigate to the dashboard to see your page.
**Add a dashboard page in Wix Editor**
1. Click **Add** on the left side of the editor.
1. Click **Page** and then click the add  icon next to the **Dashboard Page**.
This action opens the **Site Pages and Menu** tab.
If the **Introducing Dashboard Pages** panel appears, click **Add Dashboard Page**.
1. In the **Dashboard Pages** panel, give your new page a name.
1. Use Wix elements, datasets, and code to build your dashboard pages.
1. Publish your site.
1. Navigate to the dashboard to see your page.
## Add functionality to your dashboard page
Use the [Wix Dashboard API](https://dev.wix.com/docs/velo/api-reference/wix-dashboard/introduction.md) to interact with your dashboard pages, such as displaying toast notifications or navigating users to other pages in the dashboard.
To use the Wix Dashboard API, import the relevant functions from `wix-dashboard`:
```js
import { } from 'wix-dashboard';
```
The code example below displays a toast notification at the top of the dashboard page after a product is updated:
```js
import { showToast } from "wix-dashboard";
$w.onReady(function () {
$w("#updateButton").onClick(() => {
const config = {
message: "Product updated successfully!",
type: "success",
};
showToast(config);
});
});
```
## See also
- [About Dashboard Pages](https://dev.wix.com/docs/develop-websites/articles/coding-with-velo/frontend-code/dashboard-admin-pages/about-dashboard-pages.md)
- [wix-dashboard API](https://dev.wix.com/docs/velo/api-reference/wix-dashboard/introduction.md)