LogoStarterkitpro
Components

Dashboard Layout

A responsive dashboard layout with a fixed sidebar navigation

A complete dashboard layout with a fixed sidebar navigation, user profile section, and main content area. Responsive design with mobile menu toggle.

Dashboard Layout - Overview

Configuration Options

The sidebar component offers several configuration options:

  • collapsible: "offcanvas" | "icon" | "none"
  • variant: "sidebar" | "floating" | "inset"
  • side: "left" | "right"

Explore Options

Explore all options one by one which suite your needs:

components/layouts/dashboard/dashboard-sidebar.tsx
export function DashboardSidebar(props) {
  return (
    <Sidebar collapsible="icon" variant="sidebar" side="left" {...props}>
      {/* Your dashboard content */}
    </Sidebar>
  );
}

Multiple Variants

The dashboard sidebar layout includes several pre-designed views:

Dashboard Sidebar Layout - Analytics Dashboard Sidebar Layout - Tables Dashboard Sidebar Layout - Cards

Tips

  • Customize the sidebar links to match your application's structure
  • Use consistent icons for better visual recognition
  • Keep the most important navigation items at the top

Only Topbar

In some cases, a topbar-only navigation is sufficient for the application. For that please check Dashboard Topbar Layout

On this page