BoardUI/boardui

React design system for agentic interfaces. Every free BoardUI component as source, with a working AI chat app on your own model key as the homepage.

154

stars

41

commits

TypeScript

primary language

Sep 5, 2026

updated

www.boardui.com
agentic-ai
ai-agent
ai-chat
boardui
design-system
nextjs
react
react-components
tailwindcss
ui-components
vercel
Browse cluster: React & Next.js Full-Stack Web Applications

README

BoardUI, a React design system for agentic interfaces

BoardUI

npm license X Discord

BoardUI is a React design system for agentic interfaces: the parts an AI product needs and the parts every dashboard needs, in one visual language, as source files in your project. This repository is the whole free tier, and its homepage is a working AI chat on your own model key.

Deploy with Vercel

Click the button, paste one API key when Vercel asks for it, and the first deploy already answers.

This repository is generated from BoardUI's source and takes no pull requests. See CONTRIBUTING.md.

Why BoardUI?

  • Built for agent products. Chat, thinking indicator, agent log, composer and sidebar, next to the tables, cards and forms around them.
  • Source, not a dependency. npx boardui add copies the files into your project. Change anything.
  • One visual language. Figma first, 400+ semantic tokens, light and dark from the same classes.
  • Accessible by default. React Aria Components underneath, Tailwind CSS v4 on top, no runtime CSS.
  • Agent-native. MCP server, agent skill, AGENTS.md rules and llms.txt, so coding agents build with the system.

What's in this repository

  • All 62 free items as source: base components, application blocks, tokens and type scale. The catalogue is below.
  • The app: a chat at /, a dashboard with the two free charts, and sign-in and sign-up screens, all built from the components in this repository. Chat history stays in the visitor's browser. No database.
  • app/api/chat/route.ts, which reads your key server-side and streams replies. The key never reaches the browser.

Bring your own key

One variable. The provider is read from the key itself:

Key looks likeProviderDefault model
sk-ant-...Anthropicclaude-haiku-4-5
sk-or-...OpenRouteropenai/gpt-5-nano
sk-...OpenAIgpt-5.4-mini
AIza...Google Geminigemini-2.5-flash
vck_...Vercel AI Gatewayopenai/gpt-5-nano
gsk_...Groqllama-3.3-70b-versatile
xai-...xAIgrok-4-fast-non-reasoning

Create the key with a spending limit where the provider offers one: OpenRouter can cap the credits a key may spend, OpenAI has usage limits per project. The key never reaches the browser, but the chat itself is open to anyone who has your URL, so the cap is what bounds the cost.

Set CHAT_MODEL to use a different model. For Mistral or DeepSeek, whose keys have no recognisable shape, add AI_PROVIDER=mistral or AI_PROVIDER=deepseek. For any OpenAI-compatible server (Ollama, LM Studio, vLLM, LiteLLM, Together) set AI_BASE_URL and CHAT_MODEL. Every provider's usual variable (OPENAI_API_KEY, ANTHROPIC_API_KEY, ...) works too. See .env.example.

Run it locally

npm install
cp .env.example .env.local   # then put your key in AI_API_KEY
npm run dev

Install into an existing project

Every component in this repository also installs on its own, as source, into any Next.js project.

With an agent

BoardUI has an MCP server, so Claude Code, Cursor and any MCP client can browse the catalog and install for you. Add it once:

claude mcp add boardui -- npx -y boardui@latest mcp

Cursor and most other clients take the same server in their MCP config:

{
  "mcpServers": {
    "boardui": { "command": "npx", "args": ["-y", "boardui@latest", "mcp"] }
  }
}

Then ask in plain words. "Install every free BoardUI component" installs the whole free catalog in one go. "Add a data table and stat cards to the dashboard" installs just those and wires them in. The rules in AGENTS.md keep whatever it builds on BoardUI's tokens and type scale. Setup for VS Code, Codex and the rest is at boardui.com/mcp.

With the CLI

npx boardui@latest list              # every component, one line each
npx boardui@latest add data-table    # one component and what it depends on
npx boardui@latest add --all         # everything in this repository

Components

