A project-management dashboard: sidebar + search topbar, a four-up project stats row with one highlighted card, a weekly project-analytics bar chart, a reminder card with a start-meeting action, a team-collaboration list, a project-progress radial gauge, and a focus time-tracker card.
A full-height project management dashboard with a collapsible sidebar, a search topbar, a four-up project stats row, a weekly analytics bar chart, a team collaboration list, a progress radial gauge, and a live focus timer. Built as a Next.js / React workspace template on shadcn/ui, it drops in as a ready-made app shell for task boards, team dashboards, and SaaS admin panels.
Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.
Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.
Radix flavor
npx shadcn add "https://ui.beste.co/r/dashboard4?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/dashboard4?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/dashboard4.tsx, its Beste UI components (sidebar-nav, user-menu, notifications-menu, bar-chart, radial-chart) alongside it, and the shadcn/ui dependencies they need (button, badge, avatar, sheet, command, dialog).
The installed file exports dashboard4Demo alongside the block: the exact props behind the preview above. Spread it to get the full workspace in one line. The block fills its container height (h-screen), so render it as the whole page rather than nesting it inside padded layout.
import { Dashboard4, dashboard4Demo } from "@/components/beste/block/dashboard4";
export default function Page() {
return <Dashboard4 {...dashboard4Demo} />;
}Every prop is optional. Omit any and the block falls back to its built-in demo data, so <Dashboard4 /> renders a complete, populated workspace dashboard out of the box. Pass just the props you want to override.
| Prop | Type | Default | Description |
|---|---|---|---|
brandName | string | "Cadence" | Brand name shown next to the hexagon mark at the top of the sidebar |
heading | string | "Dashboard" | Page heading above the content |
description | string | "Plan the week, unblock the team, and ship on time." | Muted line under the heading |
user | DashboardUser | demo user | Identity shown in the topbar account menu |
navGroups | SidebarNavGroup[] | demo groups | Sidebar navigation, rendered in order as labeled groups |
commandGroups | CommandPaletteGroup[] | demo groups | Grouped entries in the ⌘K command palette |
userItems | UserMenuItem[] | demo items | Rows in the account dropdown menu |
notifications | NotificationItem[] | demo items | Entries in the notifications popover |
stats | Stat[] | demo stats | The four project stat cards |
analyticsData | AnalyticsPoint[] | demo series | Weekly Project analytics bar chart |
members | Member[] | demo rows | Rows of the Team collaboration list |
reminder | Reminder | demo reminder | Heading, event line, and time range of the Reminder card |
progressValue | number | 44 | Percentage shown by the Project progress radial gauge |
progressLabel | string | "On track this sprint" | Caption under the gauge value |
timerStart | number | 5048 | Starting seconds of the Time tracker (5048 renders as 01:24:08) |
timerLabel | string | "Focus session - Billing revamp" | Muted line under the Time tracker heading |
The block-local data types:
type Stat = {
label: string;
value: string; // pre-formatted, e.g. "26"
note: string; // muted sub-label, e.g. "+5 from last month"
highlight?: boolean; // renders the card in the primary color
};
type AnalyticsPoint = { day: string; tasks: number };
type Member = {
name: string;
task: string;
avatar: string; // image URL, rendered via the avatar component
status: "Done" | "In progress" | "Pending"; // drives the badge color
};
type Reminder = {
title: string; // card heading, e.g. "Reminder"
description: string; // the event line
time: string; // pre-formatted range, e.g. "2:00 PM to 3:30 PM"
};
type DashboardUser = {
name: string;
email: string;
avatar: string; // image URL, rendered with a plain <img>
};The remaining props reuse the interfaces exported by the composed Beste components:
// from sidebar-nav
type SidebarNavGroup = {
label?: string; // muted uppercase group heading (hidden when collapsed)
items: {
id: string;
label: string;
icon?: LucideIcon;
badge?: string | number; // small trailing count/tag, e.g. "12+"
href?: string; // renders an <a> instead of a <button>
}[];
};
// from user-menu
type UserMenuItem = {
id: string;
label: string;
icon?: LucideIcon;
destructive?: boolean; // red row with a separator above it
};
// from notifications-menu
type NotificationItem = {
id: string;
title: string;
description?: string;
time: string;
icon?: LucideIcon;
unread?: boolean;
};
// block-local
type CommandPaletteGroup = {
heading: string;
items: { id: string; label: string; icon?: LucideIcon }[];
};A few cosmetic bits stay as constants in the installed file — edit them in place:
analyticsConfig — series label and color for the Project analytics bar chart (the color references a --chart-1…--chart-5 theme token).statusTone — the badge color classes for each member status ("Done", "In progress", "Pending").Installs these Beste UI components next to the block:
navGroups.compact on mobile).collapsed state).md, the sidebar is hidden and opens as a slide-in sheet from the panel button; tapping a nav item closes it.00:00:00."use client") using useState/useEffect and a keydown listener, so it composes into any App Router page.h-screen with an internally scrolling content area, so give it the full viewport rather than embedding it in a constrained container.<img> (via the avatar component), so no next.config images.remotePatterns setup is needed for the remote avatar hosts.dashboard6
A project detail dashboard for staffing: sidebar + action topbar with a project actions menu, a project header with status pills, a five-up stat strip with project meta, functional pipeline sub-tabs, a search / recently-active toggle / filters-menu toolbar that live-filters the grid, and a responsive grid of nine talent cards with wishlist and invite toggles.
dashboard5
A split booking dashboard: a left panel with a top nav, functional tab bar, a Manage menu, a bento of revenue/occupancy/metric tiles and an image, toggleable active-booking cards, and a room-availability timeline; a right rail with a real month calendar (selectable days, booked-day dots) and a time-slotted day agenda.
dashboard3
An e-commerce analytics dashboard: sidebar + search topbar, a four-up KPI row with period deltas, a net-profit area chart, a repeat-rate radial gauge, a busiest-weekday bar chart, and a best-selling products data table.
dashboard11
A health dashboard with a top navigation bar (no sidebar): three activity-ring radial gauges, a steps area chart and a heart-rate line chart, and a recent-workouts list. A Today/Week/Month segmented control live-swaps the chart data and totals.
dashboard8
A personal-finance dashboard: sidebar + search topbar, a dark total-balance hero with account tiles, a budget radial gauge, income/expense/savings KPIs, a cashflow bar chart, a spending-mix donut, and a colored transactions table.
dashboard7
A web-analytics console: sidebar + search topbar, a live realtime strip, an hourly sessions area chart, a daily-goal radial gauge, a channel-audience radar chart, a new-vs-returning line chart, and a sortable top-pages table.