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.
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.jsonPrefer 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
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | undefined | Small label above the heading. |
| heading | string | none | Section heading. |
| description | string | undefined | Paragraph under the heading. |
| image | MediaSlotImage | undefined | Tall image in the left column, falls back to a placeholder. |
| stats | StatItem[] | none | Stat tiles rendered in a fixed 2-column grid. |
| className | string | none | Extra 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.
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.