Application blocks

Composed screens and panels: sidebars, chat, tables, settings, cards.

ComponentWhat it isInstall
Agent ChatA working chat app: app sidebar, streaming replies, thinking indicator, a composer pill with stop control, a chat-history rail with local thread switching, and a setup notice when no provider key is set.npx boardui@latest add agent-chat
Agent LogShared streaming-log machinery: the reveal ticker, the blur-in with its soft clipping edge, and the curved tree guide that draws itself. Behind Task List and Web Search.npx boardui@latest add agent-log
Agent ThinkingAgent thinking indicator for chat composers — dot wave, dot spin, stars, and infinity variants with a shimmering label and elapsed timer.npx boardui@latest add agent-thinking
App ShellPage frame for the chat starter: the sidebar, a phone drawer, and a titled content card, carrying the starter's own navigation so the sidebar only links to pages the app has.npx boardui@latest add app-shell
Auth CardSign-in and sign-up cards with social providers stacked with labels or inline as icons, plus email fields and a CTA.npx boardui@latest add auth-card
Composer LoaderLoading state that wraps a chat composer — an iridescent light band orbiting the rim with a soft inward bloom, fading in while the agent works.npx boardui@latest add composer-loader
Data TableTanStack-powered data table with sorting, selection, and pagination.npx boardui@latest add data-table
Important Alerts CardScrollable alert feed with tinted icon circles and date pills.npx boardui@latest add important-alerts-card
Notification CenterTabbed activity inbox with grouped notifications, unread state, avatars, status icons, and inline actions.npx boardui@latest add notification-center
Orders Chart CardFree chart card: a year of monthly orders as bars, this year beside last year for every month, with a count-up headline, delta chip and hover readout.npx boardui@latest add orders-chart-card
Patient Info CardProfile card with avatar and label/value detail rows.npx boardui@latest add patient-info-card
Revenue Chart CardFree chart card: a year of monthly revenue as an area against the year before, with a count-up headline, delta chip and hover readout per month.npx boardui@latest add revenue-chart-card
Settings ModalControlled multi-page settings dialog with General, Profile, Tools, and Storage views.npx boardui@latest add settings-modal
SidebarThe floating dashboard sidebar with team menu, nav, announcement, and user menu.npx boardui@latest add sidebar
Stat CardsKPI stat card row with delta chips.npx boardui@latest add stat-cards
Theme ToggleManual light/dark control with a click-origin reveal, local persistence, and no system-theme dependency.npx boardui@latest add theme-toggle

Base components

The everyday building blocks.

