Company At a Glance
Full company overview with panoramic image, story paragraph, key facts list, leadership quote, and stats row. A rich, multi-section layout for company landing pages.
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/company-at-a-glance.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/about/about19.tsx instead.
Usage
The file also exports about19Demo, 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 { About19, about19Demo } from "@/components/blocks/about/about19"; export default function Page() { return <About19 {...about19Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| heading | string | none | Section heading above the panoramic photo. |
| story | string | none | Company story paragraph next to the facts list. |
| photo | MediaSlotImage | undefined | Wide banner photo; falls back to a gradient placeholder when omitted. |
| facts | FactItem[] | none | Key facts (founded, headquarters, industry, funding, etc.) with icons. |
| quote | { text: string; person: Person } | none | Leadership quote with avatar, name, and role. |
| stats | StatItem[] | none | Stat row across the bottom of the section. |
| className | string | none | Extra classes for the outer section element. |
Types
type FactItem = { icon: LucideIcon; label: string; value: string }; type StatItem = { title: string; value: string }; type Person = { name: string; role: string; avatar?: { src: string; alt: string }; };
Behavior notes
- Unlike About10's bento grid which packs photo, mission, stats, and team into one grid, About19 stacks four distinct sections top to bottom (photo, story+facts, quote card, stats row) so each reads as its own unit at any viewport width.
- The leadership quote here always renders inside a bordered card with a left-aligned avatar block, differing from About4's centered blockquote-only treatment and About19's own stats row, which stays borderless below it.
- facts is a required array (not optional like About2's description), since the two-column story+facts layout is the core of this block and looks incomplete without both sides populated.
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.