Staaarter

Studio Culture

A studio culture section: a culture statement paragraph and a short list of icon-led tenets/values on one side, beside a three-image asymmetric collage (one tall image beside two stacked squares) on the other.

By Staaarter Team
Careers
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-culture.json

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

Usage

The file also exports careers42Demo, 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 { Careers42, careers42Demo } from "@/components/blocks/careers/careers42";

export default function Page() {
  return <Careers42 {...careers42Demo} />;
}

Props

PropTypeDefaultDescription
headingstring"Studio culture"Section heading.
statementstringnoneCulture statement paragraph.
tenetsCultureTenet[]noneIcon-led list of values/tenets.
tallImage{ src: string; alt: string }noneTall image spanning both collage rows.
topImage{ src: string; alt: string }noneTop-right square collage image.
bottomImage{ src: string; alt: string }noneBottom-right square collage image.
classNamestringnoneExtra classes for the outer section element.

Types

type CultureTenet = {
  icon: "curiosity" | "collaboration" | "craft";
  text: string;
};

Behavior notes

  • Fully static: the statement, tenets, and collage all render fixed demo data with no client-side state.
  • The collage is a 2-column CSS grid where the tall image spans both rows via row-span-2, not a real masonry layout engine.