Skip to content

Assemble Your Deployable Dashboard

Intermediate~15 min0/4 steps

Assemble Your Deployable Dashboard

This is the capstone. You've built KPI cards, a chart, and a report layout—now you'll bring the pieces together into one complete, deployable dashboard page that you could ship to a real URL.

You'll assemble a full page: a branded header, a row of KPI cards, a chart section, and a data table—all on a single cohesive screen. This is the artifact you hand to a stakeholder and say "here's the live dashboard."

Think end to end. A deployable app isn't just pretty; it's organized, readable, and self-explanatory. When you finish this lesson, you'll have a portfolio-ready data app. Let's ship it.

Instructions

1

Add a page header with an h1 app title "Sales Analytics".

Hint: Use: `<header class="bg-gray-800 ..."><h1 class="text-2xl font-bold">Sales Analytics</h1></header>`.

Where does this go?

<!-- Assemble your full dashboard here -->

Write it on line 11 — under that comment, after the code you already added.

2

Add a KPI row using a responsive grid container.

3

Add a chart section using styled bar divs with the bg-purple-500 color.

4

Add a data table for recent orders to complete the dashboard.

Your Code

html
13 lines
1
2
3
4
5
6
7
8
9
10
11
12
13

Live Preview

Live Preview