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.
glass/layout/app-headerSource
"use client";
import { useId, useState, type ReactNode } from "react";
import { Bell, ChevronDown, Mic, Search } from "lucide-react";
import { cn } from "@/lib/utils";
export interface AppHeaderProps {
title?: string;
subtitle?: string;
tabs?: { label: string; value: string }[];
defaultTab?: string;
onTabChange?: (value: string) => void;
notifications?: number;
user?: { name: string };
primaryAction?: { label: string; onClick?: () => void };
searchPlaceholder?: string;
extra?: ReactNode;
className?: string;
}
const GLASS = "da-stroke bg-da-surface backdrop-blur-da backdrop-saturate-150";
export function AppHeader({
title = "Meetings",
subtitle = "12 this week · 8h 40m recorded · 31h saved",
tabs = [
{ label: "Upcoming", value: "upcoming" },
{ label: "Recorded", value: "recorded" },
{ label: "Shared with me", value: "shared" },
],
defaultTab = "upcoming",
onTabChange,
notifications = 2,
user = { name: "Amara Diallo" },
primaryAction = { label: "Record now" },
searchPlaceholder = "Search meetings, people, decisions…",
extra,
className,
}: AppHeaderProps) {
const [tab, setTab] = useState(defaultTab);
const searchId = useId();
const initials = user.name
.split(" ")
.map((w) => w[0])
.join("");
return (
<header className={cn("flex flex-col gap-5 p-3 text-da-fg sm:p-4", className)}>
<div className={cn("flex h-14 items-center gap-3 rounded-da-pill pr-2 pl-5 shadow-da-md", GLASS)}>
<form role="search" action="#" className="flex min-w-0 flex-1 items-center gap-2.5">
<Search aria-hidden className="size-4 shrink-0 text-da-muted-fg" />
<label htmlFor={searchId} className="sr-only">
Search
</label>
<input
id={searchId}
type="search"
name="q"
placeholder={searchPlaceholder}
className="min-w-0 flex-1 bg-transparent text-sm outline-none placeholder:text-da-muted-fg"
/>
<kbd className="hidden rounded-da-sm bg-da-fg/[0.06] px-1.5 py-0.5 font-da-mono text-[11px] text-da-muted-fg sm:block">⌘K</kbd>
</form>
{extra}
<a
href="#notifications"
aria-label={`Notifications, ${notifications} unread`}
className="da-focus da-transition relative grid size-10 shrink-0 place-items-center rounded-full hover:bg-da-fg/[0.06]"
>
<Bell aria-hidden className="size-4" />
{notifications > 0 && (
<span aria-hidden className="absolute top-1.5 right-1.5 grid size-4 place-items-center rounded-full bg-gradient-to-br from-da-primary to-da-accent text-[9px] font-bold text-da-primary-fg">
{notifications}
</span>
)}
</a>
<button type="button" className="da-focus da-transition flex shrink-0 items-center gap-1.5 rounded-da-pill p-1 pr-2 hover:bg-da-fg/[0.06]" aria-label={`Account menu for ${user.name}`}>
<span aria-hidden className="grid size-8 place-items-center rounded-full bg-gradient-to-br from-da-primary to-da-accent text-xs font-semibold text-white">
{initials}
</span>
<ChevronDown aria-hidden className="size-3.5 text-da-muted-fg" />
</button>
</div>
<div className="flex flex-col gap-4 px-2 sm:flex-row sm:items-end sm:justify-between">
<div>
<h1 className="font-da-display text-3xl font-semibold tracking-da-display sm:text-4xl">{title}</h1>
<p className="mt-1 text-sm text-da-muted-fg">{subtitle}</p>
</div>
<div className="flex flex-wrap items-center gap-2">
<div role="group" aria-label="Meeting views" className={cn("flex rounded-da-pill p-1 shadow-da-sm", GLASS)}>
{tabs.map((t) => (
<button
key={t.value}
type="button"
aria-pressed={tab === t.value}
onClick={() => {
setTab(t.value);
onTabChange?.(t.value);
}}
className={cn(
"da-focus da-transition rounded-da-pill px-3.5 py-1.5 text-sm font-semibold whitespace-nowrap",
tab === t.value ? "bg-da-fg text-da-bg shadow-da-sm" : "text-da-muted-fg hover:text-da-fg",
)}
>
{t.label}
</button>
))}
</div>
<button
type="button"
onClick={primaryAction.onClick}
className="da-focus inline-flex h-10 items-center gap-2 rounded-da-pill bg-gradient-to-r from-da-primary to-da-accent px-4 text-sm font-semibold text-da-primary-fg shadow-da-md transition-[translate] duration-(--da-duration) ease-da-emphasized hover:-translate-y-0.5 motion-reduce:transition-none"
>
<Mic aria-hidden className="size-4" />
{primaryAction.label}
</button>
</div>
</div>
</header>
);
}
export default AppHeader;
modules/glass/layout/app-header/index.tsx
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| title / subtitle | string | — | Page heading (h1) and meta line. |
| tabs | { label: string; value: string }[] | — | Segmented view switcher. |
| defaultTab | string | "upcoming" | Initially selected tab value. |
| onTabChange | (value: string) => void | — | Called when a tab is selected. |
| notifications | number | 2 | Unread count (0 hides the counter). |
| user | { name: string } | — | Used for the avatar initials and accessible name. |
| primaryAction | { label: string; onClick?: () => void } | Record now | Gradient button. |
| searchPlaceholder | string | — | Search placeholder. |
| extra | ReactNode | — | Extra element in the top bar. |
| className | string | — | Classes on the <header>. |
Other app header variants in Glass
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.
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.
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.
App header in other art directions
App Header
Two-tier app header: top bar with breadcrumbs, ⌘K search field, notification bell with counter and avatar; page band with big title, meta line, primary action and folder-style tabs.
Header Compact
Dense 56px app header built from ruled cells: title with count chip, view tabs (yellow active cell), filter search, ink 'New' cell, and an optional strip of active filter chips.
Header Editor
Document/editor header: back cell, version chip, inline-editable uppercase title, save-status chip (saved/saving/unsaved), Preview cell and a yellow Publish cell; actions wrap to a full-width bar on mobile.
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.
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.
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.
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.
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.
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”.
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.
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.
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.
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.
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).
Header Report
Report header: title with “last updated” + refresh, a toolbar with period segmented control, entity select, compare toggle and Export; wraps on mobile.
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.
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.
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.
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.
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.
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.
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.
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.
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.