ComponentWhat it isInstall
AnnouncementDismissible announcement card used in the sidebar footer.npx boardui@latest add announcement
AvatarImage or initials avatar in multiple sizes and tints.npx boardui@latest add avatar
BadgeCounter pills and the Kbd shortcut hint.npx boardui@latest add badge
BreadcrumbIcon-capable breadcrumb trail.npx boardui@latest add breadcrumb
ButtonPrimary, secondary, ghost, and danger buttons in three sizes with icon support.npx boardui@latest add button
Button GroupRow of secondary-style buttons fused into one bordered control with hairline dividers and selectable items.npx boardui@latest add button-group
CarouselGallery carousel built on CSS scroll-snap: swipe, arrows and a position indicator.npx boardui@latest add carousel
CheckboxReact Aria checkbox with animated tick and indeterminate state.npx boardui@latest add checkbox
Checkbox CardBordered selectable card driven by a checkbox.npx boardui@latest add checkbox-card
ChipStatus/delta chips in bold and soft variants across the accent palette.npx boardui@latest add chip
Close ButtonCompact dismiss button for banners, modals, and chips.npx boardui@latest add close-button
Date PickerSingle-date picker with month navigation, built on React Aria.npx boardui@latest add date-picker
Date Range PickerTwo-month range picker sharing the date-picker chrome.npx boardui@latest add date-range-picker
DividerHorizontal content divider with single-line, double-line, filled, and aligned variants.npx boardui@latest add divider
DropdownComposable popover menu (trigger, panel, groups, rows, dividers) built on React Aria — the recipe behind the sidebar team/account menus.npx boardui@latest add dropdown
File UploadDrag-and-drop file upload with validation, animated progress, and a completion callback.npx boardui@latest add file-upload
Icon ButtonSquare icon-only button in two sizes.npx boardui@latest add icon-button
InputText input with label, hint text, error states, and leading icon support.npx boardui@latest add input
Input OTPOne-time-code field with a monospace box per digit, paste distribution and autofill support.npx boardui@latest add input-otp
KbdKeyboard shortcut hint pill.npx boardui@latest add kbd
Link ButtonInline text action styled like a link — primary/secondary variants, three sizes, icon support, renders or .npx boardui@latest add link-button
Meeting SchedulerDate + time-slot scheduler popover.npx boardui@latest add meeting-scheduler
NotificationDismissible notification with status icons, avatars, action buttons, and timed countdown.npx boardui@latest add notification
PaginationNumbered pagination with prev/next and ellipsis collapsing.npx boardui@latest add pagination
RadioReact Aria radio group with the gradient selected dot, two sizes, and the bare RadioDot glyph for menu rows.npx boardui@latest add radio
Radio CardBordered selectable card driven by a radio — the radio flavor of Checkbox Card.npx boardui@latest add radio-card
Segmented ControlPill-style segmented control (Weekly / Monthly / Yearly switchers).npx boardui@latest add segmented-control
SelectReact Aria select with styled trigger, non-modal popover, and free-form item content.npx boardui@latest add select
SliderSingle-value and min/max range sliders with exact-value bubbles and keyboard controls.npx boardui@latest add slider
Social ButtonSign-in buttons for 24 providers, with brand logos, three colour treatments and an icon-only form.npx boardui@latest add social-button
Status DotColored status indicator dot used inside selects and tables.npx boardui@latest add status-dot
SwitchSkeuomorphic toggle switch in two sizes.npx boardui@latest add switch
Switch CardBordered settings row driven by a switch.npx boardui@latest add switch-card
TableStatic table primitives matching the dashboard tables.npx boardui@latest add table
TabsUnderline and pill tab variants built on React Aria.npx boardui@latest add tabs
TooltipLight-surface tooltip built on React Aria.npx boardui@latest add tooltip

Foundations

Tokens, type scale, global styles, utilities, and the agent rules.

ComponentWhat it isInstall
Agent rulesAlways-on design rules for AI agents (semantic tokens, type scale, conventions), installed as a Cursor rule file.npx boardui@latest add rules
Agent runtimeStreaming chat endpoint for agent templates: one AI_API_KEY from OpenAI, Anthropic, Google, OpenRouter, Groq, xAI or Vercel AI Gateway (or any OpenAI-compatible server by URL), a config probe for unconfigured deploys, and the message contract the BoardUI chat UI installs against.npx boardui@latest add agent-runtime
Chevron iconsCustom chevron glyphs (select caret, sortable table headers) matching the Figma strokes.npx boardui@latest add chevrons
cx utilitytailwind-merge wrapper aware of BoardUI's composite text styles, plus the sortCx helper.npx boardui@latest add cx
Global stylesTailwind entry css: dark-mode variant, base resets, component animations, and table styling. Imports theme.css and typography.css.npx boardui@latest add globals
LogoBoardUI brand mark placeholder — swap with your own logo component.npx boardui@latest add logo
Theme tokensColor primitives, semantic tokens (text/background/border/foreground/chart), radii, shadows, and button gradient utilities.npx boardui@latest add theme
Typography tokensThe full Figma type scale as composite text-{family}-{weight} Tailwind utilities.npx boardui@latest add typography
useCountUp hookAnimated rolling number hook used by chart headline figures.npx boardui@latest add use-count-up
useDismissOnOutsidePress hookCloses React Aria popovers on outside press without swallowing the outside click.npx boardui@latest add use-dismiss-on-outside-press

BoardUI Pro

Everything in this repository is free and complete. Pro adds the full-page templates and the richer components, 8 templates and 23 components, installed into the same project as source: npx boardui@latest login <key> once, then add as usual. One-off payment, no subscription. See www.boardui.com/#pricing.

