Dashboard as First Page

How to set Dashboardas First page instead landing

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.tsx

src/app/page.tsx
// PROJECT IMPORTS
import DashboardLayout from 'layout/DashboardLayout';
import DashboardDefault from 'views/dashboard/DashboardDefault';

export default function Landing() {
 return (
  <DashboardLayout>
    <DashboardDefault />
  </DashboardLayout>
 );
}

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.

Last updated