Mission Band With Principles
Company story section with a two-column heading and description that runs into a full-width photo band, followed by three founding principles laid out as monospace-numbered, hairline-divided columns.
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/mission-band-with-principles.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/about/about69.tsx instead.
Usage
The file also exports about69Demo, 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 { About69, about69Demo } from "@/components/blocks/about/about69"; export default function Page() { return <About69 {...about69Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| heading | string | none | Heading in the left half of the two-column header row. |
| description | string | undefined | Supporting text in the right half of the header row. |
| image | MediaSlotImage | undefined | Full-width photo band between the header and the principles, falls back to a placeholder. |
| principles | Principle[] | none | Founding principles rendered as divided columns below the photo band. |
| className | string | none | Extra classes for the outer section element. |
Types
type Principle = { title: string; description: string; };
Behavior notes
- The photo band breaks out of the max-w-5xl content container to run the full width of the viewport, unlike About2's photo which stays inside the same max-width wrapper as its heading and values grid.
- Principle numbers are a zero-padded index rendered in font-mono, distinct from About6's font-heading numbers in a vertical list and About27's numbered circular badges; here the numbers sit above each title in a horizontal, sm:divide-x hairline-divided 3-column row instead of a stacked list.
- heading and description share a 2-column header row like About68's team header, but About69 has no card grid afterward, its content resolves into the photo band and then the three principle columns instead of a grid of people.
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.