The 8 templates
NameWhat it is
AI Chat TemplateFull AI chat app: sidebar, resizable code panel, composer with model/effort controls.
AI Image Generation TemplatePrompt thread with a live generation frame and feedback actions, plus a gallery panel of past generations.
AI Profile TemplateAI contributions profile: cover card with activity heatmap, 30-day agents bar chart, and tokens trend chart.
Finance Dashboard TemplateBalance KPIs, a cash-flow sankey, spending rings, portfolio bubbles, a daily spending heatmap, and a transactions data table.
Home Dashboard TemplateKPI stat cards, revenue trend, earnings chart, contributions heatmap, and a customers table in a responsive app shell.
HR Management TemplateHeadcount KPIs, recent hires, hiring pipeline, engagement radar, hires vs. attrition, team breakdowns, and an employees data table.
Marketing Dashboard TemplateCampaign KPIs, acquisition funnel, spend by channel, traffic sources, ad spend vs. ROAS, visitors by channel, and a campaigns data table.
Medical Report TemplatePatient overview with steps, sleep score, activity rings, and most-active-days charts.
The 23 components
NameWhat it is
Activity Rings CardApple Watch-style concentric goal rings with stat tiles.
Agent Limits CardContext window usage bar with an expandable token breakdown, collapsible groups, and plan usage limits with reset times.
Agent ProgressCollapsible multi-step AI task progress with animated active, pending, and completed states.
Area Chart CardMulti-series area chart with stacked, overlapping and 100% variants, gradient fills, period dropdown and stat tiles.
Bar List CardAnalytics breakdown list: ranked rows with share bars behind the labels, tabbed lists, metric caption, and a show-more pill.
CalendarMonth-view calendar with event chips, details popover, month switcher, and inbox feed.
Combo Chart CardBar-plus-line combo chart with independent left and right axes, hover dimming, and a pulsing active dot.
ComposerThe AI chat composer, whole package: attachment and model menus, voice and send controls, the status bar, and the liquid-glass loading treatment for its controls.
Contributions CardGitHub-style contributions heat grid with swappable accent family.
Earnings Chart CardBar chart card with period switcher, count-up headline, and hover outline.
Funnel Chart CardHorizontal flow funnel with curved or sharp tapers, centred conversion pills, mono option, and a value/name footer under every column.
Heatmap Chart CardMatrix heatmap card (rows × columns) with a theme-following ramp, hover-linked headline, and Less → More legend.
Line Chart CardLine/area chart card with gradient fill, curved or sharp interpolation, and animated active dot.
Most Active Days CardContinuous vertical month calendar with per-day mini activity rings.
Radar Chart CardRadar chart card with filled, dotted, lines-only, and centre-score variants, hover-linked headline, and multi-series legend.
Radial Chart CardRadial bar chart card: concentric rings (plain, labelled, or over a grid), single-value gauges, and a stacked half gauge.
Sankey Chart CardSankey flow card with pill nodes, target-tinted links, source and share labels, and hover isolation.
Scatter Chart CardScatter and bubble chart with grouped series, an optional size measure, hover isolation and stat tiles.
Sleep Score CardSegmented score ring with hover-focused sub-scores and metric rows.
Stage Bars CardFunnel stages as rounded horizontal pills with name, value, and share per stage, animated widths, and a mono option.
Steps CardWeekly steps bar chart with week switcher, count-up headline, and hover outline.
Task ListStreaming agent task log: tasks reveal step by step with soft height, blur, and a shimmering running title.
Web SearchStreaming research trail: the queries an agent ran and the sources it opened, with real site marks.

Before going public

Requests bill to whoever owns the key, and anyone who has your URL can send them. Three ways to bound that, simplest first: create the key with a spending limit, turn on Vercel's deployment protection for a personal deployment, and put a rate limit in front of /api/chat before pointing the internet at it.

License

MIT. Use it, change it, ship it, share it. BoardUI Pro components and templates are sold separately under the BoardUI License.

Contributors

mertcanesmergul

41 commits

BoardUI/boardui

