Skip to content

Header Stats

Dashboard welcome header: yellow band with eyebrow, big greeting, status sentence and two pressable actions, over a ruled KPI strip (2×2 on mobile, 4 across on desktop) with green delta chips.

brutalist/layout/header-stats
Open ↗

Source

import { cn } from "@/lib/utils";

export interface HeaderStatsProps {
  eyebrow?: string;
  title?: string;
  description?: string;
  stats?: { label: string; value: string; delta?: string }[];
  actions?: { label: string; href: string; primary?: boolean }[];
  className?: string;
}

export function HeaderStats({
  eyebrow = "Workspace · Acme Inc.",
  title = "Good morning, Maya.",
  description = "3 drafts are waiting for review and v4.2.1 goes out Monday at 9:00.",
  stats = [
    { label: "Views (30d)", value: "12.4k", delta: "+38%" },
    { label: "Subscribers", value: "8,214", delta: "+212" },
    { label: "Widget CTR", value: "18.4%", delta: "+2.1pt" },
    { label: "Drafts", value: "3" },
  ],
  actions = [
    { label: "Review drafts", href: "#drafts", primary: true },
    { label: "Open changelog", href: "#changelog" },
  ],
  className,
}: HeaderStatsProps) {
  return (
    <header className={cn("da-stroke-b bg-da-primary text-da-primary-fg", className)}>
      <div className="px-4 py-8 sm:px-8">
        <p className="font-da-mono text-xs font-bold tracking-da-label uppercase">{eyebrow}</p>
        <div className="mt-3 flex flex-col gap-6 lg:flex-row lg:items-end lg:justify-between">
          <div>
            <h1 className="font-da-display text-[clamp(2rem,4vw,3.25rem)] leading-none tracking-da-display uppercase">{title}</h1>
            <p className="mt-3 max-w-xl font-medium">{description}</p>
          </div>
          <div className="flex flex-wrap gap-3">
            {actions.map((a) => (
              <a
                key={a.label}
                href={a.href}
                className={cn(
                  "da-focus da-stroke px-4 py-2.5 font-bold shadow-da-sm hover:translate-x-[3px] hover:translate-y-[3px] hover:shadow-none",
                  a.primary ? "bg-da-fg text-da-bg" : "bg-da-surface text-da-surface-fg",
                )}
              >
                {a.label}
              </a>
            ))}
          </div>
        </div>
      </div>
      <dl className="da-stroke-t grid grid-cols-2 bg-da-surface text-da-surface-fg lg:grid-cols-4">
        {stats.map((s, i) => (
          <div key={s.label} className={cn("flex flex-col-reverse justify-end gap-1 px-4 py-4 sm:px-8", i % 2 === 1 && "da-stroke-l", i >= 2 && "da-stroke-t lg:border-t-0", i === 2 && "lg:da-stroke-l")}>
            <dt className="font-da-mono text-[11px] font-bold tracking-da-label text-da-muted-fg uppercase">{s.label}</dt>
            <dd className="flex items-baseline gap-2">
              <span className="font-da-display text-3xl tracking-da-display">{s.value}</span>
              {s.delta && <span className="da-stroke bg-da-success px-1 font-da-mono text-[11px] font-bold text-da-success-fg">{s.delta}</span>}
            </dd>
          </div>
        ))}
      </dl>
    </header>
  );
}

export default HeaderStats;

modules/brutalist/layout/header-stats/index.tsx

Props

PropTypeDefaultDescription
eyebrow / title / descriptionstring—Header copy (title is the h1).
stats{ label: string; value: string; delta?: string }[]—KPI strip (4 works best).
actions{ label: string; href: string; primary?: boolean }[]—Buttons.
classNamestring—Classes on the <header>.

Other app header variants in Brutalist

App header in other art directions

App Header

Floating frosted pill top bar (search with ⌘K hint, gradient notification counter, avatar menu button) above a page heading with a frosted segmented tab switcher and a gradient primary action.

GlassApp header

Header Document

Sticky glass editor header: breadcrumbs, inline-editable document title, saved/editing indicator, live viewers with green presence rings, gradient Share button and more menu.

GlassApp header

Header Greeting

