Remote Work Setup

Work environment section with equipment provisions and work policies. Two-column layout showing what the company provides and how the team operates.

PRO

Careers25: Remote Work Setup

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.

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/careers25?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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." },
          ],
        },
      ]}
    />
  );
}

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
groupsSetupGroup[][]Cards rendered in the two-column grid
classNamestringExtra classes for the outer <section>
ts
type SetupItem = {
  icon?: LucideIcon;
  title: string;
  description?: string;
};

type SetupGroup = {
  title: string;
  items?: SetupItem[];
};

Behavior notes

More Careers blocks

View all Careers
PRO

careers2

Job Openings Grid

Job openings grid with department badges, location tags, and apply buttons. Card-based layout for career pages.

PRO

careers3

Department-Grouped Positions

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

PRO

careers38

Work Perks Bento Grid

Bento-style grid of work perks with featured image card and icon cards. Mixed layout showcasing PTO, wellness, equipment, and team events.

PRO

careers17

Job Application Form

Job application form with input fields, file upload area, and position summary sidebar. Complete apply page layout for career sites.

PRO

careers14

Meet the Team Gallery

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

PRO

careers29

Team Events Gallery

Photo gallery of company events, offsites, and team activities in masonry layout. Visual showcase of team culture and community.