React design system for agentic interfaces. Every free BoardUI component as source, with a working AI chat app on your own model key as the homepage.

154

stars

41

commits

TypeScript

primary language

Sep 5, 2026

updated

www.boardui.com
agentic-ai
ai-agent
ai-chat
boardui
design-system
nextjs
react
react-components
tailwindcss
ui-components
vercel
Browse cluster: React & Next.js Full-Stack Web Applications

README

BoardUI, a React design system for agentic interfaces

BoardUI

npm license X Discord

BoardUI is a React design system for agentic interfaces: the parts an AI product needs and the parts every dashboard needs, in one visual language, as source files in your project. This repository is the whole free tier, and its homepage is a working AI chat on your own model key.

Deploy with Vercel

Click the button, paste one API key when Vercel asks for it, and the first deploy already answers.

This repository is generated from BoardUI's source and takes no pull requests. See CONTRIBUTING.md.

Why BoardUI?

  • Built for agent products. Chat, thinking indicator, agent log, composer and sidebar, next to the tables, cards and forms around them.
  • Source, not a dependency. npx boardui add copies the files into your project. Change anything.
  • One visual language. Figma first, 400+ semantic tokens, light and dark from the same classes.
  • Accessible by default. React Aria Components underneath, Tailwind CSS v4 on top, no runtime CSS.
  • Agent-native. MCP server, agent skill, AGENTS.md rules and llms.txt, so coding agents build with the system.

What's in this repository

  • All 62 free items as source: base components, application blocks, tokens and type scale. The catalogue is below.
  • The app: a chat at /, a dashboard with the two free charts, and sign-in and sign-up screens, all built from the components in this repository. Chat history stays in the visitor's browser. No database.
  • app/api/chat/route.ts, which reads your key server-side and streams replies. The key never reaches the browser.

Bring your own key

One variable. The provider is read from the key itself:

Key looks likeProviderDefault model
sk-ant-...Anthropicclaude-haiku-4-5
sk-or-...OpenRouteropenai/gpt-5-nano
sk-...OpenAIgpt-5.4-mini
AIza...Google Geminigemini-2.5-flash
vck_...Vercel AI Gatewayopenai/gpt-5-nano
gsk_...Groqllama-3.3-70b-versatile
xai-...xAIgrok-4-fast-non-reasoning

Create the key with a spending limit where the provider offers one: OpenRouter can cap the credits a key may spend, OpenAI has usage limits per project. The key never reaches the browser, but the chat itself is open to anyone who has your URL, so the cap is what bounds the cost.

Set CHAT_MODEL to use a different model. For Mistral or DeepSeek, whose keys have no recognisable shape, add AI_PROVIDER=mistral or AI_PROVIDER=deepseek. For any OpenAI-compatible server (Ollama, LM Studio, vLLM, LiteLLM, Together) set AI_BASE_URL and CHAT_MODEL. Every provider's usual variable (OPENAI_API_KEY, ANTHROPIC_API_KEY, ...) works too. See .env.example.

Run it locally

npm install
cp .env.example .env.local   # then put your key in AI_API_KEY
npm run dev

Install into an existing project

Every component in this repository also installs on its own, as source, into any Next.js project.

With an agent

BoardUI has an MCP server, so Claude Code, Cursor and any MCP client can browse the catalog and install for you. Add it once:

claude mcp add boardui -- npx -y boardui@latest mcp

Cursor and most other clients take the same server in their MCP config:

{
  "mcpServers": {
    "boardui": { "command": "npx", "args": ["-y", "boardui@latest", "mcp"] }
  }
}

Then ask in plain words. "Install every free BoardUI component" installs the whole free catalog in one go. "Add a data table and stat cards to the dashboard" installs just those and wires them in. The rules in AGENTS.md keep whatever it builds on BoardUI's tokens and type scale. Setup for VS Code, Codex and the rest is at boardui.com/mcp.

With the CLI

npx boardui@latest list              # every component, one line each
npx boardui@latest add data-table    # one component and what it depends on
npx boardui@latest add --all         # everything in this repository

Components

Application blocks

