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

Careers38: Work Perks Bento Grid

A centered header (optional badge, <strong>-aware heading, and description) above a responsive bento grid of perk cards, where each item renders either as an image card with a hover-zoom cover photo or as an icon card with a rounded primary-tinted glyph, and any item can span two columns.

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

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/careers38?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/careers38.tsx, plus the badge shadcn/ui primitive it uses for the section eyebrow.

Quick start

The installed file exports careers38Demo alongside the block: the exact props behind the preview above. Spread it to get a working perks grid in one line.

tsx
import { Careers38, careers38Demo } from "@/components/beste/block/careers38";

export default function Page() {
  return <Careers38 {...careers38Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Dumbbell, Laptop } from "lucide-react";
import { Careers38 } from "@/components/beste/block/careers38";

export default function Page() {
  return (
    <Careers38
      badge={{ label: "Perks", variant: "secondary" }}
      heading="Why you'll <strong>love it</strong> here"
      description="The things that make working here genuinely enjoyable."
      items={[
        {
          span: 2,
          title: "Quarterly Team Offsites",
          description: "A week together in a new city every quarter.",
          image: { src: "/offsite.jpg", alt: "Team offsite" },
        },
        { icon: Dumbbell, title: "Wellness Stipend", description: "Monthly health budget." },
        { icon: Laptop, title: "Latest Equipment", description: "MacBook Pro and any accessories." },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Optional eyebrow badge above the heading
headingstringSection heading, supports inline <strong>
descriptionstringSub-heading paragraph under the heading
itemsPerkCard[][]Cards rendered in the bento grid
classNamestringExtra classes for the outer <section>
ts
type PerkCard = {
  title: string;
  description?: string;
  icon?: LucideIcon;
  image?: { src: string; alt: string };
  span?: number;
};

Behavior notes

More Careers blocks

View all Careers
PRO

careers9

Employee Benefits Grid

Benefits and perks showcase with icon cards in a responsive grid. Highlights company offerings like health, remote work, and growth opportunities.

PRO

careers41

Benefits & Perks

Studio benefits grid with an accent highlight and icon cards.

PRO

careers4

Perks & Open Positions

Combined perks and job listings section with benefits grid and open positions list. Ideal for complete career pages.

PRO

careers2

Job Openings Grid

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

PRO

careers11

Culture & Values

Company values grid with icon cards and employee testimonial quote. Showcases team culture and work philosophy.

PRO

careers18

Department Overview Grid

Department cards with team lead, headcount, open roles badge, and links. Helps candidates explore teams before applying.