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.
A recruiting dashboard for staffing and talent sourcing: a project detail view with a candidate pipeline, live-filtering toolbar, and a responsive grid of talent cards. It pairs a collapsible sidebar and action topbar with a stat strip, pipeline sub-tabs, and wishlist / invite controls, making it a ready-made ATS UI for any Next.js / React hiring dashboard built on shadcn/ui.
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/dashboard6?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/dashboard6?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/dashboard6.tsx, the Beste components it composes (sidebar-nav, user-menu, notifications-menu, and talent-card), and the shadcn/ui dependencies they need (button, badge, avatar, input, switch, dropdown-menu).
The installed file exports dashboard6Demo alongside the block: the exact prop behind the preview above. Spread it to get the full dashboard in one line. It is a full-height layout (h-screen), so give it the whole viewport rather than nesting it inside a constrained container.
import { Dashboard6, dashboard6Demo } from "@/components/beste/block/dashboard6";
export default function Page() {
return <Dashboard6 {...dashboard6Demo} />;
}Every prop is optional. Omit any and the block falls back to its built-in demo data, so <Dashboard6 /> renders a complete, populated recruiting dashboard out of the box. Pass just the props you want to override.
| Prop | Type | Default | Description |
|---|---|---|---|
brandName | string | "Scout" | Brand label next to the folder icon in the sidebar header |
heading | string | "Product launch film — Berlin" | Project title in the content header |
user | DashboardUser | demo user | Identity shown in the topbar account menu |
navGroups | SidebarNavGroup[] | demo groups | Sidebar navigation, rendered in order as labeled groups |
userItems | UserMenuItem[] | demo items | Rows in the account dropdown menu |
notifications | NotificationItem[] | demo items | Entries in the notifications popover |
stats | StatItem[] | demo stats | The cards in the stat strip |
projectMeta | ProjectMetaItem[] | demo rows | The project meta row under the stats |
talents | Talent[] | demo rows | Candidate cards rendered in the grid |
The block-local data types:
type DashboardUser = {
name: string;
email: string;
avatar: string; // image URL, rendered with a plain <img>
};
type StatItem = { value: string; label: string }; // value pre-formatted, e.g. "2 of 3"
type ProjectMetaItem = { label: string; value: string };
type Talent = {
name: string;
avatar?: string; // image URL; falls back to initials
verified?: boolean; // shows a verified check
rating?: number; // omit to show the "New" label
reviews?: number;
location: string;
distance: string;
rate: string; // pre-formatted day rate, e.g. "$142"
availability?: string; // muted availability line under the actions
wishlisted?: boolean; // seeds the card's wishlist toggle
invited?: boolean; // seeds the card's invite toggle
recentlyActive?: boolean; // matched by the "Recently active" filter
};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
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;
};A few structural bits stay as constants in the installed file — edit them in place:
subTabs — the pipeline sub-tab definitions ({ label, count? }) used for the tab strip layout.Event production, Active, Hired 2 of 3) and the topbar action buttons (Back to projects, Team, Project) are inline in the JSX.This block composes these Beste UI components (all installed for you):
compact mode.demoNotifications.md) a panel button opens the sidebar in a slide-out sheet, which closes on navigation.defaultWishlisted / defaultInvited per candidate."use client"), so it composes into any page.h-screen w-full, so mount it as a page-level view, not inside a card.<img> (via talent-card), so no next.config images.remotePatterns setup is needed for remote hosts.Wiring the form up
This block ships the form markup only; state, validation, and submit are yours to add. Our guide wires the shadcn Field primitives to React Hook Form, TanStack Form, and Formisch on one field system.
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.
dashboard9
A sales-CRM dashboard: sidebar + search topbar, pipeline KPIs, a four-stage kanban board of deal cards with owners and hot-lead flags, a revenue-vs-forecast area chart, a team-quota radial gauge, and a rep leaderboard with progress bars.
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.
dashboard2
A customers management section powered by the data-table engine: avatar cells, status badges, sortable columns, keyword search, row selection with a live selected count, per-row action menus, pagination, and an export / add-customer toolbar.
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.
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.