Composed screens and panels: sidebars, chat, tables, settings, cards.

ComponentWhat it isInstall
Agent ChatA working chat app: app sidebar, streaming replies, thinking indicator, a composer pill with stop control, a chat-history rail with local thread switching, and a setup notice when no provider key is set.npx boardui@latest add agent-chat
Agent LogShared streaming-log machinery: the reveal ticker, the blur-in with its soft clipping edge, and the curved tree guide that draws itself. Behind Task List and Web Search.npx boardui@latest add agent-log
Agent ThinkingAgent thinking indicator for chat composers — dot wave, dot spin, stars, and infinity variants with a shimmering label and elapsed timer.npx boardui@latest add agent-thinking
App ShellPage frame for the chat starter: the sidebar, a phone drawer, and a titled content card, carrying the starter's own navigation so the sidebar only links to pages the app has.npx boardui@latest add app-shell
Auth CardSign-in and sign-up cards with social providers stacked with labels or inline as icons, plus email fields and a CTA.npx boardui@latest add auth-card
Composer LoaderLoading state that wraps a chat composer — an iridescent light band orbiting the rim with a soft inward bloom, fading in while the agent works.npx boardui@latest add composer-loader
Data TableTanStack-powered data table with sorting, selection, and pagination.npx boardui@latest add data-table
Important Alerts CardScrollable alert feed with tinted icon circles and date pills.npx boardui@latest add important-alerts-card
Notification CenterTabbed activity inbox with grouped notifications, unread state, avatars, status icons, and inline actions.npx boardui@latest add notification-center
Orders Chart CardFree chart card: a year of monthly orders as bars, this year beside last year for every month, with a count-up headline, delta chip and hover readout.npx boardui@latest add orders-chart-card
Patient Info CardProfile card with avatar and label/value detail rows.npx boardui@latest add patient-info-card
Revenue Chart CardFree chart card: a year of monthly revenue as an area against the year before, with a count-up headline, delta chip and hover readout per month.npx boardui@latest add revenue-chart-card
Settings ModalControlled multi-page settings dialog with General, Profile, Tools, and Storage views.npx boardui@latest add settings-modal
SidebarThe floating dashboard sidebar with team menu, nav, announcement, and user menu.npx boardui@latest add sidebar
Stat CardsKPI stat card row with delta chips.npx boardui@latest add stat-cards
Theme ToggleManual light/dark control with a click-origin reveal, local persistence, and no system-theme dependency.npx boardui@latest add theme-toggle

Base components

The everyday building blocks.

