Index Columns About
Three-column about layout with a narrow studio fact index on the left, an oversized centered statement in the middle, and a portrait image with a signature-style caption on the right.
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/index-columns-about.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/about/about37.tsx instead.
Usage
The file also exports about37Demo, 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 { About37, about37Demo } from "@/components/blocks/about/about37"; export default function Page() { return <About37 {...about37Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| facts | FactItem[] | none | Label/value rows in the left-hand fact index, each separated by a top border. |
| statement | string | none | Large centered statement filling the middle column. |
| image | MediaSlotImage | undefined | Portrait image in the right column; falls back to the shared gradient placeholder. |
| caption | SignatureCaption | none | Name and role printed under the portrait like a photo credit. |
| className | string | none | Extra classes for the outer section element. |
Types
type FactItem = { label: string; value: string }; type SignatureCaption = { name: string; role: string };
Behavior notes
- The three columns use an uneven 0.8fr/1.4fr/1fr track, unlike About13's two-column 1.4fr/1fr split, so the statement column is deliberately the widest of the three.
- The fact index is a plain definition list with top borders between rows, distinct from About13's bordered card of details; here there is no enclosing card, just a divided list under a small 'Studio index' label.
- Unlike About15's Avatar-based CEO signature, the portrait caption here is plain text under a MediaSlot image, styled as a photo credit rather than a person identity 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.