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

# Governance Compliance Dashboard

> Main compliance dashboard showing overall compliance score, requirement counts, upcoming deadlines, and remediation summary.

This screen is the primary compliance overview for the GR module at route `/gr/compliance`.

## Overview

The Compliance Dashboard displays four primary stat cards (Total Requirements, Compliant, Non-Compliant, Pending) and four secondary cards (Overdue Checks, Upcoming \[30d], Open Remediations, Training Compliance). It fetches data from `useComplianceDashboard`, `useUpcomingDeadlines(30)`, and `useRemediationSummary`. The Overdue Checks card navigates to the requirements list with a `check_due=overdue` filter. The Open Remediations card navigates to `/gr/compliance/remediation`. Area navigation cards link to Requirements, Audits, Remediation, and Training sections.

The dashboard also surfaces two evidence-focused cards powered by `useComplianceEvidenceCoverage`:

* **Evidence Coverage** — per-category breakdown of requirements that have at least one piece of linked evidence, expressed as a coverage percentage.
* **Evidence Gaps** — a priority-sorted list of requirements with no evidence linked, so you can close the highest-priority gaps first.

## Who it's for

Access follows your organization's role and module configuration. Any authenticated user with access to the GR module can view this dashboard.

## Before you start

* Compliance requirements must exist and be configured with check due dates.

## Steps

<Steps>
  <Step title="Open the Compliance Dashboard">Navigate to `/gr/compliance`.</Step>
  <Step title="Review the compliance score">Check the overall compliance rate shown in the primary stats.</Step>
  <Step title="Identify non-compliant requirements">Click the Non-Compliant card or navigate to Requirements to see which items need attention.</Step>
  <Step title="Check overdue items">Click the **Overdue Checks** card to navigate to requirements filtered by overdue status.</Step>
  <Step title="Navigate to remediation">Click the **Open Remediations** card to go to `/gr/compliance/remediation` to manage open remediation items.</Step>
  <Step title="Review evidence coverage and gaps">Use the **Evidence Coverage** card to see which categories are well-documented and the **Evidence Gaps** card to prioritize requirements that still need supporting evidence.</Step>
</Steps>

## Key concepts

* **Compliance Score** — overall compliance rate as a percentage from `complianceStats.complianceScore`.
* **Overdue Checks** — requirements with check dates in the past, surfaced via `check_due=overdue` query parameter.
* **Open Remediations** — remediation items in an open state from `remediationSummary`.
* **Evidence Coverage** — percentage of requirements per category with at least one piece of linked evidence.
* **Evidence Gaps** — priority-sorted list of requirements that currently have no evidence linked.

## Related

<Columns cols={2}>
  <Card title="Governance & Compliance" icon="scale-balanced" href="/gr/overview">
    Governance & Compliance core overview.
  </Card>

  <Card title="Governance & parity" icon="clipboard-check" 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/gr.tsx
  * src/cores/gr/pages/ComplianceDashboard.tsx
  * src/cores/gr/hooks/useComplianceDashboard.ts
  * src/cores/gr/hooks/useComplianceEvidenceCoverage.ts
</Accordion>
