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

# Navigate Auth0 Dashboard

> Explore Auth0 Dashboard's redesigned navigation with an improved information architecture and more structured layout.

export const ReleaseStageNotice = ({feature, stage, plans, contact, terms}) => {
  const stageTextMap = {
    "beta": "Beta",
    "ea": "Early Access"
  };
  const stageText = stageTextMap[stage] || "a product release stage";
  const prsLink = "/docs/troubleshoot/product-lifecycle/product-release-stages";
  const linkify = (text, url) => {
    return <a href={url} target="_blank" rel="noreferrer" class="link">{text}</a>;
  };
  const includeDetails = (plans, contact, terms) => {
    const hasDetails = terms || plans || contact;
    if (!hasDetails) return null;
    return <span data-as="p">
            {plans && <>This feature is available for {linkify(`${plans} plans`, "https://auth0.com/pricing")}. </>}
            {contact && "To participate, contact " + contact + ". "}
            {terms && <>By using this feature, you agree to the applicable Free Trial terms in Okta's {linkify("Master Subscription Agreement", "https://www.okta.com/legal")}.</>}
        </span>;
  };
  return <Warning>
            <span data-as="p">
                <strong>The {feature} feature is in {linkify(stageText, prsLink)}.</strong>
            </span>

            {includeDetails(plans, contact, terms)}
        </Warning>;
};

<ReleaseStageNotice feature="Dashboard new navigation and IA" stage="ea" />

<Callout icon="file-lines" color="#0EA5E9" iconType="regular">
  Auth0 Dashboard Navigation is is available as an Early Access feature on all Auth0 plans.

  Feedback is collected throughout the Early Access period.
</Callout>

The navigation menu in Auth0 Dashboard helps you find what you need faster. The navigation features an improved sidebar with organized sections, a unified breadcrumb system, and improved visual hierarchy.

<Frame caption="Dashboard navigation UI">
  <img src="https://mintlify.s3.us-west-1.amazonaws.com/docs-staging/docs/images/dashboard/new-navigation-ui.png" alt="New dashboard navigation UI" />
</Frame>

## Enable Auth0 Dashboard navigation

When the navigation feature is available for your tenant,  an opt-in popup displays the first time you log in:

1. Select **Try now** to enable the new navigation immediately, or **Maybe later** to dismiss the popup.

* If you choose **Maybe later**, the popup will reappear in 14 days.

2. After opting in, you can disable the navigation feature from your user profile menu:

* Choose your profile icon in the top-right corner of the Dashboard.
* Click the new navigation toggle to switch back to the old navigation UI.

Your preference is saved and persists across sessions.

## How it works

The navigation in Auth0 Dashboard groups related items into logical sections with clear, workflow-focused naming for easier navigation. A sticky page action bar appears at the top of each page with breadcrumbs, tabs, actions, and the sidebar toggle button to keep important controls visible as you scroll.

Breadcrumb trails now appear in the action bar instead of scattered across page headers for consistent context navigation. The new navigation also includes a refreshed, modern layout and structure for improved usability.

The navigation features a redesigned left sidebar as you navigate between sections in Auth0 Dashboard. The sidebar is organized into the following sections:

| Section                    | Contains                                                                                                                                                                                                                                                                                                                                 |
| -------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Primary (non-labeled)      | Home: Dashboard landing for getting started<br />Agents: AI Agents configuration<br />Users: User management<br />Organizations: Organization management<br />Settings: Tenant configuration and account management                                                                                                                      |
| Integration                | Applications: Register and manage your applications<br />APIs: Register and manage your APIs<br />Authentication: Configure authentication (Database, Passwordless)<br />Connections: Manage social connections<br />Enterprise SSO: Manage enterprise connections and self-service profiles<br />Authorization: Create and manage roles |
| Customization              | Branding: Visual editor for Universal Login theming<br />Pages: Universal Login and Forms page customization<br />Portals: Visual editor for portal pages<br />Domains: Manage custom domains                                                                                                                                            |
| Messaging                  | Emails: Email templates and configuration<br />Phone: Phone messaging settings                                                                                                                                                                                                                                                           |
| Automation & Extensibility | Actions: Create and manage Auth0 Actions<br />Events: Stream authentication events to external services<br />Extensions: Official and third-party add-ons<br />Rules: Legacy rules (for existing configurations)<br />Hooks: Legacy hooks (for existing configurations)                                                                  |
| Security & Monitoring      | Attack Protection: Bot, IP throttling, Brute-force, and Breached Password Protection<br />Access Control: Access Control lists<br />Security Dashboard: Security overview and threat metrics<br />Logs: View activity logs<br />Analytics: Usage analytics and reporting                                                                 |

## Browser support

The new navigation requires modern browsers with `localStorage` support for sidebar state persistence. If you encounter any issues, you can always switch back to the classic navigation using the profile menu toggle.

## Learn more

* [Auth0 Dashboard Overview](/docs/get-started/auth0-overview/dashboard)
* [Dashboard Activity](/docs/get-started/auth0-overview/dashboard/activity)
* [Search and Filter by Fields in Auth0 Dashboard](/docs/get-started/auth0-overview/dashboard/search-and-filter-auth0-dashboard)
* [Tenant Settings](/docs/get-started/tenant-settings)
