Numbered engineering principles list with large counters and descriptions. Showcases team philosophy on shipping, ownership, and simplicity.
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.
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.
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
npx shadcn add "https://ui.beste.co/r/careers34?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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" },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Optional eyebrow badge above the heading |
heading | string | – | Section heading, supports inline <strong> |
description | string | – | Lead paragraph under the heading |
items | PrincipleItem[] | [] | Numbered principle rows |
className | string | – | Extra classes for the outer <section> |
type PrincipleItem = {
title: string;
description?: string;
};(badge || heading || description) guard, so passing none of the three renders the item list with no header at all.heading is injected via dangerouslySetInnerHTML, and the [&>strong] selector recolors any inline <strong> to text-primary; other markup is rendered as raw HTML with no sanitization.badge.variant falls back to "default" when omitted, even though the demo passes "secondary".String(index + 1).padStart(2, "0"), giving 01, 02, and so on; there is no manual number field, and the numbering counts past 09 into 10 without special casing.border-b with last:border-0 last:pb-0 last:mb-0, so the final item drops its divider and trailing spacing.item.description is optional and its <p> is conditionally rendered, so title-only rows collapse to just the counter and heading.careers30
Engineering and team blog article preview cards with images, excerpts, and authors. Showcases technical depth and knowledge sharing culture.
careers11
Company values grid with icon cards and employee testimonial quote. Showcases team culture and work philosophy.
careers3
Department-grouped job listings with minimal row layout. Jobs organized by team with location and type indicators.
careers1
Job listings section with role cards showing department, location, and employment type. Clean list layout with hover effects and apply buttons.
careers7
Team culture stats bar followed by detailed job position cards. Combines social proof with open roles listing.
careers14
Team member photo grid with names and roles. Square portrait layout for showcasing leadership and team composition.