Staaarter

Studio Manifesto

Oversized editorial manifesto statement with emphasized phrases, principle chips and a founder signature. A declarative, opinionated intro suited to an agency's About or Studio page.

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

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

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

Usage

The file also exports agency11Demo, 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 { Agency11, agency11Demo } from "@/components/blocks/agency/agency11";

export default function Page() {
  return <Agency11 {...agency11Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstringundefinedSmall uppercase label above the statement, e.g. "Manifesto".
statementReactNodenoneLarge manifesto statement; pass emphasized phrases wrapped in a styled span, e.g. <span className="text-primary">craft</span>.
principlesstring[]noneRow of secondary badges naming the studio's principles.
founderNamestringnoneFounder's name shown in a signature-style treatment.
founderRolestringnoneCaption under the founder's name, e.g. their title.
classNamestringnoneExtra classes for the outer section element.

Behavior notes

  • The statement accepts ReactNode so emphasis spans are authored directly into the demo content, matching About6's pattern; there is no runtime logic that detects or highlights phrases automatically.
  • The founder signature is styled with an italic heading font as a stand-in for a handwritten signature; it is static text, not an image of a real signature.
  • Entirely static: no button, form, or interactive element anywhere in the block.