Referral LeaderboardPRO

A pre-launch referral leaderboard with a square eyebrow, a heading, and a bordered ranked list of members with avatars and invite counts, one row highlighted as the viewer, above a dark seal share button.

ComingSoon37: Referral Leaderboard

A pre-launch referral leaderboard built on a single accent color, with a square eyebrow, a heading, a supporting line, and a bordered ranked list of members with avatars and invite counts, one row highlighted as the viewer, above a dark seal share button.

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

Base UI flavor

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

This installs the block to components/beste/block/comingsoon37.tsx.

Quick start

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

tsx
import { ComingSoon37, comingsoon37Demo } from "@/components/beste/block/comingsoon37";

export default function Page() {
  return <ComingSoon37 {...comingsoon37Demo} />;
}

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

tsx
import { ComingSoon37 } from "@/components/beste/block/comingsoon37";

export default function Page() {
  return (
    <ComingSoon37
      label="Referral Leaderboard"
      heading="Climb the list, skip the line."
      description="Every friend who joins on your link moves you up."
      entries={[
        {
          rank: "1",
          name: "Priya Nadar",
          referrals: "128",
          avatar: { src: "/people/priya.jpg", alt: "Leaderboard member" },
        },
        {
          rank: "18",
          name: "You",
          referrals: "12",
          avatar: { src: "/people/you.jpg", alt: "Your place on the leaderboard" },
          isYou: true,
        },
      ]}
      button={{ label: "Share Your Link", href: "/waitlist" }}
      labels={{ referralsSuffix: "invited" }}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringSquare eyebrow rendered above the heading via Badge6
labelsComingSoon37Labels{}Suffix appended after each member's invite count
headingstringSection heading
descriptionstringSupporting paragraph under the heading
entriesLeaderboardEntry[][]Ranked member rows with avatars and invite counts
buttonActionLinkShare pill link rendered via Button1 with the dark tone and a Share2 icon
classNamestringExtra classes for the outer <section>
ts
type LeaderboardEntry = {
  rank: string;
  name: string;
  referrals: string;
  avatar: { src: string; alt: string };
  isYou?: boolean;
};

type ComingSoon37Labels = {
  referralsSuffix?: string;
};

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

Behavior notes

More Coming Soon blocks

View all Coming Soon
PRO

comingsoon71

Referral Rewards Tiers

A referral coming-soon section with a centered square eyebrow and heading, a referral progress bar, a list of reward tiers with locked and unlocked states, and a dark seal share button.

PRO

comingsoon6

Waitlist with Avatars

Coming soon section with an email waitlist input, stacked subscriber avatars, and a live join count. Perfect for building early traction and social proof before launch.

PRO

comingsoon23

Founding Member Offer

A bordered pre-launch offer card with a square eyebrow, a heading, a checked benefit list, a seats-claimed progress bar, and a working rounded email-capture form with a success state.

PRO

comingsoon45

Animated Waitlist Stats

A centered pre-launch section with a square eyebrow, a heading, a supporting line, a row of accent statistics that count up when scrolled into view, and a dark seal claim-seat button.

PRO

comingsoon36

Countdown Clock Waitlist

A centered pre-launch section with a square eyebrow, an accent-highlighted heading, a large colon-separated live countdown clock, a working email-capture form with a success state, and an avatar social-proof row.

PRO

comingsoon44

Founder Note Waitlist

A personal pre-launch section with a square eyebrow, a statement heading, a short founder note in paragraphs, and a signature row with avatar beside a dark seal waitlist button.