Referral Rewards TiersPRO

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.

ComingSoon71: Referral Rewards Tiers

A Polaris referral coming-soon section (single accent color, square eyebrow) that centers an eyebrow, a heading, and a description over a referral progress bar, then lists reward tiers in locked and unlocked states and finishes with a dark seal-style 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/comingsoon71?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

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

Quick start

The installed file exports comingsoon71Demo alongside the block: the exact props behind the preview above. Spread it to get a working referral tiers page in one line.

tsx
import { ComingSoon71, comingsoon71Demo } from "@/components/beste/block/comingsoon71";

export default function Page() {
  return <ComingSoon71 {...comingsoon71Demo} />;
}

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

tsx
import { ComingSoon71 } from "@/components/beste/block/comingsoon71";

export default function Page() {
  return (
    <ComingSoon71
      label="Refer & Unlock"
      heading="Bring friends, unlock the good stuff."
      description="Every friend who joins on your link moves you toward the next reward."
      currentReferrals={4}
      tiers={[
        { count: 3, reward: "Skip to the front of the line" },
        { count: 10, reward: "A founding-member badge" },
        { count: 25, reward: "Free Pro for a whole year" },
      ]}
      button={{ label: "Share Your Link", href: "/refer" }}
      labels={{ progressCaption: "Your referrals so far", friendsSuffix: "friends" }}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringSquare eyebrow rendered via Badge6
labelsComingSoon71Labels{}Progress caption and the friends-count suffix
headingstringSection heading
descriptionstringSupporting paragraph under the heading
currentReferralsnumber0Referral count that drives progress and tier unlocking
tiersTierItem[][]Reward tiers with their unlock threshold
buttonActionLinkShare link rendered via Button1 with a Share2 icon
classNamestringExtra classes for the outer <section>
ts
type TierItem = {
  count: number;
  reward: string;
};

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

type ComingSoon71Labels = {
  progressCaption?: string;
  friendsSuffix?: string;
};

Behavior notes

More Coming Soon blocks

View all Coming Soon
PRO

comingsoon37

Referral Leaderboard

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.

PRO

comingsoon14

Early Access Tiers

Coming soon section with tiered early access plans showing benefits, features, and availability for each level. Perfect for building a monetized waitlist with founding member perks.

PRO

comingsoon7

Launch Roadmap Timeline

Coming soon section with a vertical timeline showing launch phases, dates, and status indicators. Perfect for communicating a clear release plan and keeping users informed about upcoming milestones.

FREE

comingsoon2

Development Progress Milestones

Coming soon section with a progress bar and milestone tracker showing development stages like Design, Backend, Frontend, and Testing. Perfect for keeping users informed about product development progress.

PRO

comingsoon50

Launch Readiness Progress

A coming-soon section on a soft muted card with a monospace parenthetical eyebrow, a heading, a launch-readiness percentage that counts up with an animated progress bar, a build-status row, and a working email notify form.

PRO

comingsoon32

Trusted By Waitlist

A centered pre-launch section with a monospace parenthetical eyebrow, a statement heading, a supporting paragraph, a waitlist pill button, and a captioned grayscale logo strip of early partners.