A studio careers section with a header row (large heading, vertical divider, eyebrow badge, and an open-count label) above a bordered list of open roles, each row linking out to its href and showing the title, a department / location / type meta line separated by dot markers, a salary, and a hover-animated up-right arrow seal.
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/careers40?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/careers40?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/careers40.tsx.
The installed file exports careers40Demo alongside the block: the exact props behind the preview above. Spread it to get a working roles list in one line.
import { Careers40, careers40Demo } from "@/components/beste/block/careers40";
export default function CareersPage() {
return <Careers40 {...careers40Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Careers40 } from "@/components/beste/block/careers40";
export default function CareersPage() {
return (
<Careers40
label="Careers"
heading="Build the studio behind the work"
openingsLabel="7 open roles"
roles={[
{
title: "Senior Brand Designer",
department: "Design",
location: "New York, NY",
type: "Full-time",
salary: "$120k – $150k",
href: "/jobs/senior-brand-designer",
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
label | string | – | Eyebrow badge text next to the heading |
heading | string | – | Large section heading |
openingsLabel | string | – | Uppercase open-count label on the right of the header |
roles | Role[] | [] | Rows rendered in the open-roles list |
className | string | – | Extra classes for the outer <section> |
type Role = {
title: string;
department: string;
location: string;
type: string;
salary: string;
href: string;
};<a href={role.href}>; there is no click callback and no target/rel, so navigation is a full-page follow of the raw href.label badge and the vertical divider are gated behind the lg breakpoint (hidden lg:flex / hidden ... lg:block), so they never appear on smaller screens even when label is set.label and openingsLabel are each conditionally rendered: passing an empty or omitted value drops that element entirely rather than rendering blank space.salary is hidden below the sm breakpoint (hidden ... sm:block), so the arrow seal is the only right-side content on narrow viewports.index, and the department / location / type dot separators are static decorative spans, not derived from data, so all three meta fields always render even if a value is empty.group/careers40 class: the title shifts to text-primary and the arrow seal nudges up and right, but this is presentational only with no active/selected state tracked anywhere.roles in order with no max-height or scroll container.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.
careers46
A full featured-role posting with responsibilities, requirements and a sticky apply card.
careers4
Combined perks and job listings section with benefits grid and open positions list. Ideal for complete career pages.