# Dashboard & My Applications / Dashboard Overview Dashboard overview pattern for citizen applications including statistics cards, filter chips, and application result lists. **Category:** Patterns **Storybook:** https://doc.ux4g.gov.in/web/?path=/story/ux4g-patterns-dashboard-my-applications-dashboard-overview--full-screen ## Pattern variants - Full Screen: https://doc.ux4g.gov.in/web/?path=/story/ux4g-patterns-dashboard-my-applications-dashboard-overview--full-screen - Desktop Workspace: https://doc.ux4g.gov.in/web/?path=/story/ux4g-patterns-dashboard-my-applications-dashboard-overview--desktop-workspace ## When to use this pattern Use Dashboard & My Applications / Dashboard Overview when building citizen-facing flows that match the described government journey. Combine components such as cards, forms, tables, buttons, and status indicators as shown in Storybook. ## Framework setup ### HTML / CDN ```html ``` ### React ```bash npm install ux4g-web-components ``` ```jsx import 'ux4g-web-components/styles.css'; import 'ux4g-web-components/design-system'; ``` ### Angular Update `angular.json`: ```json { "styles": [ "node_modules/ux4g-web-components/styles/ux4g.css", "src/styles.css" ], "scripts": [ "node_modules/ux4g-web-components/dist/runtime/design-system.js" ] } ``` ## Code examples The snippets below are extracted from the Storybook canvas for Dashboard & My Applications / Dashboard Overview. Each example shows the rendered HTML, the equivalent React JSX, and the Angular template markup. ### 1. Desktop Workspace — Dashboard - My Applications HTML: ```html

Good morning, Ramesh

Here's an overview of your applications

2
Active
1
Needs attention
5
Completed
8
Total

Your applications

school
INC-2026-MH-04127 Social Welfare Department

Post-Matric Scholarship

description
INC-2026-MH-03891 Revenue Department

Income Certificate

``` React: ```jsx import React from 'react'; const DashboardMyApplicationsDashboardOverviewExample1Demo = () => ( <>

Good morning, Ramesh

Here's an overview of your applications

2
Active
1
Needs attention
5
Completed
8
Total

Your applications

school
INC-2026-MH-04127 Social Welfare Department

Post-Matric Scholarship

description
INC-2026-MH-03891 Revenue Department

Income Certificate

); export default DashboardMyApplicationsDashboardOverviewExample1Demo; ``` Angular: ```html

Good morning, Ramesh

Here's an overview of your applications

2
Active
1
Needs attention
5
Completed
8
Total

Your applications

school
INC-2026-MH-04127 Social Welfare Department

Post-Matric Scholarship

description
INC-2026-MH-03891 Revenue Department

Income Certificate

``` ### 2. Full Screen — Dashboard - My Applications HTML: ```html

Good morning, Ramesh

Here's an overview of your applications

2
Active
1
Needs attention
5
Completed
8
Total

Your applications

school
INC-2026-MH-04127 Social Welfare Department

Post-Matric Scholarship

description
INC-2026-MH-03891 Revenue Department

Income Certificate

``` React: ```jsx import React from 'react'; const DashboardMyApplicationsDashboardOverviewExample2Demo = () => ( <>

Good morning, Ramesh

Here's an overview of your applications

2
Active
1
Needs attention
5
Completed
8
Total

Your applications

school
INC-2026-MH-04127 Social Welfare Department

Post-Matric Scholarship

description
INC-2026-MH-03891 Revenue Department

Income Certificate

); export default DashboardMyApplicationsDashboardOverviewExample2Demo; ``` Angular: ```html

Good morning, Ramesh

Here's an overview of your applications

2
Active
1
Needs attention
5
Completed
8
Total

Your applications

school
INC-2026-MH-04127 Social Welfare Department

Post-Matric Scholarship

description
INC-2026-MH-03891 Revenue Department

Income Certificate

```