Coming soon section featuring social media links with icons for Twitter, GitHub, LinkedIn, and Email in pill-style buttons. Perfect for building a community and keeping followers engaged before launch.
Coming-soon hero for a pre-launch social push: a heading and description sit above a row of pill-shaped social links (icon plus label) and a small pulsing dot next to a "Launching soon" status line. No countdown or progress mechanic, just links and a status indicator.
Free block
This block is free. No license or account is required: install it with the CLI and use it in unlimited projects.
Radix flavor
npx shadcn add "https://ui.beste.co/r/comingsoon3"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon3"This installs the block to components/beste/block/comingsoon3.tsx, plus the badge shadcn/ui primitive it uses for the eyebrow badge.
The installed file exports comingsoon3Demo alongside the block: the exact props behind the preview above. Spread it to get a working social launch section in one line.
import { ComingSoon3, comingsoon3Demo } from "@/components/beste/block/comingsoon3";
export default function ComingSoonPage() {
return <ComingSoon3 {...comingsoon3Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Github, Twitter } from "lucide-react";
import { ComingSoon3 } from "@/components/beste/block/comingsoon3";
export default function ComingSoonPage() {
return (
<ComingSoon3
badge={{ label: "Launching Soon", variant: "secondary" }}
heading="Stay connected"
description="Follow us to get the latest updates before launch."
socialHeading="Find us on"
socialLinks={[
{ icon: <Twitter className="size-5" />, label: "Twitter", href: "https://x.com/withbeste" },
{ icon: <Github className="size-5" />, label: "GitHub", href: "https://beste.co" },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Section eyebrow badge |
heading | string | – | Section heading |
description | string | – | Section intro text |
socialHeading | string | – | Small uppercase caption above the link row |
socialLinks | SocialLink[] | [] | Pill-shaped links rendered below the caption |
className | string | – | Extra classes for the outer <section> |
type SocialLink = {
icon?: React.ReactNode;
label: string;
href?: string;
};animate-pulse green dot next to a "Launching soon" caption at the bottom, which is hardcoded in the component and not exposed as a prop.icon is passed in as a pre-sized ReactNode (the demo passes <Twitter className="size-5" /> directly), not chosen from an icon-key enum, so the caller owns icon choice and sizing.Link when href is set; otherwise it renders as a plain, non-interactive div with identical pill styling, so a link without href looks the same as a real one until clicked.href still receives the same hover treatment (background lift, icon scale to 110%) as a real link, since both the Link and the div share the same class string, only the underlying element differs.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.
comingsoon15
A centered pre-launch section with an eyebrow, a large light heading, a paragraph, an image tile holding a working email-capture form with a success state, and a social-proof note.
comingsoon22
A centered coming-soon launch page with a brand wordmark, a square eyebrow, an accent-highlighted heading, a working email notify form with a success state, a launch note, and a row of social links.
comingsoon60
A personal coming-soon page with a monospace parenthetical eyebrow, an oversized name, a role and tagline, an email contact pill button, a row of social links, and an availability status line.