Staaarter

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.

By Staaarter Team
Agency
Docs
Live preview

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.json

Prefer 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

PropTypeDefaultDescription
headingReactNodenoneHeading next to the photo.
descriptionstringnoneShort copy paragraph under the heading.
photoMediaSlotImageundefinedStudio photo, falls back to a placeholder.
factsFactItem[]noneSimple label/value fact rows, e.g. Founded, Team size, Location.
statsStatItem[]noneHighlight stat tiles rendered in a small grid beneath the facts.
classNamestringnoneExtra 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.