ComponentWhat it isInstall
AnnouncementDismissible announcement card used in the sidebar footer.npx boardui@latest add announcement
AvatarImage or initials avatar in multiple sizes and tints.npx boardui@latest add avatar
BadgeCounter pills and the Kbd shortcut hint.npx boardui@latest add badge
BreadcrumbIcon-capable breadcrumb trail.npx boardui@latest add breadcrumb
ButtonPrimary, secondary, ghost, and danger buttons in three sizes with icon support.npx boardui@latest add button
Button GroupRow of secondary-style buttons fused into one bordered control with hairline dividers and selectable items.npx boardui@latest add button-group
CarouselGallery carousel built on CSS scroll-snap: swipe, arrows and a position indicator.npx boardui@latest add carousel
CheckboxReact Aria checkbox with animated tick and indeterminate state.npx boardui@latest add checkbox
Checkbox CardBordered selectable card driven by a checkbox.npx boardui@latest add checkbox-card
ChipStatus/delta chips in bold and soft variants across the accent palette.npx boardui@latest add chip
Close ButtonCompact dismiss button for banners, modals, and chips.npx boardui@latest add close-button
Date PickerSingle-date picker with month navigation, built on React Aria.npx boardui@latest add date-picker
Date Range PickerTwo-month range picker sharing the date-picker chrome.npx boardui@latest add date-range-picker
DividerHorizontal content divider with single-line, double-line, filled, and aligned variants.npx boardui@latest add divider
DropdownComposable popover menu (trigger, panel, groups, rows, dividers) built on React Aria — the recipe behind the sidebar team/account menus.npx boardui@latest add dropdown
File UploadDrag-and-drop file upload with validation, animated progress, and a completion callback.npx boardui@latest add file-upload
Icon ButtonSquare icon-only button in two sizes.npx boardui@latest add icon-button
InputText input with label, hint text, error states, and leading icon support.npx boardui@latest add input
Input OTPOne-time-code field with a monospace box per digit, paste distribution and autofill support.npx boardui@latest add input-otp
KbdKeyboard shortcut hint pill.npx boardui@latest add kbd
Link ButtonInline text action styled like a link — primary/secondary variants, three sizes, icon support, renders or .npx boardui@latest add link-button
Meeting SchedulerDate + time-slot scheduler popover.npx boardui@latest add meeting-scheduler
NotificationDismissible notification with status icons, avatars, action buttons, and timed countdown.npx boardui@latest add notification
PaginationNumbered pagination with prev/next and ellipsis collapsing.npx boardui@latest add pagination
RadioReact Aria radio group with the gradient selected dot, two sizes, and the bare RadioDot glyph for menu rows.npx boardui@latest add radio
Radio CardBordered selectable card driven by a radio — the radio flavor of Checkbox Card.npx boardui@latest add radio-card
Segmented ControlPill-style segmented control (Weekly / Monthly / Yearly switchers).npx boardui@latest add segmented-control
SelectReact Aria select with styled trigger, non-modal popover, and free-form item content.npx boardui@latest add select
SliderSingle-value and min/max range sliders with exact-value bubbles and keyboard controls.npx boardui@latest add slider
Social ButtonSign-in buttons for 24 providers, with brand logos, three colour treatments and an icon-only form.npx boardui@latest add social-button
Status DotColored status indicator dot used inside selects and tables.npx boardui@latest add status-dot
SwitchSkeuomorphic toggle switch in two sizes.npx boardui@latest add switch
Switch CardBordered settings row driven by a switch.npx boardui@latest add switch-card
TableStatic table primitives matching the dashboard tables.npx boardui@latest add table
TabsUnderline and pill tab variants built on React Aria.npx boardui@latest add tabs
TooltipLight-surface tooltip built on React Aria.npx boardui@latest add tooltip

Foundations

Tokens, type scale, global styles, utilities, and the agent rules.

ComponentWhat it isInstall
Agent rulesAlways-on design rules for AI agents (semantic tokens, type scale, conventions), installed as a Cursor rule file.npx boardui@latest add rules
Agent runtimeStreaming chat endpoint for agent templates: one AI_API_KEY from OpenAI, Anthropic, Google, OpenRouter, Groq, xAI or Vercel AI Gateway (or any OpenAI-compatible server by URL), a config probe for unconfigured deploys, and the message contract the BoardUI chat UI installs against.npx boardui@latest add agent-runtime
Chevron iconsCustom chevron glyphs (select caret, sortable table headers) matching the Figma strokes.npx boardui@latest add chevrons
cx utilitytailwind-merge wrapper aware of BoardUI's composite text styles, plus the sortCx helper.npx boardui@latest add cx
Global stylesTailwind entry css: dark-mode variant, base resets, component animations, and table styling. Imports theme.css and typography.css.npx boardui@latest add globals
LogoBoardUI brand mark placeholder — swap with your own logo component.npx boardui@latest add logo
Theme tokensColor primitives, semantic tokens (text/background/border/foreground/chart), radii, shadows, and button gradient utilities.npx boardui@latest add theme
Typography tokensThe full Figma type scale as composite text-{family}-{weight} Tailwind utilities.npx boardui@latest add typography
useCountUp hookAnimated rolling number hook used by chart headline figures.npx boardui@latest add use-count-up
useDismissOnOutsidePress hookCloses React Aria popovers on outside press without swallowing the outside click.npx boardui@latest add use-dismiss-on-outside-press

BoardUI Pro

Everything in this repository is free and complete. Pro adds the full-page templates and the richer components, 8 templates and 23 components, installed into the same project as source: npx boardui@latest login <key> once, then add as usual. One-off payment, no subscription. See www.boardui.com/#pricing.

