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.
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.
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
npx shadcn add "https://ui.beste.co/r/comingsoon37?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
label | string | – | Square eyebrow rendered above the heading via Badge6 |
labels | ComingSoon37Labels | {} | Suffix appended after each member's invite count |
heading | string | – | Section heading |
description | string | – | Supporting paragraph under the heading |
entries | LeaderboardEntry[] | [] | Ranked member rows with avatars and invite counts |
button | ActionLink | – | Share pill link rendered via Button1 with the dark tone and a Share2 icon |
className | string | – | Extra classes for the outer <section> |
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;
};button is a real navigation via Button1 asChild wrapping a Next.js <Link href={button.href} /> with the dark tone and a Share2 icon, so it always points at a URL.entries is non-empty, mapping each entry into a row inside a single bordered container, with a border-t divider drawn between rows (rendered for every entry except the first).isYou set gets a bg-muted highlight and an accent-colored rank, so the viewer's own row stands out from the rest.rank, a plain <img> avatar, the name, and the referrals count followed by labels.referralsSuffix when set.comingsoon71
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.
comingsoon6
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.
comingsoon23
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.
comingsoon45
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.