Staaarter

Spec Sheet About

An about section styled like a technical spec sheet: small crosshair (plus-glyph) marks in each corner of the section, a bordered panel pairing a portrait photo with a monospace label/value data list, and a heading treated like a document title.

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/spec-sheet-about.json

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

Usage

The file also exports about52Demo, 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 { About52, about52Demo } from "@/components/blocks/about/about52";

export default function Page() {
  return <About52 {...about52Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstringundefinedSmall monospace label above the heading.
headingstringnoneSection heading.
descriptionstringundefinedOptional body copy below the heading.
portraitMediaSlotImageundefinedPortrait photo in the bordered panel.
specsSpecItem[]noneLabel/value rows rendered in monospace, right-aligned values.
classNamestringnoneExtra classes for the outer section element.

Types

type SpecItem = { label: string; value: string };

Behavior notes

  • The four corner Plus icons from lucide-react are purely decorative (aria-hidden) crosshair marks positioned absolutely at the section's corners; no other About block in this catalog uses corner glyphs, this is the one place that pattern appears.
  • specs render in monospace (font-mono) label/value rows inside a bordered panel, unlike About19's facts list which pairs an icon with a label/value pair in the default sans font; About52 deliberately reads like exported data rather than a designed fact card.
  • portrait uses a fixed aspect-4/5 crop next to the spec column, the same portrait-beside-data-column structure as About49's founder card, but About52's card stays in default light bg-background/border tokens rather than About49's inverted dark card.