Work environment section with equipment provisions and work policies. Two-column layout showing what the company provides and how the team operates.
A centered eyebrow badge, <strong>-highlighted heading, and lead paragraph above a responsive two-column card grid, where each card renders a group title and a vertical stack of icon-plus-text rows describing what the company provides and how the team works.
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/careers25?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/careers25?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/careers25.tsx, plus the badge shadcn/ui primitive it uses for the section eyebrow.
The installed file exports careers25Demo alongside the block: the exact props behind the preview above. Spread it to get a working work-setup section in one line.
import { Careers25, careers25Demo } from "@/components/beste/block/careers25";
export default function CareersPage() {
return <Careers25 {...careers25Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Monitor, Wifi } from "lucide-react";
import { Careers25 } from "@/components/beste/block/careers25";
export default function CareersPage() {
return (
<Careers25
badge={{ label: "Work Setup", variant: "secondary" }}
heading="Set up for <strong>success</strong>"
description="Everything you need to do your best work, wherever you are."
groups={[
{
title: "What We Provide",
items: [
{ icon: Monitor, title: "Latest Hardware", description: "MacBook Pro and displays shipped before day one." },
{ icon: Wifi, title: "Internet Stipend", description: "Monthly reimbursement for high-speed internet." },
],
},
]}
/>
);
}| 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 |
groups | SetupGroup[] | [] | Cards rendered in the two-column grid |
className | string | – | Extra classes for the outer <section> |
type SetupItem = {
icon?: LucideIcon;
title: string;
description?: string;
};
type SetupGroup = {
title: string;
items?: SetupItem[];
};useState, and no interactive elements, so nothing needs to be wired up after installation.badge, heading, or description is truthy.heading is injected via dangerouslySetInnerHTML, and only its inline <strong> children are restyled (via [&>strong]:text-primary); pass trusted strings, since arbitrary HTML is rendered as-is.badge.variant falls back to "default" when omitted; groups defaults to [] and group.items defaults to [], so a group with no items renders just its title.lg breakpoint, regardless of how many groups are passed; more than two groups simply wrap onto additional rows.item.icon is omitted, the leading icon slot is skipped entirely and the text starts flush left; item.description is likewise only rendered when present.groups or items between renders may confuse React's reconciliation.careers2
Job openings grid with department badges, location tags, and apply buttons. Card-based layout for career pages.
careers3
Department-grouped job listings with minimal row layout. Jobs organized by team with location and type indicators.
careers38
Bento-style grid of work perks with featured image card and icon cards. Mixed layout showcasing PTO, wellness, equipment, and team events.
careers17
Job application form with input fields, file upload area, and position summary sidebar. Complete apply page layout for career sites.
careers14
Team member photo grid with names and roles. Square portrait layout for showcasing leadership and team composition.
careers29
Photo gallery of company events, offsites, and team activities in masonry layout. Visual showcase of team culture and community.