# 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/social52. 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. Community Sessions

# Community Sessions[PRO](/pricing)

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.

ViewCodeDocs

Base UI

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

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

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

**Base UI flavor**

bashCopy

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

This installs the block to `components/beste/block/social52.tsx`, the `card31` person piece it floats on the tile (installed to `components/beste/piece/card31.tsx`), and the `badge23` and `button21` components it uses for the eyebrow and the action.

### Quick start

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

tsxCopy

```
import { Social52, social52Demo } from "@/components/beste/block/social52";

export default function SessionsPage() {
  return <Social52 {...social52Demo} />;
}
```

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

tsxCopy

```
import { Card31 } from "@/components/beste/piece/card31";
import { Social52 } from "@/components/beste/block/social52";

export default function SessionsPage() {
  return (
    <Social52
      badge={{ label: "Coming up" }}
      heading="Open sessions anyone can sit in on"
      description="No registration wall and no recording gate."
      events={[
        {
          month: "May",
          day: "22",
          title: "Office hours",
          description: "An open call with two engineers and no agenda.",
          format: "Online, 45 minutes",
          seats: "12 of 40 seats left",
          href: "/sessions/office-hours",
        },
        {
          month: "Jun",
          day: "19",
          title: "Multi-site roundtable",
          description: "For managers running four or more sites.",
          format: "Bristol, 2 hours",
          seats: "3 of 12 seats left",
          href: "/sessions/roundtable",
        },
      ]}
      hostTitle="Hosted by someone who builds it"
      hostBody="Sessions are run by engineers rather than by a community manager."
      media={
        <Card31
          avatar={{ src: "/people/priya.jpg", alt: "Portrait of Priya Nandan" }}
          name="Priya Nandan"
          role="Hosting the next session"
          status="22 May, 14:00 UK"
          availability="soon"
          rows={[{ label: "Format", value: "Open call, 45 min" }]}
        />
      }
      image={{ src: "/backdrops/green.jpg", alt: "Deep green gradient backdrop" }}
      button={{ label: "See every session", href: "/sessions" }}
    />
  );
}
```

### 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            |
| events      | CommunityEvent\[\]              | \[\]    | Upcoming sessions as linked rows                          |
| hostTitle   | string                          | –       | Heading under the host card                               |
| hostBody    | string                          | –       | Paragraph under that heading                              |
| media       | ReactNode                       | –       | Live asset on the sticky tile, card31 in the demo         |
| image       | { src: string; alt: string }    | –       | Backdrop behind the media tile                            |
| button      | { label: string; href: string } | –       | Outline action under the list                             |
| className   | string                          | –       | Extra classes for the outer section                       |

tsCopy

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

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

type CommunityEvent = {
  month: string;
  day: string;
  title: string;
  description: string;
  format: string;
  seats: string;
  href: string;
};
```

### Behavior notes

* `month` and `day` are separate strings rather than a parsed date, which is what lets the block render the calendar block without any date library and keeps server and client output identical.
* The day uses `tabular-nums` inside a fixed `size-14` tile, so the blocks stay the same size whatever the digits.
* `format` and `seats` are joined into one line with a middle dot, so both are required on every event. `seats` is free text, carrying either a count or the words "Seats available".
* Rows are whole `Link` elements, stacking on mobile and switching to a row with the date tile beside the copy from `sm`.
* The `sm:px-4` on rows means the hover fill extends past the text only once the row is horizontal.
* The host column is `lg:sticky lg:top-24 lg:self-start`. The `self-start` is required, otherwise the column stretches to the row height and sticky has nothing to travel within.
* The host card and the first event are separate values, so keeping the card in step with the next session in the list is authoring work.
* Rows carry `border-t` with no closing rule, so the list flows into the action beneath it.

## More Social blocks

[View all Social](/blocks/social)

[](/block/social7)

PRO

social7

### Community Groups List

Group cards with cover images, member count, privacy indicators, category badges, and join buttons. Perfect for community discovery and group listings.

[](/block/social8)

PRO

social8

### Event Cards

Event listings with cover images, date/time, location, attendee previews, and RSVP buttons (Going/Interested). Perfect for event discovery and community calendars.

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

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