# Beste UI

> Beautiful, accessible blocks, pieces and components for shadcn/ui and Tailwind CSS, built for React and Next.js. Install one with the shadcn CLI and the code is yours to edit: no runtime dependency, nothing to upgrade.

Markdown rendition of https://ui.beste.co/block/social50. Every page on the site has one: add `.md` to any address, or send `Accept: text/markdown`.

Last updated: 2026-08-03

Whole catalog for LLMs: https://ui.beste.co/llms.txt. Registry index: https://ui.beste.co/r/registry.json

---
1. /
2. [Blocks](/blocks)
3. /
4. [Social](/blocks/social)
5. /
6. Featured Post And Replies

# Featured Post And Replies[PRO](/pricing)

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.

ViewCodeDocs

Base UI

![](https://oud.pics/sm/l/npm.svg)`npx shadcn add https://ui.beste.co/r-base/social50`

## 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.

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 NowUpgrade Now](/pricing)

### Installation

Swap `YOUR_EMAIL` and `YOUR_KEY` for the email and license key on your account. Find your license key on your [account page](/account).

**Radix flavor**

bashCopy

```
npx shadcn add "https://ui.beste.co/r/social50?email=YOUR_EMAIL&license_key=YOUR_KEY"
```

**Base UI flavor**

bashCopy

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

This installs the block to `components/beste/block/social50.tsx`, the `socialproof27` post piece it floats on the tile (installed to `components/beste/piece/socialproof27.tsx`), and the `badge23` component it uses for the eyebrow.

### Quick start

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

tsxCopy

```
import { Social50, social50Demo } from "@/components/beste/block/social50";

export default function ThreadPage() {
  return <Social50 {...social50Demo} />;
}
```

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

tsxCopy

```
import { Social50 } from "@/components/beste/block/social50";
import { Socialproof27 } from "@/components/beste/piece/socialproof27";

export default function ThreadPage() {
  return (
    <Social50
      badge={{ label: "The thread" }}
      heading="One post, and the replies that came after it"
      description="A practice manager described her first Monday. What followed is more persuasive than anything we could write."
      media={
        <Socialproof27
          avatar={{ src: "/people/tom.jpg", alt: "Portrait of Tom Ashby" }}
          name="Tom Ashby"
          handle="@tomashby"
          body="Four clinics, one waiting list, and the first Monday in years where nobody rang round."
          time="2h"
          replies="12"
          reposts="34"
          likes="218"
        />
      }
      image={{ src: "/backdrops/blue.jpg", alt: "Soft blue gradient backdrop" }}
      featuredNote="Posted the Monday after the second site went live."
      repliesTitle="What other practices said back"
      replies={[
        {
          name: "Elena Rourke",
          handle: "@elenarourke",
          avatar: { src: "/people/elena.jpg", alt: "Portrait of Elena Rourke" },
          body: "Same here. The waiting list backfill is the bit nobody demos.",
          href: "https://example.com/reply/1",
        },
      ]}
    />
  );
}
```

### Props

| Prop         | Type                         | Default | Description                                               |
| ------------ | ---------------------------- | ------- | --------------------------------------------------------- |
| badge        | { label: string }            | –       | Eyebrow above the hairline rule, rendered through Badge23 |
| heading      | string                       | –       | Section heading in the left column of the header          |
| description  | string                       | –       | Supporting paragraph, right-aligned from md up            |
| media        | ReactNode                    | –       | Live asset on the tile, socialproof27 in the demo         |
| image        | { src: string; alt: string } | –       | Backdrop behind the media tile                            |
| featuredNote | string                       | –       | Context line under the tile                               |
| repliesTitle | string                       | –       | Heading above the reply list                              |
| replies      | Reply\[\]                    | \[\]    | Linked replies as hairline rows                           |
| className    | string                       | –       | Extra classes for the outer section                       |

tsCopy

```
type TileImage = {
  src: string;
  alt: string;
};

type Reply = {
  name: string;
  handle: string;
  avatar: { src: string; alt: string };
  body: string;
  href: string;
};
```

### Behavior notes

* The featured post lives entirely inside the `socialproof27` piece, including its engagement counts, while replies are rendered by the block. That split is deliberate: the featured post is an artefact, the replies are a list.
* `featuredNote` is where the provenance goes, saying when the post appeared and that it was unsolicited. That is the sentence that makes the section credible.
* Replies carry a name and a handle in one line, with the handle in the muted weight, so the pair reads as one attribution rather than two fields.
* Reply rows use `min-w-0`, so a long body wraps inside the row rather than pushing the avatar out of alignment.
* Replies deliberately omit engagement counts. Only the featured post carries them, which keeps the visual weight where the argument is.
* Rows are whole `Link` elements with a hover fill, each pointing at its own reply.
* Rows carry `border-t` with no closing rule, so the list flows into the section's bottom padding.

## More Social blocks

[View all Social](/blocks/social)

[](/block/social49)

PRO

social49

### Social Post Grid

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.

[](/block/social2)

PRO

social2

### Social Post Card

Social media post with author info, text content, image, and interactive like/comment/share/bookmark buttons with counts. Perfect for feed-style content displays.

[](/block/social54)

PRO

social54

### Inverted Follow Panel

A follow section held in one dark panel, listing each account as a linked hairline row with what gets posted there and a light follower figure.

[](/block/social58)

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.

[](/block/social46)

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.

[](/block/social56)

PRO

social56

### Referral Programme

A referral section walking through three numbered steps and the full terms as a hairline table, beside a column that sticks and floats a live credit card on an image tile.

## Ship the interface, keep the code.

New blocks, pieces and components every week. Install one with a command and it is yours to edit. No runtime dependency, no upgrade path to fight.

[Browse the libraryBrowse the library](/blocks)[See pricingSee pricing](/pricing)

### Library

* [Blocks](/blocks)
* [Pages](/pages)
* [Pieces](/pieces)
* [Components](/components)
* [Search](/search)

### Learn

* [Docs](/docs)
* [AI & MCP](/docs/mcp)
* [Blog](/blog)
* [Free tools](/tools)
* [What's new?](/changelog)
* [Website Builder](https://beste.co)

### More

* [Pricing](/pricing)
* [Referrals](/referrals)
* [License](/license)
* [GitHub](https://github.com/beste-co/beste-ui)

### Shadcn Blocks

* [Shadcn Hero Blocks](/blocks/hero)
* [Shadcn Feature Blocks](/blocks/feature)
* [Shadcn Pricing Blocks](/blocks/pricing)
* [Shadcn CTA Blocks](/blocks/cta)
* [Shadcn FAQ Blocks](/blocks/faq)
* [Shadcn About Blocks](/blocks/about)
* [Shadcn Stats Blocks](/blocks/stats)
* [Shadcn Footer Blocks](/blocks/footer)
* [Shadcn Navigation Blocks](/blocks/navigation)
* [Shadcn Auth Blocks](/blocks/auth)
* [Shadcn Ecommerce Blocks](/blocks/ecommerce)
* [Shadcn Portfolio Blocks](/blocks/portfolio)
* [Shadcn Showcase Blocks](/blocks/showcase)
* [Shadcn Careers Blocks](/blocks/careers)
* [Shadcn Onboarding Blocks](/blocks/onboarding)
* [Shadcn Coming Soon Blocks](/blocks/coming-soon)
* [Shadcn Post Blocks](/blocks/post)
* [Shadcn Legal Blocks](/blocks/legal)
* [Shadcn Workflow Blocks](/blocks/workflow)
* [Shadcn News Blocks](/blocks/news)

© 2026, [Beste](https://beste.co). All rights reserved.