Belief Statement Values
Two-column about section: a sticky eyebrow and big heading on the left, and a long belief paragraph above a border-separated values list on the right.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/belief-statement-values.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/about/about61.tsx instead.
Usage
The file also exports about61Demo, 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 { About61, about61Demo } from "@/components/blocks/about/about61"; export default function Page() { return <About61 {...about61Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | undefined | Small label above the heading in the left column. |
| heading | string | none | Heading in the left column. |
| belief | string | none | Longer manifesto-style paragraph at the top of the right column. |
| values | ValueItem[] | none | Divide-y list of values under the belief paragraph. |
| className | string | none | Extra classes for the outer section element. |
Types
type ValueItem = { title: string; description: string; };
Behavior notes
- The left column is lg:sticky so the eyebrow and heading stay in view while the belief paragraph and values list scroll in the right column, a layout About51's centered single-column belief list doesn't use.
- values render as a plain divide-y list with no numbering and no images, unlike About51's numbered belief list which optionally attaches a small MediaSlot image to each entry.
- belief is a single long paragraph rendered above the list rather than the list itself carrying the manifesto text, so the block reads as statement-then-evidence instead of About6's flat numbered-principles list.
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.