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

# Leadership Dashboard

> Leadership Operating System overview screen at /lo/dashboard, showing metrics, widgets, and quick actions for the current quarter.

The Dashboard is the main landing screen of the Leadership Operating System, accessible at `/lo/dashboard`. It aggregates current-quarter metrics, goal progress, issues, to-dos, meetings, and assessments into a single view.

## Overview

The Dashboard (`LOOverview`) loads metrics from `useLODashboardMetrics` and renders a page header with the current organization name, the current quarter/year label, and a set of stat cards. Below the stats, it displays a grid of lazily loaded widgets: Goals Progress, Open Issues, My To-Dos, Accountability Summary, Goal Quality, Scorecards Trend, Upcoming Meetings, 1-on-1 Summary, and Pending Assessments. A Quick Actions section provides navigation shortcuts to create new items. Keyboard shortcuts (Cmd/Ctrl+T, +I, +M) open creation flows for to-dos, issues, and meetings respectively.

## Who it's for

Requires `LO_PERMISSIONS.DASHBOARD_VIEW` (`lo.dashboard.view`) via the shared `LOViewGuard`.

## Before you start

* The `lo.dashboard.view` permission must be granted.
* An organization context must be active (`useOrganization`).

## Steps

<Steps>
  <Step title="Open the Leadership module">Select Leadership from the navigation. The app loads `/lo/dashboard`.</Step>
  <Step title="Review metric summary cards">The stat cards at the top display counts sourced from `useLODashboardMetrics` for the current quarter.</Step>
  <Step title="Check widgets">Scroll to view widgets for goals, issues, to-dos, scorecards, meetings, 1-on-1s, and assessments. Widgets load asynchronously.</Step>
  <Step title="Use Quick Actions">Select an action from the Quick Actions section or use keyboard shortcuts (Cmd/Ctrl+T, Cmd/Ctrl+I, Cmd/Ctrl+M) to create new items.</Step>
</Steps>

## Key concepts

* **Current quarter**: computed from the current date as `Q${Math.ceil((month + 1) / 3)}`.
* **Widget lazy-loading**: each dashboard widget is loaded via `React.lazy` + `Suspense` with a `WidgetSkeleton` fallback, per constitution.md §6.5.

## Related

<Columns cols={2}>
  <Card title="Leadership" icon="compass" href="/lo/overview">
    Leadership core overview.
  </Card>

  <Card title="Governance & parity" icon="scale-balanced" href="/governance/index">
    Documentation coverage and governance.
  </Card>
</Columns>

<Note>
  This page documents shipped product behavior. It is not medical, legal, or
  billing advice. Verify against your organization's policies and applicable
  regulations before using it for clinical, compliance, or billing decisions.
  Protected health information (PHI) shown in the product is governed by your
  tenant's access controls and is never exposed in this documentation.
</Note>

<Accordion title="Documentation sources">
  * src/routes/lo.tsx
  * src/cores/lo/pages/LOOverview\.tsx
  * src/cores/lo/hooks/useLODashboardMetrics.ts
</Accordion>
