Staaarter

Studio Ethos

A large, bold ethos statement in the left column paired with a checklist of concrete studio commitments in the right column, each marked with a check icon.

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 dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/studio-ethos.json

Prefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/agency/agency18.tsx instead.

Usage

The file also exports agency18Demo, 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 { Agency18, agency18Demo } from "@/components/blocks/agency/agency18";

export default function Page() {
  return <Agency18 {...agency18Demo} />;
}

Props

PropTypeDefaultDescription
statementReactNodenoneLarge bold ethos statement in the left column; can include embedded emphasis spans.
commitmentsCommitment[]noneConcrete commitment rows rendered in the right column, each with a check icon.
classNamestringnoneExtra classes for the outer section element.

Types

type Commitment = {
  text: string;
};

Behavior notes

  • Fully static server component; no interactivity.
  • The check icon (`CheckCircle2` from lucide-react) is hardcoded in the component for every commitment row, not passed as a prop, since a component reference can't safely be serialized as block data.