Compact Two-Column Icon Feature List
A feature section that leads with a badge, heading, and description, then lists many compact items (ten in the demo) in a two-column grid. Each item pairs a lucide icon in a rounded bg-muted tile with a title and a one-line description, favoring density over a wide grid of large cards.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its badge dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/compact-two-column-icon-list.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/feature/feature36.tsx instead.
Usage
The file also exports feature36Demo, 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 { Feature36, feature36Demo } from "@/components/blocks/feature/feature36"; export default function Page() { return <Feature36 {...feature36Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| badge | string | undefined | Small label above the heading; omitted entirely when unset. |
| heading | ReactNode | none | Section heading. |
| description | string | undefined | Supporting copy under the heading. |
| items | CompactFeatureItem[] | none | Icon, title, and description entries rendered in a two-column grid. |
| className | string | undefined | Extra classes for the outer section element. |
Types
type CompactFeatureItem = { icon: LucideIcon; title: string; description: string; };
Behavior notes
- Plain server component with no interactivity; the entire list is static markup.
- Each item's icon is passed as a real LucideIcon component reference, which is fine here since the block is a server component and never crosses a client boundary.
- Items wrap to a single column below the sm breakpoint and form two columns above it.
More Feature Blocks
View all →Full-Bleed Workspace Band
Two-column header above a full-bleed image band with a live view switcher, closing on three numbered captions.
Center-Line Journey Timeline
Vertical hairline timeline alternating stages either side, dropping a phone frame on one step.
Figure-Led Evidence Rows
Tall image with a floating before-and-after card, leading into oversized-figure evidence rows.
Staircase Asset Trio
Three image tiles stepping down the page in a staircase, each floating a different live asset.
Sticky Reference List
Sticky heading column beside three labelled groups of checked capabilities, closing on a footnote.
Day Timeline Rows
Hairline rows walking through one working day, stamped with time and a live approval card inline.