A centered careers section that groups open roles into department tabs: a header with an optional badge eyebrow, heading, and description sits above a shadcn Tabs bar whose first tab flattens every department's roles into one "All" list and whose remaining tabs each show a single department, with every role rendered as a bordered row showing title, location • type, and an arrow apply link.
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/careers44?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/careers44?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/careers44.tsx, plus the tabs shadcn/ui primitive it uses for the department filter bar.
The installed file exports careers44Demo alongside the block: the exact props behind the preview above. Spread it to get a working department-tabbed roles list in one line.
import { Careers44, careers44Demo } from "@/components/beste/block/careers44";
export default function CareersPage() {
return <Careers44 {...careers44Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Careers44 } from "@/components/beste/block/careers44";
export default function CareersPage() {
return (
<Careers44
eyebrow="Open Roles"
heading="Build the studio with us"
description="Find your department below."
allLabel="All"
departments={[
{
tabLabel: "Design",
roles: [
{
title: "Senior Brand Designer",
location: "Brooklyn, NY",
type: "Full-time",
href: "/jobs/senior-brand-designer",
},
],
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Badge6 eyebrow text above the heading; the badge is omitted when unset |
heading | string | – | Section heading; omitted when unset |
description | string | – | Supporting paragraph below the heading; omitted when unset |
allLabel | string | – | Label and value for the first tab that aggregates every department's roles |
departments | Department[] | [] | Department tabs, each with its own scoped role list |
className | string | – | Extra classes for the outer <section> |
type Role = {
title: string;
location: string;
type: string;
href: string;
};
type Department = {
tabLabel: string;
roles: Role[];
};allLabel for both its trigger label and its value; Tabs opens on defaultValue={allLabel}, so if allLabel is unset the default value is undefined and no tab is initially active.departments.flatMap((d) => d.roles), so it lists every role across every department in department order; adding a role to a department automatically adds it to the All list.tabLabel, which is used as the TabsTrigger and TabsContent value, so two departments sharing a tabLabel would collide.<a href={role.href}>, so navigation is native and there is no onSelect-style handler to intercept.aria-label={Apply for $} and animates its ArrowUpRight icon on hover; the location and type are joined by a literal • bullet.careers6
Tabbed job board with department filters using shadcn Tabs component. Browse positions by team with location and type details.
careers1
Job listings section with role cards showing department, location, and employment type. Clean list layout with hover effects and apply buttons.
careers18
Department cards with team lead, headcount, open roles badge, and links. Helps candidates explore teams before applying.
careers2
Job openings grid with department badges, location tags, and apply buttons. Card-based layout for career pages.