Staaarter

Bento Stats Dashboard

A centered grid of build-in-public stat tiles, e.g. commits shipped, test coverage, uptime, and team size, laid out in a bento-box arrangement where some tiles span more columns or rows than others. Every number is a static value passed in via props, formatted for display, not computed live.

By Staaarter Team
Coming Soon
Docs
Live preview

Docs

Installation

A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/bento-stats-dashboard.json

Prefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon9.tsx instead.

Usage

The file also exports comingsoon9Demo, the exact props behind the preview above. Spread it to get a working section in one line, then replace it with your own data.

import { ComingSoon9, comingsoon9Demo } from "@/components/blocks/coming-soon/comingsoon9";

export default function Page() {
  return <ComingSoon9 {...comingsoon9Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstring"Coming soon"Small label above the heading.
headingstring"Building in public"Section heading.
descriptionstring"A few numbers from behind the scenes..."Section subheading.
statsBentoStat[]noneStat tiles to render, each with an optional span className for bento sizing.
classNamestringnoneExtra classes for the outer section element.

Types

export interface BentoStat {
  id: string;
  label: string;
  value: string;
  description?: string;
  span?: string;
}

Behavior notes

  • Fully static: a plain Server Component. Every stat value is a fixed string passed in via props, there is no counting-up animation or live polling, and tile size is driven by an author-supplied Tailwind `span` className (e.g. col-span-2 row-span-2) rather than any runtime measurement.