Hourly Strip

Twenty-four hour activity strip with tone bars whose opacity scales with each hour's volume, labeled 00 to 24.

Last 24hpeak at 14:00
0006121824

Requires shadcn/ui initialized. Run npx shadcn@latest init if you haven't.

Import & use
import { Dashboard24 } from "@/components/beste/piece/dashboard24";

<Dashboard24
  title="Last 24h"
  peak="peak at 14:00"
  values={[
    2,
    1,
    0,
    0,
    1,
    2,
    4,
    8,
    14,
    22,
    28,
    34,
    38,
    42,
    48,
    40,
    36,
    30,
    22,
    18,
    14,
    10,
    6,
    4
  ]}
  hourLabels={[
    "00",
    "06",
    "12",
    "18",
    "24"
  ]}
  tone="violet"
/>