Sidebar Ink
Ink sidebar (stays near-black in dark mode): giant numbered text links “01 Overview”, the active one full white with an arrow, a storage meter as a hairline bar at the bottom; drawer on mobile.
mono-clean/layout/sidebar-inkSource
"use client";
import { useEffect, useId, useState, type ReactNode } from "react";
import { cn } from "@/lib/utils";
export interface SidebarInkProps {
brand?: string;
items?: { label: string; href: string }[];
activeHref?: string;
usage?: { label: string; used: number; total: number };
children?: ReactNode;
className?: string;
}
const DEFAULT_ITEMS = [
{ label: "Overview", href: "#overview" },
{ label: "Projects", href: "#projects" },
{ label: "Pages", href: "#pages" },
{ label: "Media", href: "#media" },
{ label: "Analytics", href: "#analytics" },
{ label: "Settings", href: "#settings" },
];
/** Ink sidebar (stays near-black in dark mode): giant numbered text links “01 Overview”, the active one full white with an arrow, a storage meter as a hairline bar at the bottom; drawer on mobile. */
export function SidebarInk({
brand = "Frame",
items = DEFAULT_ITEMS,
activeHref = "#projects",
usage = { label: "Storage", used: 6.2, total: 20 },
children,
className,
}: SidebarInkProps) {
const [open, setOpen] = useState(false);
const id = useId();
useEffect(() => {
if (!open) return;
const onKey = (e: KeyboardEvent) => e.key === "Escape" && setOpen(false);
window.addEventListener("keydown", onKey);
return () => window.removeEventListener("keydown", onKey);
}, [open]);
return (
<div className={cn("flex min-h-dvh bg-da-bg text-da-fg", className)}>
{open && <div aria-hidden className="fixed inset-0 z-40 bg-da-overlay lg:hidden" onClick={() => setOpen(false)} />}
<aside
id={id}
aria-label="Sidebar"
className={cn(
"fixed inset-y-0 left-0 z-50 flex w-72 flex-col bg-(--ink) p-6 text-(--paper) transition-transform duration-(--da-duration) ease-da [--ink:var(--da-fg)] [--paper:var(--da-bg)] lg:sticky lg:top-0 lg:h-dvh lg:translate-x-0 motion-reduce:transition-none dark:border-r dark:border-da-border dark:[--ink:var(--da-surface)] dark:[--paper:var(--da-fg)]",
open ? "translate-x-0" : "-translate-x-full",
)}
>
<div className="flex items-center justify-between">
<span className="font-da-display text-xl font-semibold tracking-da-display">
{brand.toLowerCase()}
<span className="text-da-accent">.</span>
</span>
<button type="button" onClick={() => setOpen(false)} className="da-focus rounded-da-sm font-da-mono text-xs tracking-da-label uppercase lg:hidden">
Close
</button>
</div>
<nav aria-label="Main" className="mt-14 flex-1">
<ul className="space-y-1">
{items.map((it, i) => {
const on = it.href === activeHref;
return (
<li key={it.href}>
<a
href={it.href}
aria-current={on ? "page" : undefined}
className={cn(
"group da-focus flex items-baseline gap-3 rounded-da-sm py-1 font-da-display text-2xl font-medium tracking-da-display transition-opacity",
on ? "opacity-100" : "opacity-45 hover:opacity-100",
)}
>
<span className="font-da-mono text-[11px] tracking-normal">{String(i + 1).padStart(2, "0")}</span>
{it.label}
{on && (
<span aria-hidden className="ml-auto text-base">
→
</span>
)}
</a>
</li>
);
})}
</ul>
</nav>
<div>
<p className="flex justify-between font-da-mono text-[10px] tracking-da-label uppercase opacity-70">
<span>{usage.label}</span>
<span>
{usage.used} / {usage.total} GB
</span>
</p>
<div
role="progressbar"
aria-label={usage.label}
aria-valuemin={0}
aria-valuemax={usage.total}
aria-valuenow={usage.used}
className="mt-2 h-px bg-(--paper)/25"
>
<div className="h-full bg-(--paper)" style={{ width: `${(usage.used / usage.total) * 100}%` }} />
</div>
</div>
</aside>
<div className="flex min-w-0 flex-1 flex-col">
<div className="flex h-14 items-center justify-between border-b border-da-border px-4 lg:hidden">
<span className="font-da-display font-semibold tracking-da-display">{brand}</span>
<button
type="button"
aria-expanded={open}
aria-controls={id}
onClick={() => setOpen(true)}
className="da-focus rounded-da-sm font-da-mono text-xs tracking-da-label uppercase"
>
Menu
</button>
</div>
<main className="flex-1">{children}</main>
</div>
</div>
);
}
export default SidebarInk;
modules/mono-clean/layout/sidebar-ink/index.tsx
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| brand | string | — | Brand name. |
| items | { label: string; href: string }[] | — | Content items (see the exported types). |
| activeHref | string | — | Active Href. |
| usage | { label: string; used: number; total: number } | — | Usage. |
| children | ReactNode | — | Content. |
| className | string | — | Extra classes on the root. |
Other sidebar variants in Mono Clean
App Sidebar
Typographic app sidebar: hairline right border, logo + site switcher, mono group labels, plain text links with right-aligned mono counts; the active link is ink with a signal dot; drawer on mobile.
Sidebar Icons
Narrow icon rail (56px) of square hairline cells; the active cell is filled ink; labels appear as mono tooltips to the right on hover/focus; turns into a bottom bar on mobile.
Sidebar Tree
CMS page tree: nested pages drawn with hairline guide lines and +/− toggles (aria-expanded), mono “Pages” header with an add button; active page ink with signal dot; drawer on mobile.
Sidebar in other art directions
App Sidebar
App shell with a sticky left sidebar: workspace header, grouped nav with yellow active state and counters, usage meter, user footer. Becomes a top bar + slide-over drawer below lg.
Icon Rail
Compact 80px icon rail: ink brand square, square icon links with yellow active state, red counters and ink tooltips on hover/focus, settings pinned at the bottom. Server-safe, CSS-only tooltips.
Sidebar Collapsible
App sidebar that collapses from 256px to a 76px icon column with a stepped width animation; ink active item, labels become sr-only when collapsed, collapse toggle pinned at the bottom.
Sidebar Dual
Two-level navigation: an ink icon rail switches sections, and a paper second panel lists that section's links with counts and a yellow active link. Second panel hides on very small screens.
App Sidebar
Floating frosted sidebar inset from the viewport edges: gradient-orb brand, pill nav items with an ink active state and gradient badges, workspace group, gradient promo card and user chip. Becomes a floating pill top bar + glass drawer below lg.
Sidebar Adaptive
Adaptive navigation: a full glass sidebar with brand, gradient action button, labelled links and a usage meter on desktop; a floating bottom tab bar with a raised gradient “+” on mobile.
Sidebar Channels
Chat-app style double sidebar: a column of gradient workspace squircles plus a glass channel panel with collapsible sections, private/live icons, unread counts and LIVE meeting badges; drawer on mobile.
Sidebar Floating
Floating glass icon rail detached from the viewport edges: gradient logo orb, gradient active item, unread badges, glass tooltips on hover/focus, settings and avatar at the bottom; a floating bottom bar on mobile.
App Sidebar
Linear-style app shell: 240px translucent sidebar with workspace switcher, search, "New" button with shortcut, grouped 32px nav rows with counters, team list with color squares and settings at the bottom. Slide-in drawer below lg.
Sidebar Inset
Inset app shell: the sidebar sits on the tinted page background while content lives in a raised rounded panel. Workspace header, collapsible nested sections with guide line, support/settings and user card; drawer on mobile.
Sidebar Rail
Sidebar that collapses between a 224px labelled list and a 56px icon rail (⌘B or bottom button) with tooltips on hover/focus and corner badges; icon-only on mobile. Controlled or uncontrolled.
Sidebar Tree
Docs / settings sidebar with a filter box and a nested collapsible tree auto-expanded to the active page (highlighted in indigo); stacks above content on mobile.
App Sidebar
Classic enterprise app shell: white bordered sidebar with brand, entity switcher, grouped nav (uppercase group labels, count badges, blue active state), settings and user footer; off-canvas drawer on mobile.
Sidebar Collapsible
Sidebar that collapses from 240px to a 64px icon rail with a toggle button (aria-expanded); collapsed items keep tooltips (title) and sr-only labels. Always a rail on small screens.
Sidebar Dual
Two-level navigation: a narrow icon rail of top-level sections (tooltips, aria-pressed) and a secondary panel listing the selected section’s pages; the panel hides below md.
Sidebar Navy
Dark navy sidebar (fg-colored in light mode, surface in dark mode — dark in both): brand, search field, nav with white-tint active state and badges, and a cash-balance card at the bottom; drawer on mobile.
App Sidebar
Calm app shell: cream sidebar with leaf logo, pill nav items (sage pill for the active page), a small “this year” footprint card with a sprout, and settings at the bottom; drawer on mobile.
Sidebar Floating
Floating sidebar: a rounded cream panel inset from the page edges with a soft shadow, italic serif group labels, a sage “New entry” pill and sage-tinted active items; drawer on mobile.
Sidebar Garden
Deep sage sidebar (dark sage tint in dark mode) with cream text, a translucent active pill, count bubbles, rolling hills illustrated along the bottom and the user’s name on the hill; drawer on mobile.
Sidebar Rail
Slim round icon rail: circular icon links on a sand column, the active one a sage circle with a leaf-shaped marker; labels appear as soft tooltips on hover/focus; becomes a bottom tab bar on mobile.
App Sidebar
Friendly app shell: warm sidebar with emoji workspace chip, big periwinkle “New task” pill, search field, nav with peach count bubbles and a colored-dot board list; slide-in drawer on mobile.
Sidebar Boards
Board navigator: starred favorites, then collapsible emoji spaces holding emoji boards with count bubbles; active board in a white pill; dashed “New space” button.
Sidebar Card
Floating white sidebar card with generous radius on a tinted page: two-dot logo, nav with lavender active pill, butter “tip of the day” card and user row; horizontal nav on mobile.
Sidebar Rail
Slim rounded icon rail: round icons whose active item fills with its own pastel color, dark pill tooltips, emoji avatar at the bottom; floating bottom bar on mobile.