Community Photo WallFREE

A community gallery laid out as a masonry of customer photographs at mixed heights, each captioned with what is happening and the practice it came from.

Social57: Community Photo Wall

A community gallery laid out as a masonry of customer photographs at mixed heights, each captioned with what is happening and the practice it came from.

Free block

This block is free. No license or account is required: install it with the CLI and use it in unlimited projects.

Installation

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/social57"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/social57"

This installs the block to components/beste/block/social57.tsx plus the badge23 and button21 components it uses for the eyebrow and the closing action.

Quick start

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

tsx
import { Social57, social57Demo } from "@/components/beste/block/social57";

export default function GalleryPage() {
  return <Social57 {...social57Demo} />;
}

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

tsx
import { Social57 } from "@/components/beste/block/social57";

export default function GalleryPage() {
  return (
    <Social57
      badge={{ label: "In the wild" }}
      heading="Photographs from rooms we did not decorate"
      description="Sent in by practices, published with their permission."
      frames={[
        {
          src: "/wall/go-live.jpg",
          alt: "A clinician smiling in a bright clinic",
          caption: "Go-live morning, and nothing on fire",
          place: "Bramble Health, Bristol",
          tall: true,
        },
        {
          src: "/wall/handover.jpg",
          alt: "Two colleagues talking in a corridor",
          caption: "The handover that used to be a phone call",
          place: "Kingsway Clinic, Leeds",
        },
      ]}
      closing="Have one worth sending? We publish with a credit and never without asking."
      button={{ label: "Send us a photograph", href: "/contact" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow above the hairline rule, rendered through Badge23
headingstringSection heading in the left column of the header
descriptionstringSupporting paragraph, right-aligned from md up
framesFrame[][]Photographs with captions, laid out as a masonry
closingstringPermission policy beside the closing action
button{ label: string; href: string }Outline submission action
classNamestringExtra classes for the outer section
ts
type ActionLink = {
  label: string;
  href: string;
};

type Frame = {
  src: string;
  alt: string;
  caption: string;
  place: string;
  tall?: boolean;
};

Behavior notes

More Social blocks

View all Social
PRO

social53

Contributor Wall

A community credit section opening on three hairline figures, then naming each contributor in a hairline matrix of cards with their practice, what they changed, and how many reports they filed.

PRO

social58

Response Wall With Platform Filter

A masonry of what readers wrote back, disagreements included, filtered by platform pills whose counts come from the responses themselves, over a hairline row of accounts to follow.

FREE

social48

Community Channels

A community section listing four linked places to join as full-width hairline rows, each with an icon tile, a description, a light membership figure, and an arrow that shifts on hover.

PRO

social50

Featured Post And Replies

A social section that gives one post an image tile of its own, floating a live post card with its engagement counts, beside the replies it drew as linked hairline rows.

PRO

social46

Community Card

Community group card with cover image, privacy status, member/post counts, topic tags, and join button. Perfect for community discovery and group suggestions.

PRO

social52

Community Sessions

An upcoming sessions list with a date block, format, and remaining seats on each linked hairline row, beside a column that sticks and floats a live card for whoever is hosting next.

Markdown version