Checklist & Image Split
Two-column layout with checklist highlights on the left, featured image and testimonial quote on the right, plus a full-width stats row.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its avatar, avatar-initials, media-slot dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/checklist-image-split.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/about/about21.tsx instead.
Usage
The file also exports about21Demo, 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 { About21, about21Demo } from "@/components/blocks/about/about21"; export default function Page() { return <About21 {...about21Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| heading | string | none | Heading in the left column. |
| description | string | undefined | Intro text under the heading. |
| checklist | string[] | none | Checklist highlights, each rendered with a CheckCircle2 icon. |
| photo | MediaSlotImage | undefined | Featured image above the quote card in the right column. |
| quote | { text: string; person: Person } | none | Testimonial quote card below the photo. |
| stats | StatItem[] | none | Full-width stat row below both columns. |
| className | string | none | Extra classes for the outer section element. |
Types
type Person = { name: string; role: string; avatar?: { src: string; alt: string }; }; type StatItem = { title: string; value: string };
Behavior notes
- checklist items are plain strings rendered with a CheckCircle2 icon, distinct from About2's ValueItem[] and About16's ValuePillar[] which both require a per-item icon plus a title/description pair.
- The right column stacks an image directly above a bordered quote card, unlike About19 where the quote is its own full-width section separate from the photo.
- The stats row spans the full width below both columns, breaking out of the two-column split the way About14's stats row sits above its story card rather than beside other content.
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.