Community SessionsPRO

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.

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 Now

Installation

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

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

Base UI flavor

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

tsx
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:

tsx
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

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
eventsCommunityEvent[][]Upcoming sessions as linked rows
hostTitlestringHeading under the host card
hostBodystringParagraph under that heading
mediaReactNodeLive 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
classNamestringExtra classes for the outer section
ts
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

More Social blocks

View all Social
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.

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.

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

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

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.

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.

Markdown version