> For the complete documentation index, see [llms.txt](https://phoenixcoded.gitbook.io/able-pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://phoenixcoded.gitbook.io/able-pro/nextjs/how-to/dashboard-as-first-page.md).

# Dashboard as First Page

This section explains how to set the Dashboard page as the default starting page, skipping the landing page, for cases where it is not needed.

* Update the route to ***full-version/src/app/page***

{% tabs %}
{% tab title="NEXT (TS)" %}
{% code title="src/app/page.tsx" %}

```typescript

// project-imports
import DashboardLayout from 'layout/DashboardLayout';
import DashboardDefault from 'views/dashboard/DashboardDefault';
​
export default function Landing() {
 return (
  <DashboardLayout>
    <DashboardDefault />
  </DashboardLayout>
 );
}
```

{% endcode %}
{% endtab %}

{% tab title="NEXT (JS)" %}
{% code title="src/app/page.jsx" %}

```javascript

// project-imports
import DashboardLayout from 'layout/DashboardLayout';
import DashboardDefault from 'views/dashboard/DashboardDefault';
​
export default function Landing() {
 return (
  <DashboardLayout>
    <DashboardDefault />
  </DashboardLayout>
 );
}
```

{% endcode %}
{% endtab %}
{% endtabs %}

{% hint style="warning" %}
Disabling authentication within the system would render certain applications non-functional, particularly those reliant on backend APIs. These applications require a valid token to access and load data seamlessly.
{% endhint %}
