# 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/social54. 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. Inverted Follow Panel

# Inverted Follow Panel[PRO](/pricing)

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.

ViewCodeDocs

Base UI

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

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

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/social54?email=YOUR_EMAIL&license_key=YOUR_KEY"
```

**Base UI flavor**

bashCopy

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

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

### Quick start

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

tsxCopy

```
import { Social54, social54Demo } from "@/components/beste/block/social54";

export default function FollowPage() {
  return <Social54 {...social54Demo} />;
}
```

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

tsxCopy

```
import { Social54 } from "@/components/beste/block/social54";

export default function FollowPage() {
  return (
    <Social54
      badge={{ label: "Follow along" }}
      heading="Everywhere we post, and what we post there"
      description="Four accounts, four different jobs."
      accounts={[
        {
          network: "LinkedIn",
          handle: "sirius-care",
          posts: "Hiring, funding, and the occasional long write-up",
          followers: "8,410",
          href: "https://example.com/linkedin",
        },
        {
          network: "RSS",
          handle: "example.com/feed.xml",
          posts: "Every changelog entry and blog post, with no algorithm in between",
          followers: "3,120",
          href: "/feed.xml",
        },
      ]}
      note="We do not cross-post the same thing to all four."
      button={{ label: "Read the changelog instead", href: "/changelog" }}
    />
  );
}
```

### Props

| Prop        | Type                            | Default | Description                                                   |
| ----------- | ------------------------------- | ------- | ------------------------------------------------------------- |
| badge       | { label: string }               | –       | Eyebrow at the top of the panel, retoned for the dark surface |
| heading     | string                          | –       | Section heading on the panel                                  |
| description | string                          | –       | Supporting paragraph, right-aligned from md up                |
| accounts    | Account\[\]                     | \[\]    | Linked accounts as hairline rows                              |
| note        | string                          | –       | Closing note beside the action                                |
| button      | { label: string; href: string } | –       | Outline action, retoned for the dark surface                  |
| className   | string                          | –       | Extra classes for the outer section                           |

tsCopy

```
type ActionLink = {
  label: string;
  href: string;
};

type Account = {
  network: string;
  handle: string;
  posts: string;
  followers: string;
  href: string;
};
```

### Behavior notes

* `posts` is required on every account and is the reason the block exists: a follow section that lists networks without saying what appears on each is asking people to guess.
* No network logos are used, only names as text. That keeps the panel free of third-party marks and means adding a network needs no asset.
* The whole block is `bg-foreground`, so every text token inside is a fixed `background` value and hairlines use `border-background/20` rather than `border-border`.
* The row hover is `hover:bg-background/5` rather than `hover:bg-muted`, since a muted fill is invisible on an inverted surface.
* The single action carries an inline `border-background/30 text-background hover:bg-background/10` override on top of `tone="outline"`, for the same reason.
* Rows are whole `Link` elements in a four-track grid from `md`: network and handle, what gets posted, the follower count, then the arrow. Below `md` the arrow is entirely.
* The hover arrow uses a named group, `group/social54`, and its shift is wrapped in `motion-safe:`.
* Follower counts are strings using `tabular-nums`, so they can carry separators or abbreviations and still align.

## More Social blocks

[View all Social](/blocks/social)

[](/block/social50)

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.

[](/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/social48)

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.

[](/block/social9)

PRO

social9

### Follow Suggestions

User suggestions list with avatars, bios, mutual connections, interest tags, and follow/dismiss actions. Perfect for people-you-may-know sections and onboarding flows.

[](/block/social51)

PRO

social51

### Press Mentions

A coverage section listing each outlet against the line it published, as linked hairline rows with the writer and date, closing on a soft press pack panel.

[](/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.