Staaarter

Engineering Principles

A statement-of-values section for engineering culture pages: a numbered list of principles, each paired with a large muted decorative number, a short heading, and a supporting description.

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

npx shadcn add https://staaarter.com/r/engineering-principles.json

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

Usage

The file also exports careers34Demo, 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 { Careers34, careers34Demo } from "@/components/blocks/careers/careers34";

export default function Page() {
  return <Careers34 {...careers34Demo} />;
}

Props

PropTypeDefaultDescription
headingstringnoneSection heading.
descriptionstringnoneSection subheading.
principlesPrinciple[]noneList of principles to render.
classNamestringnoneExtra classes for the outer section element.

Types

interface Principle {
  number: string;
  heading: string;
  description: string;
}

Behavior notes

  • Fully static: the principle numbers are fixed demo strings, nothing is computed or interactive.