Exhibition Wall HangPRO

Works of different sizes hung on one centre line inside a matted wall panel, each with its own label, opening a viewer that shows the piece in a mount beside a museum wall label of medium, dimensions and year.

Gallery12: Exhibition Wall Hang

Works hung on one centre line the way they would be in a room: mounted frames of different sizes and ratios, aligned through their middles, opening into a viewer with a proper wall label beside the picture.

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

Base UI flavor

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

This installs the block to components/beste/block/gallery12.tsx plus the badge7 eyebrow it uses.

Quick start

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

tsx
import { Gallery12, gallery12Demo } from "@/components/beste/block/gallery12";

export default function Page() {
  return <Gallery12 {...gallery12Demo} />;
}

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

tsx
import { Gallery12 } from "@/components/beste/block/gallery12";

export default function Page() {
  return (
    <Gallery12
      badge={{ label: "Now hanging" }}
      heading="Eight works, one wall, hung on a single line."
      dates="14 March to 2 June, Room One"
      works={[
        {
          src: "/works/fold.jpg",
          alt: "Folded paper work",
          title: "Fold, Unfolded",
          artist: "Marta Ekelund",
          medium: "Folded cotton paper",
          dimensions: "48 × 62 cm",
          year: "2024",
          size: "medium",
          ratio: "portrait",
        },
        {
          src: "/works/weight.jpg",
          alt: "Cast stone and steel work",
          title: "Weight, Held",
          artist: "Idris Kane",
          medium: "Cast stone and steel",
          dimensions: "31 × 31 cm",
          year: "2023",
          size: "small",
          ratio: "square",
        },
      ]}
      labels={{
        openLabel: "See this work",
        closeLabel: "Leave the work",
        previousLabel: "Previous work",
        nextLabel: "Next work",
        wallTitle: "Wall label",
        mediumTitle: "Medium",
        dimensionsTitle: "Dimensions",
        yearTitle: "Year",
        counterSeparator: "of",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow label rendered as a Badge7
headingstringSection heading in the header row
datesstringRun of the show, set opposite the heading
worksWork[][]Works on the wall, in hanging order
labelsGallery12Labels{}Fixed strings that are not content: viewer controls and the wall label's field titles
lightboxbooleantrueRender the built-in viewer; set false to leave the frames static
classNamestringExtra classes for the outer <section>
ts
type Work = {
  src: string;
  alt: string;
  title: string;
  artist: string;
  medium: string;
  dimensions: string;
  year: string;
  size?: WorkSize;
  ratio?: WorkRatio;
};

type WorkSize = "small" | "medium" | "large";
type WorkRatio = "portrait" | "square" | "landscape";

type Gallery12Labels = {
  openLabel?: string;
  closeLabel?: string;
  previousLabel?: string;
  nextLabel?: string;
  wallTitle?: string;
  mediumTitle?: string;
  dimensionsTitle?: string;
  yearTitle?: string;
  counterSeparator?: string;
};

Behavior notes

More Gallery blocks

View all Gallery
PRO

gallery23

Wall Scale Viewer

Works listed with the sizes they are printed at, opening a viewer that hangs the piece in a photographed room and scales it as you switch size pills, so the dimensions stop being an abstraction.

PRO

gallery15

Salon Hang Wall

Label-free salon wall where works of four different spans pack tightly into a matted panel, opening a passe-partout viewer whose full-height side margins are themselves the previous and next controls.

PRO

gallery18

Edition Inspector

Matted edition cards opening a viewer that keeps the whole sheet and its detail crops in one place: pill controls swap what the large frame shows while the side column holds process, sheet size and edition.

PRO

gallery14

Walkthrough Exhibition Rail

Long-scroll exhibition where every work sits in its own matted panel with a full label, beside a sticky rail whose numbered index follows the work in the middle of the screen and scrolls to any other on click.

PRO

gallery16

Artist Room Index

Exhibition split into artist rooms, each with a sticky statement column beside its works, opening a viewer that shows the chosen piece large with the next one waiting as a thumbnail you can step straight into.

PRO

gallery8

Photo Book Spread Viewer

Photographs presented as printed spreads on a soft panel: two plates share a page with a centre rule, round controls turn to the next spread, and a bar index below tracks how far through the book you are.