Staaarter

About with Stats Grid

Two-column about section with a tall portrait-oriented image on one side, and an eyebrow, heading, description, and 2x2 stats grid on the other.

By Staaarter Team
About
Docs
Live preview

Docs

Installation

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

npx shadcn add https://staaarter.com/r/about-with-stats-grid.json

Prefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/about/about66.tsx instead.

Usage

The file also exports about66Demo, 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 { About66, about66Demo } from "@/components/blocks/about/about66";

export default function Page() {
  return <About66 {...about66Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstringundefinedSmall label above the heading.
headingstringnoneSection heading.
descriptionstringundefinedParagraph under the heading.
imageMediaSlotImageundefinedTall image in the left column, falls back to a placeholder.
statsStatItem[]noneStat tiles rendered in a fixed 2-column grid.
classNamestringnoneExtra classes for the outer section element.

Types

type StatItem = { title: string; value: string };

Behavior notes

  • The image is fixed at a 3:4 portrait aspect ratio via MediaSlot, unlike About2's full-width 21:9 photo band or About66's stats-page cousin About33 (About With Stats Band), which runs its band horizontally instead of as a side column.
  • stats always renders in a fixed 2-column grid, matching About1's team grid columns but applied to numbers instead of avatars; five or more stats wrap to a third row rather than reflowing to a 4-column layout like About8.
  • eyebrow, heading, description, and stats all live in a single right-hand column next to the image, so unlike About1 the mission text and the stats are not visually independent, they read as one continuous block.