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.
A strip of portrait tiles running edge to edge with a one-pixel gap, opening into a viewer where the details live in a sheet that slides down out of the way so the picture can be seen whole.
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/gallery11?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/gallery11?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/gallery11.tsx plus the badge7 eyebrow it uses.
The installed file exports gallery11Demo alongside the block: the exact props behind the preview above. Spread it to get a working gallery in one line.
import { Gallery11, gallery11Demo } from "@/components/beste/block/gallery11";
export default function Page() {
return <Gallery11 {...gallery11Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Gallery11 } from "@/components/beste/block/gallery11";
export default function Page() {
return (
<Gallery11
badge={{ label: "Edge to edge" }}
heading="A strip that runs off both sides of the page."
frames={[
{
src: "/strip/fitting.jpg",
alt: "Garments in soft light",
caption: "Second fitting",
meta: "Antwerp, January",
detail: "Shot at four in the afternoon with the blinds half down.",
},
{
src: "/strip/seam.jpg",
alt: "Mark pressed into a seam",
caption: "Mark pressed into the seam",
meta: "Antwerp, January",
detail: "The only place the logo appears on the finished piece.",
},
]}
labels={{
openLabel: "Open this frame",
closeLabel: "Close the viewer",
previousLabel: "Previous frame",
nextLabel: "Next frame",
expandLabel: "Show the details",
collapseLabel: "Hide the details",
counterSeparator: "of",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow label rendered as a Badge7 |
heading | string | – | Centred section heading |
frames | Frame[] | [] | Pictures in the strip, in order |
labels | Gallery11Labels | {} | Fixed strings that are not content: viewer controls, sheet labels and the counter separator |
lightbox | boolean | true | Render the built-in viewer; set false to leave the frames static |
className | string | – | Extra classes for the outer <section> |
type Frame = {
src: string;
alt: string;
caption: string;
meta: string;
detail: string;
};
type Gallery11Labels = {
openLabel?: string;
closeLabel?: string;
previousLabel?: string;
nextLabel?: string;
expandLabel?: string;
collapseLabel?: string;
counterSeparator?: string;
};gap-1 and no radius keep them reading as one continuous band rather than a row of cards.translate-y-[calc(100%-4.5rem)] rather than disappearing, so its handle row stays on screen and the picture can be seen whole without leaving the viewer.aria-expanded and swaps its own label between the expand and collapse strings, so the state is announced rather than only drawn.object-contain across the whole viewport on a solid bg-foreground, so a tall frame is never cropped by the sheet.opacity-40 when they are not the open frame, marking position without a border.lightbox={false} disables every tile button and switches the cursor back to default, leaving the strip as a static band.gallery7
Two full-bleed image tracks scrolling in opposite directions under a centered statement, pausing together on hover, where any frame opens a framed viewer: the picture sits in a mount on a scrim with its caption, position and controls beneath it.
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.
gallery19
Inverted low-light room where staggered frames hang on a dark panel, opening a viewer with no chrome at all: the work fades up like a lamp on a dimmer, the caption follows it, and a dot rail walks the hang.
gallery5
Cinematic stage frame with the caption and frame counter set on a gradient at its foot, round arrow controls on the picture itself, and a scrolling filmstrip below where the inactive thumbnails sit back at low opacity.