Engineering Principles

Numbered engineering principles list with large counters and descriptions. Showcases team philosophy on shipping, ownership, and simplicity.

PRO

Careers34: Engineering Principles

A centered principles section: an optional eyebrow badge, a heading with inline <strong> accent, and a lead paragraph sit above a single-column list where each item pairs a large zero-padded counter with a bold title and an optional description, divided by borders that drop off the final row.

Upgrade to Pro

Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.

Installation

Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/careers34?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/careers34?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/careers34.tsx, plus the badge shadcn/ui primitive it uses for the section eyebrow.

Quick start

The installed file exports careers34Demo alongside the block: the exact props behind the preview above. Spread it to get a working principles list in one line.

tsx
import { Careers34, careers34Demo } from "@/components/beste/block/careers34";

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

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Careers34 } from "@/components/beste/block/careers34";

export default function Page() {
  return (
    <Careers34
      badge={{ label: "How We Build", variant: "secondary" }}
      heading="Our <strong>engineering principles</strong>"
      description="The beliefs and practices that guide how our team ships software."
      items={[
        {
          title: "Ship Early, Iterate Fast",
          description: "We prefer shipping a smaller version sooner over waiting for perfection.",
        },
        { title: "Own What You Build" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Optional eyebrow badge above the heading
headingstringSection heading, supports inline <strong>
descriptionstringLead paragraph under the heading
itemsPrincipleItem[][]Numbered principle rows
classNamestringExtra classes for the outer <section>
ts
type PrincipleItem = {
  title: string;
  description?: string;
};

Behavior notes

More Careers blocks

View all Careers
PRO

careers30

Team Blog Highlights

Engineering and team blog article preview cards with images, excerpts, and authors. Showcases technical depth and knowledge sharing culture.

PRO

careers11

Culture & Values

Company values grid with icon cards and employee testimonial quote. Showcases team culture and work philosophy.

PRO

careers3

Department-Grouped Positions

Department-grouped job listings with minimal row layout. Jobs organized by team with location and type indicators.

PRO

careers1

Job Listings List

Job listings section with role cards showing department, location, and employment type. Clean list layout with hover effects and apply buttons.

PRO

careers7

Culture Stats with Positions

Team culture stats bar followed by detailed job position cards. Combines social proof with open roles listing.

PRO

careers14

Meet the Team Gallery

Team member photo grid with names and roles. Square portrait layout for showcasing leadership and team composition.