Office Locations Grid

Our Offices

Where we work

Our teams span the globe, working together across time zones to build exceptional products. Explore our office locations and find your fit.

San Francisco skyline

San Francisco

USA

HQ & Engineering

120+ team members

London cityscape

London

UK

EMEA Hub

45+ team members

Berlin skyline

Berlin

Germany

Design Studio

30+ team members

Tokyo cityscape

Tokyo

Japan

APAC Office

25+ team members

Toronto skyline

Toronto

Canada

Growth Team

35+ team members

Sydney harbor

Sydney

Australia

Support Center

20+ team members

About this block

Office Locations GridPRO

Global office locations grid with city photos, team size, and role taglines. Showcases company presence worldwide.

Careers13: Office Locations Grid

A centered header (optional badge, <strong>-aware heading, and description) above a responsive card grid where each location renders a 16:9 cover image that scales on hover, a city name with an inline country label, a primary-colored tagline, and a team-size line.

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.

Upgrade Now

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

Base UI flavor

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

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

Quick start

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

tsx
import { Careers13, careers13Demo } from "@/components/beste/block/careers13";

export default function CareersPage() {
  return <Careers13 {...careers13Demo} />;
}

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

tsx
import { Careers13 } from "@/components/beste/block/careers13";

export default function CareersPage() {
  return (
    <Careers13
      badge={{ label: "Our Offices", variant: "secondary" }}
      heading="Where we <strong>work</strong>"
      description="Our teams span the globe, working together across time zones."
      items={[
        {
          image: { src: "/offices/sf.jpg", alt: "San Francisco skyline" },
          city: "San Francisco",
          country: "USA",
          tagline: "HQ & Engineering",
          teamSize: "120+ team members",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Section eyebrow badge above the heading
headingstringSection heading, supports inline <strong>
descriptionstringSupporting paragraph under the heading
itemsLocationItem[][]Location cards rendered in the grid
classNamestringExtra classes for the outer <section>
ts
type LocationItem = {
  image?: { src: string; alt: string };
  city: string;
  country?: string;
  tagline?: string;
  teamSize?: string;
};

Behavior notes

  • The entire header block (badge, heading, description) is conditionally rendered and disappears when all three props are absent, so the grid can stand alone.
  • heading is injected via dangerouslySetInnerHTML, and only inline <strong> picks up the primary color and semibold weight through the [&>strong] selectors; pass only trusted markup.
  • The badge falls back to the "default" variant when badge.variant is omitted.
  • Cards are keyed by array index, not a stable id, so reordering or filtering items can remount the wrong nodes.
  • The grid is fixed at one column on mobile, two at sm, and three at lg; there is no prop to change the column count.
  • Each card image sits in an aspect-video frame and scales to 1.05 on card hover via the scoped group/careers13; a card with no image simply renders the text block with no placeholder.
  • country, tagline, and teamSize are each optional per item and are omitted individually when missing; there are no interactive elements, links, or callbacks on the cards.

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

careers14

Meet the Team Gallery

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

PRO

careers31

Role Comparison Table

Side-by-side role comparison grid showing team, skills, experience, and salary for different positions. Responsive table-to-card layout.

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

careers18

Department Overview Grid

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

PRO

careers29

Team Events Gallery

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