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.
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.
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/social58?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/social58?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/social58.tsx and the badge6 component it uses for the eyebrow (installed to components/beste/component/badge6.tsx).
The installed file exports social58Demo alongside the block: the exact props behind the preview above. Spread it to get a working response wall in one line.
import { Social58, social58Demo } from "@/components/beste/block/social58";
export default function DiscussionPage() {
return <Social58 {...social58Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Social58 } from "@/components/beste/block/social58";
export default function DiscussionPage() {
return (
<Social58
eyebrow="The argument"
heading="What people said back"
description="These are the responses worth reading, including the ones that disagree."
allLabel="Everywhere"
reactions={[
{
platform: "Mastodon",
handle: "@rovaniemi",
avatar: { src: "/people/one.jpg", alt: "@rovaniemi" },
body: "Strong disagree on discovery being a paid line.",
about: "On: the estimate is design work",
href: "https://example.com/post",
},
]}
followLabel="Follow along"
channels={[{ platform: "Mastodon", handle: "@polaris", href: "https://example.com" }]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Badge6 label above the hairline rule |
heading | string | – | Section heading under the rule |
description | string | – | Supporting paragraph |
allLabel | string | – | Label on the unfiltered pill |
reactions | Reaction[] | [] | The responses themselves |
followLabel | string | – | Label on the accounts row |
channels | Channel[] | [] | Accounts to follow, under the wall |
className | string | – | Extra classes for the outer section |
type Reaction = {
platform: string;
handle: string;
avatar?: Avatar;
body: string;
about: string;
href: string;
};
type Channel = {
platform: string;
handle: string;
href: string;
};
type Avatar = {
src: string;
alt: string;
};reactions, and each count is that platform's share. Adding a response on a new platform adds its pill without touching the block.columns masonry with break-inside-avoid on each card, so cards of different heights pack without a layout library.Link out to the original post, and the line naming which piece it answers moves to the accent colour on hover.avatar is optional per response, so a reply from an account with no picture still renders cleanly.social50
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.
social53
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.
social57
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.
social49
A social proof grid of six linked post cards, each with an avatar, handle, timestamp, the post itself, and reply, repost, and like counts under a hairline.