Dashboard header with a time-of-day greeting and day summary, notification bell with gradient counter, a large glass “Ask Halo” search bar with gradient submit and quick-action chips.

GlassApp header

Header Meeting

In-call glass header pill: pulsing REC timer, meeting title, “Halo is taking notes” gradient chip, participant avatars, grid/speaker layout toggle, translate toggle and a red Leave button.

GlassApp header

App Header

Two-row app header: breadcrumbs, ⌘K search trigger and notification dot on top; view tabs with Filter / Display actions below. Includes a working command palette (Radix Dialog) with grouped, filterable, keyboard-navigable commands.

MinimalApp header

Header Detail

Detail-page header: breadcrumbs ending on a copyable mono id, title with status pill, a key/value meta row, action buttons and underline section tabs with counts.

MinimalApp header

Header Switcher

Vercel-style global top bar: logo then organization / project / environment switchers separated by slashes (production badge in red), with dropdown lists, help, notification dot and avatar.

MinimalApp header

Header Toolbar

List-page toolbar: title with count and New button, then a search field, removable key/value filter chips, an Add filter button and a list/board view toggle.

MinimalApp header

App Header

Path-style app header: slash-separated breadcrumb “Nord Studio / Projects / Oslo Opera” (last segment ink), live status with signal dot and last-edit time in mono, outline “Preview” and ink “Publish”.

Mono CleanApp header

Header Editor

Editor top bar in three zones: back arrow + editable page title, a centered square device switcher (desktop/tablet/mobile, radio semantics), and undo/redo text actions + save state + ink Publish.

Mono CleanApp header

Header Tabs

Settings-style header: title + domain subtitle, then a row of text tabs with an ink underline on the active one sitting on the hairline; scrolls horizontally on mobile.

Mono CleanApp header

Header Title

Big-title page header: a huge display title with a superscript mono count, then a ruled toolbar with text filters (slash separated, active underlined in signal) on the left and view options + ink action on the right.

Mono CleanApp header

App Header

Page header for app screens: breadcrumb trail, title + description, right-aligned secondary/primary actions and an optional row of key-value meta; white with a bottom border.

Neo CorporateApp header

Header Global

Global top bar: logo, entity switcher (Radix dropdown), centered search with ⌘K hint, help + notifications (count) icon buttons and a user avatar menu (profile, settings, sign out).

Neo CorporateApp header

Header Report

Report header: title with “last updated” + refresh, a toolbar with period segmented control, entity select, compare toggle and Export; wraps on mobile.

Neo CorporateApp header

Header Tabs

Record header (e.g. a customer): avatar initials, name + status pill, subtitle, action buttons, and an underline tab bar (links with aria-current and counts) that scrolls horizontally on mobile.

Neo CorporateApp header

App Header

Friendly app header: time-of-day serif greeting with the user’s name in italic sage, a calm subtitle, a rounded search field, bell with soft dot and an initials avatar.

Organic SoftApp header

Header Period

Report header: serif title with an italic period word that updates, a pill period switcher (radio semantics) and a soft export button; a wavy divider underneath.

Organic SoftApp header

Header Progress

Page header with a target ring: soft breadcrumb, serif title and description, and on the right a circular progress ring (sage stroke on sand) with the percentage and target label.

Organic SoftApp header

Header Tabs

Section header with pill tabs: serif title and a sage action on one row, then a sand track of pill links (active one cream with shadow, counts in small circles) that scrolls on mobile.

Organic SoftApp header

App Header

Friendly top header: “Good morning, Ana 👋” with a day summary; search pill, bell with red badge, periwinkle “New” button and emoji avatar on the right.

Soft FlatApp header

Header Board

Board page header: emoji tile, title and description, member emoji avatars, ink Share pill, then a pill view switcher (Board, List, Week) and a filter button.

Soft FlatApp header

Header Search

Search-first header: wide rounded search field with clear button, and emoji filter chips (Assigned to me, Due soon, Overdue, Done) that toggle to ink below.

Soft FlatApp header

Header Week

Week-planner header: round prev/next arrows around the week range (announced), a lavender “Today” pill and a mint progress pill with emoji and mini bar.

Soft FlatApp header