Interactive Pillar Tabs & Image
Centered header with a vertical pillar list beside a side image; one pillar is marked active with an accent line and expanded description. Suited to studios and agencies.
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/interactive-pillar-tabs-image.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/about/about26.tsx instead.
Usage
The file also exports about26Demo, 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 { About26, about26Demo } from "@/components/blocks/about/about26"; export default function Page() { return <About26 {...about26Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| heading | string | none | Centered section heading. |
| description | string | undefined | Centered intro paragraph under the heading. |
| pillars | Pillar[] | none | Vertical list of labeled pillars with a left accent border. |
| photo | MediaSlotImage | undefined | Side image next to the pillar list, falls back to a placeholder. |
| activeIndex | number | 0 | Index of the pillar rendered as active (accent border, icon/label in foreground color, description expanded). |
| className | string | none | Extra classes for the outer section element. |
Types
type Pillar = { icon: LucideIcon; label: string; description: string; };
Behavior notes
- 'Interactive tabs' and 'crossfading image' in the brief describe the inspiration's polish only; this is a plain server component where activeIndex is a static prop, not client state, so exactly one pillar renders expanded on every page load rather than responding to hover.
- Unlike About16's 3-column pillar grid where every card is equal, this block renders pillars as a single vertical list with only the activeIndex entry showing its description, an accordion-style layout rather than a grid.
- The header is centered like About12's heading block, but About12 lays its steps out in a 4-column grid below, while this block pairs a single-column list with a side image instead.
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.