Works on paper listed as ruled plan-chest drawers with their contents and a peek of the sheets, opening a stack where the top sheet lifts clear of the pile before dropping to the back and the next one rises into its place.
A plan chest read as a run of ruled drawers. Open one and the sheets sit offset behind each other; lifting the top sheet clears it off the pile before it drops to the back and the next one rises.
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.
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
npx shadcn add "https://ui.beste.co/r/gallery24?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/gallery24?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/gallery24.tsx plus the badge7 eyebrow it uses.
The installed file exports gallery24Demo alongside the block: the exact props behind the preview above. Spread it to get a working gallery in one line.
import { Gallery24, gallery24Demo } from "@/components/beste/block/gallery24";
export default function Page() {
return <Gallery24 {...gallery24Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Gallery24 } from "@/components/beste/block/gallery24";
export default function Page() {
return (
<Gallery24
badge={{ label: "Plan chest" }}
heading="Four drawers, opened one sheet at a time."
description="Works on paper live flat and unframed."
drawers={[
{
label: "Drawer one",
contents: "Letterpress and type specimens, 2024 to 2026",
sheets: [
{
src: "/chest/one-01.jpg",
alt: "Letterpress sheet",
title: "Alphabet for a Quiet Room",
artist: "Hélène Marchal",
medium: "Letterpress on rag paper",
},
{
src: "/chest/one-02.jpg",
alt: "Specimen sheets",
title: "Sheets, Before Binding",
artist: "Hélène Marchal",
medium: "Ink on uncoated stock",
},
],
},
]}
labels={{
openLabel: "Open this drawer",
closeLabel: "Close the drawer",
nextLabel: "Lift the top sheet off",
counterSeparator: "of",
hint: "Lift the top sheet and the next one rises into its place.",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow label rendered as a Badge7 |
heading | string | – | Section heading in the left header column |
description | string | – | Supporting paragraph in the right header column |
drawers | Drawer[] | [] | Drawers in the chest, each with its own sheets |
labels | Gallery24Labels | {} | Fixed strings that are not content: viewer controls, the counter separator and the hint |
lightbox | boolean | true | Render the built-in viewer; set false to leave the drawers static |
className | string | – | Extra classes for the outer <section> |
type Drawer = {
label: string;
contents: string;
sheets: Sheet[];
};
type Sheet = {
src: string;
alt: string;
title: string;
artist: string;
medium: string;
};
type Gallery24Labels = {
openLabel?: string;
closeLabel?: string;
nextLabel?: string;
counterSeparator?: string;
hint?: string;
};LIFT_MS), so the visual and the state change stay in step if the timing is edited.lightbox={false} disables every drawer row and switches the cursor back to default, leaving the chest as a static index.gallery23
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.
gallery18
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.
gallery11
Edge-to-edge strip of tall frames opening a viewer where the picture fills the screen and the caption, note and thumbnails sit in a sheet that slides off the bottom when you want the frame uncovered.
gallery13
Printed-catalogue layout pairing a numbered index of works with a sticky matted plate and its note, where an expand seal opens the plate alone on a dark ground with only its number and the arrows.