The 8 templates
NameWhat it is
AI Chat TemplateFull AI chat app: sidebar, resizable code panel, composer with model/effort controls.
AI Image Generation TemplatePrompt thread with a live generation frame and feedback actions, plus a gallery panel of past generations.
AI Profile TemplateAI contributions profile: cover card with activity heatmap, 30-day agents bar chart, and tokens trend chart.
Finance Dashboard TemplateBalance KPIs, a cash-flow sankey, spending rings, portfolio bubbles, a daily spending heatmap, and a transactions data table.
Home Dashboard TemplateKPI stat cards, revenue trend, earnings chart, contributions heatmap, and a customers table in a responsive app shell.
HR Management TemplateHeadcount KPIs, recent hires, hiring pipeline, engagement radar, hires vs. attrition, team breakdowns, and an employees data table.
Marketing Dashboard TemplateCampaign KPIs, acquisition funnel, spend by channel, traffic sources, ad spend vs. ROAS, visitors by channel, and a campaigns data table.
Medical Report TemplatePatient overview with steps, sleep score, activity rings, and most-active-days charts.
The 23 components
NameWhat it is
Activity Rings CardApple Watch-style concentric goal rings with stat tiles.
Agent Limits CardContext window usage bar with an expandable token breakdown, collapsible groups, and plan usage limits with reset times.
Agent ProgressCollapsible multi-step AI task progress with animated active, pending, and completed states.
Area Chart CardMulti-series area chart with stacked, overlapping and 100% variants, gradient fills, period dropdown and stat tiles.
Bar List CardAnalytics breakdown list: ranked rows with share bars behind the labels, tabbed lists, metric caption, and a show-more pill.
CalendarMonth-view calendar with event chips, details popover, month switcher, and inbox feed.
Combo Chart CardBar-plus-line combo chart with independent left and right axes, hover dimming, and a pulsing active dot.
ComposerThe AI chat composer, whole package: attachment and model menus, voice and send controls, the status bar, and the liquid-glass loading treatment for its controls.
Contributions CardGitHub-style contributions heat grid with swappable accent family.
Earnings Chart CardBar chart card with period switcher, count-up headline, and hover outline.
Funnel Chart CardHorizontal flow funnel with curved or sharp tapers, centred conversion pills, mono option, and a value/name footer under every column.
Heatmap Chart CardMatrix heatmap card (rows × columns) with a theme-following ramp, hover-linked headline, and Less → More legend.
Line Chart CardLine/area chart card with gradient fill, curved or sharp interpolation, and animated active dot.
Most Active Days CardContinuous vertical month calendar with per-day mini activity rings.
Radar Chart CardRadar chart card with filled, dotted, lines-only, and centre-score variants, hover-linked headline, and multi-series legend.
Radial Chart CardRadial bar chart card: concentric rings (plain, labelled, or over a grid), single-value gauges, and a stacked half gauge.
Sankey Chart CardSankey flow card with pill nodes, target-tinted links, source and share labels, and hover isolation.
Scatter Chart CardScatter and bubble chart with grouped series, an optional size measure, hover isolation and stat tiles.
Sleep Score CardSegmented score ring with hover-focused sub-scores and metric rows.
Stage Bars CardFunnel stages as rounded horizontal pills with name, value, and share per stage, animated widths, and a mono option.
Steps CardWeekly steps bar chart with week switcher, count-up headline, and hover outline.
Task ListStreaming agent task log: tasks reveal step by step with soft height, blur, and a shimmering running title.
Web SearchStreaming research trail: the queries an agent ran and the sources it opened, with real site marks.

Before going public

Requests bill to whoever owns the key, and anyone who has your URL can send them. Three ways to bound that, simplest first: create the key with a spending limit, turn on Vercel's deployment protection for a personal deployment, and put a rate limit in front of /api/chat before pointing the internet at it.

License

MIT. Use it, change it, ship it, share it. BoardUI Pro components and templates are sold separately under the BoardUI License.

See what people are saying

Contributors

mertcanesmergul

41 commits

Languages

TypeScript

89.5%

CSS

10.5%