Finance Overview

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.

PRO

Dashboard8: Finance Overview

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.

Upgrade to Pro

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.

Installation

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

bash
npx shadcn add "https://ui.beste.co/r/dashboard8?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
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).

Quick start

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.

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

Props

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.

PropTypeDefaultDescription
brandNamestring"Ledgerly"Brand label next to the Wallet icon in the sidebar
headingstring"Overview"Page heading above the main content
descriptionstring"Your money across all accounts, this month."Muted line under the heading
userDashboardUserdemo userIdentity shown in the topbar account menu
navGroupsSidebarNavGroup[]demo groupsSidebar navigation, rendered in order as labeled groups
commandGroupsCommandPaletteGroup[]demo groupsGrouped entries in the ⌘K command palette
userItemsUserMenuItem[]demo itemsRows in the account dropdown menu
notificationsNotificationItem[]demo itemsEntries in the notifications popover
totalBalancestring"$42,180.50"Pre-formatted headline figure in the total-balance hero
balanceDeltastring"8.4%"Trend value in the hero's emerald TrendingUp badge
budgetValuenumber61Percent (0 to 100) filled on the Monthly budget used gauge
budgetCaptionstring"$5,120 of $8,400"Muted caption under the budget gauge
accountsAccount[]demo tilesPer-account tiles inside the total-balance hero
kpisKpi[]demo cardsThe three KPI cards (Income, Expenses, Savings rate)
cashflowDataCashflowPoint[]demo seriesCashflow income-vs-spending bar chart
spendingDataSpendingSlice[]demo seriesSpending mix donut chart
txnsTxn[]demo rowsRows of the Recent transactions table

The block-local data types:

ts
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:

ts
// 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 }[];
};

Still internal

A few cosmetic bits stay as constants in the installed file — edit them in place:

Components

This block composes Beste UI components you can also install and use on their own:

Chart colors read from the --chart-1--chart-4 CSS variables in your theme.

Behavior notes

Requirements

More Dashboard blocks

View all Dashboard
PRO

dashboard3

Commerce Analytics

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.

PRO

dashboard11

Fitness Overview

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.

PRO

dashboard4

Project Workspace

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.

PRO

dashboard1

Admin Shell

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.

PRO

dashboard7

Traffic Analytics

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.

PRO

dashboard6

Talent Sourcing

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.