Team Events Gallery

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

PRO

A centered header (optional badge, heading, and description) above a responsive one-to-three-column grid of photo cards, each rendering an aspect-video cover image that scales up on hover plus a small title and optional caption, built to showcase company events, offsites, and team culture.

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

Base UI flavor

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

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

Quick start

The installed file exports careers29Demo alongside the block: the exact props behind the preview above. Spread it to get a working events gallery in one line.

tsx
import { Careers29, careers29Demo } from "@/components/beste/block/careers29";

export default function Page() {
  return <Careers29 {...careers29Demo} />;
}

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

tsx
import { Careers29 } from "@/components/beste/block/careers29";

export default function Page() {
  return (
    <Careers29
      badge={{ label: "Team Life", variant: "secondary" }}
      heading="Events & <strong>offsites</strong>"
      description="Some of the moments that bring us together."
      items={[
        {
          image: { src: "/photos/offsite.jpg", alt: "Team hiking on offsite" },
          title: "Annual Company Offsite",
          description: "Three days in the mountains.",
        },
        {
          image: { src: "/photos/hackathon.jpg", alt: "Team at hackathon" },
          title: "Hackathon Week",
          description: "48 hours to build anything.",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Optional eyebrow badge above the heading
headingstringSection heading, supports inline <strong>
descriptionstringSupporting paragraph below the heading
itemsEventPhoto[][]Photo cards rendered in the grid
classNamestringExtra classes for the outer <section>
ts
type EventPhoto = {
  image?: { src: string; alt: string };
  title: string;
  description?: string;
};

Behavior notes

More Careers blocks

View all Careers
PRO

careers14

Meet the Team Gallery

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

PRO

careers30

Team Blog Highlights

Engineering and team blog article preview cards with images, excerpts, and authors. Showcases technical depth and knowledge sharing culture.

PRO

careers7

Culture Stats with Positions

Team culture stats bar followed by detailed job position cards. Combines social proof with open roles listing.

PRO

careers11

Culture & Values

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

PRO

careers13

Office Locations Grid

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

PRO

careers32

Alumni Network Showcase

Former employee showcase with career progression from company role to current position. Demonstrates the company as a career launchpad.