Studio At A Glance
Two-column studio overview: a portrait studio photo on one side, and a heading, short copy, a small facts list (founded, team size, location), and highlight stat tiles on the other.
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/studio-at-a-glance.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/agency/agency16.tsx instead.
Usage
The file also exports agency16Demo, 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 { Agency16, agency16Demo } from "@/components/blocks/agency/agency16"; export default function Page() { return <Agency16 {...agency16Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| heading | ReactNode | none | Heading next to the photo. |
| description | string | none | Short copy paragraph under the heading. |
| photo | MediaSlotImage | undefined | Studio photo, falls back to a placeholder. |
| facts | FactItem[] | none | Simple label/value fact rows, e.g. Founded, Team size, Location. |
| stats | StatItem[] | none | Highlight stat tiles rendered in a small grid beneath the facts. |
| className | string | none | Extra classes for the outer section element. |
Types
type FactItem = { label: string; value: string; }; type StatItem = { value: string; label: string; };
Behavior notes
- Fully static server component; no interactivity, all content (photo, facts, stats) comes directly from props.
- The facts list uses a `dl` with a border-top/divider styling rather than a real HTML `<table>`.
- Stat tiles render in a fixed 3-column grid regardless of how many `stats` are passed; the demo supplies 3, but 2 also lays out cleanly with an empty trailing cell hidden by the grid's natural wrap.
More Agency Blocks
View all →case-study-hero
Case Study Hero
A case study header with project metadata grid, service tags, and featured image.
studio-manifesto
Studio Manifesto
Oversized editorial manifesto statement with emphasized phrases, principle chips and a founder signature.
studio-values
Studio Values
Studio values laid out with oversized ghost numerals, titles, descriptions and keywords.
how-we-think
How We Think
Sticky studio intro with a portrait beside a stack of numbered principles.
studio-team
Studio Team
A studio team grid of member portraits with names and roles.
awards-list
Awards List
Editorial list of studio awards by year with project and recognition details.