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

# Executive Dashboard

> Cross-module KPI overview dashboard for leadership showing AR aging, occupancy, compliance score, workforce, and work order widgets at /dashboard/executive.

The Executive Dashboard (`/dashboard/executive`) is a high-level leadership overview that aggregates key performance indicators from multiple platform cores into a single page, providing at-a-glance visibility into financial, operational, compliance, and workforce metrics.

## Overview

Access follows your organization's role and module configuration. is on this route. The page renders a responsive grid of six lazy-loaded widgets: `ARAginSummaryWidget` (accounts receivable aging), `OccupancyRateWidget` (housing occupancy), `ComplianceScoreWidget` (compliance health), `WorkOrderSummaryWidget` (facilities work orders), `WorkforceWidget` (employee counts), and `CashPositionWidget` (FA cash position, imported from `@/bootstrap/executiveDashboardWidgets`). Each widget is wrapped in `Suspense` with a `Skeleton` fallback. Above-fold widgets load immediately; below-fold widgets use `LazyWidget` for deferred loading.

## Who it's for

Access follows your organization's role and module configuration. ## Before you start

* Ensure the relevant modules (FA, RH, FW, HR) are active for your organisation. Widgets for inactive modules may show empty states.

## Steps

<Steps>
  <Step title="Open the Executive Dashboard">
    Navigate to `/dashboard/executive`. The page loads all widgets asynchronously.
  </Step>

  <Step title="Review KPI widgets">
    Each widget displays metrics from its respective module. Widgets load independently — partial data is visible while other widgets continue loading.
  </Step>

  <Step title="Drill into a module">
    Click through to the relevant module page from a widget if drill-through navigation is supported by that widget.
  </Step>
</Steps>

## Key concepts

<AccordionGroup>
  <Accordion title="Widget lazy loading">
    Below-fold widgets are wrapped in `LazyWidget` for deferred loading, reducing initial page load time. Above-fold widgets load immediately in `Suspense`.
  </Accordion>

  <Accordion title="Cross-module aggregation">
    The Executive Dashboard pulls metrics from FA (cash position, AR aging), RH (occupancy), compliance, HR (workforce), and FW (work orders). Each widget is independently sourced.
  </Accordion>
</AccordionGroup>

## Related

<Columns cols={2}>
  <Card title="Platform Foundation" icon="layer-group" href="/pf/overview">
    Platform Foundation 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/platform.tsx
  * src/platform/dashboard/pages/ExecutiveDashboardPage.tsx
  * src/bootstrap/executiveDashboardWidgets.ts
</Accordion>
