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.
A full-height finance dashboard for a personal or small-business banking product: a collapsible sidebar and command-palette topbar, a dark total-balance hero with per-account tiles, a monthly-budget radial gauge, income / expense / savings KPIs, an income-vs-spending cashflow bar chart, a spending-mix donut, and a colored recent-transactions table. Built with Next.js and React on shadcn/ui plus Recharts, it works as a drop-in budget / banking dashboard UI or a starting point for a fintech dashboard template.
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/dashboard8?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/dashboard8?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/dashboard8.tsx, the Beste chart and layout components it composes (bar-chart, pie-chart, radial-chart, data-table, sidebar-nav, user-menu, notifications-menu) to components/beste/component/, and the shadcn/ui dependencies they need (button, badge, sheet, command, dialog).
The installed file exports dashboard8Demo alongside the block: the exact props behind the preview above. Spread it to get the full dashboard in one line.
import { Dashboard8, dashboard8Demo } from "@/components/beste/block/dashboard8";
export default function Page() {
return <Dashboard8 {...dashboard8Demo} />;
}The block fills its container with h-screen, so render it as the whole page (or inside a full-height wrapper) rather than nesting it in a constrained section.
Every prop is optional. Omit any and the block falls back to its built-in demo data, so <Dashboard8 /> renders a complete, populated finance dashboard out of the box. Pass just the props you want to override.
| Prop | Type | Default | Description |
|---|---|---|---|
brandName | string | "Ledgerly" | Brand label next to the Wallet icon in the sidebar |
heading | string | "Overview" | Page heading above the main content |
description | string | "Your money across all accounts, this month." | 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 |
totalBalance | string | "$42,180.50" | Pre-formatted headline figure in the total-balance hero |
balanceDelta | string | "8.4%" | Trend value in the hero's emerald TrendingUp badge |
budgetValue | number | 61 | Percent (0 to 100) filled on the Monthly budget used gauge |
budgetCaption | string | "$5,120 of $8,400" | Muted caption under the budget gauge |
accounts | Account[] | demo tiles | Per-account tiles inside the total-balance hero |
kpis | Kpi[] | demo cards | The three KPI cards (Income, Expenses, Savings rate) |
cashflowData | CashflowPoint[] | demo series | Cashflow income-vs-spending bar chart |
spendingData | SpendingSlice[] | demo series | Spending mix donut chart |
txns | Txn[] | demo rows | Rows of the Recent transactions table |
The block-local data types:
type Account = {
label: string; // e.g. "Everyday"
value: string; // pre-formatted, e.g. "$12,940"
};
type Kpi = {
label: string;
value: string; // pre-formatted, e.g. "$8,940"
delta: string; // e.g. "6.2%"
up: boolean; // flips badge color + trend arrow (emerald up / red down)
icon: LucideIcon;
};
type CashflowPoint = { month: string; income: number; spending: number };
type SpendingSlice = { segment: string; value: number };
type Txn = {
id: string;
merchant: string;
category: string;
date: string;
amount: number; // positive renders green with "+", negative uses "−"
};
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. 8
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:
cashflowConfig / spendingConfig — series labels and colors for each chart (colors reference the --chart-1…--chart-4 theme tokens).txnColumns — the Recent transactions DataTable column definitions (headers, sorting, cell renderers).This block composes Beste UI components you can also install and use on their own:
compact variant on mobile, full on desktop).donut={0.55}).Chart colors read from the --chart-1…--chart-4 CSS variables in your theme.
keydown listener toggles it) and also from the "Search money..." button in the topbar; selecting any command closes it.md), that same button opens the sidebar in a slide-in Sheet, and tapping any nav item closes it.up flag, with matching TrendingUp / TrendingDown icons.+; negative amounts use a − and the default foreground color.<img>, so no next.config images.remotePatterns setup is needed for remote hosts."use client") because it holds command-palette, sidebar-collapse, and mobile-sheet state, so it composes into any App Router page.h-screen with an internally scrolling <main>. Give it the full viewport (or a full-height parent) rather than a short section.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.
dashboard4
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.
dashboard1
A full admin dashboard shell: collapsible icon sidebar, topbar with a ⌘K command palette and account menu, a greeting header, a three-up KPI row with trend badges, and a recent-orders data table. The frame the rest of the dashboard blocks drop into.
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.
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.