For the complete documentation index, see llms.txt. This page is also available as Markdown.

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

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>
 );
}

Last updated