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.
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.jsonPrefer 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
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | undefined | Small monospace label above the heading. |
| heading | string | none | Section heading. |
| description | string | undefined | Optional body copy below the heading. |
| portrait | MediaSlotImage | undefined | Portrait photo in the bordered panel. |
| specs | SpecItem[] | none | Label/value rows rendered in monospace, right-aligned values. |
| className | string | none | Extra 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.
More About Blocks
View all →team-mission
Team & Mission
Two-column about section with mission statement, company stats, and team member grid.
values-with-team-photo
Values with Team Photo
Full-width photo with a three-column values grid below.
timeline-milestones
Timeline & Milestones
Company stats on the left and a vertical timeline of milestones on the right.
founder-quote-team
Founder Quote & Team
Founder blockquote with avatar, followed by a horizontal team member row.
image-text-split
Image & Text Split
Tall image on the left, company story, inline stats, and CTAs on the right.
numbered-principles
Numbered Principles
Heading on the left and numbered company principles on the right.