About With Stats Band
An eyebrow label and a read-more link sit in a narrow left column, a bold heading with two side-by-side images fill a wider right column, and a four-column stats band closes the section below both.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its button, 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-band.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/about/about33.tsx instead.
Usage
The file also exports about33Demo, 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 { About33, about33Demo } from "@/components/blocks/about/about33"; export default function Page() { return <About33 {...about33Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | undefined | Small uppercase label in the left column. |
| readMore | ReadMoreLink | undefined | Link-styled button below the eyebrow, e.g. "Read our full story". |
| heading | string | none | Heading in the right column, above the two images. |
| imageOne | MediaSlotImage | undefined | Left of the two side-by-side images. |
| imageTwo | MediaSlotImage | undefined | Right of the two side-by-side images. |
| stats | StatItem[] | none | Four-column stats band below a top border, spanning the full section width. |
| className | string | none | Extra classes for the outer section element. |
Types
type ReadMoreLink = { label: string; href: string }; type StatItem = { title: string; value: string };
Behavior notes
- Unlike About14, which puts its stats band at the top above a centered story card, About33 puts the stats band at the bottom, below an asymmetric two-column header instead of a centered one.
- readMore renders as a Button with variant "link" rather than the default/outline buttons every other About block uses for its buttons array, since it is meant to read as inline text, not a CTA.
- The right column's two images sit beside each other under a single shared heading, unlike About33's sibling About32, which gives its two images the full section width with no accompanying text column.
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.