Social Connect Launch

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.

FREE

ComingSoon3: Social Connect 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.

Installation

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/comingsoon3"

Base UI flavor

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

Quick start

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.

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

tsx
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" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Section eyebrow badge
headingstringSection heading
descriptionstringSection intro text
socialHeadingstringSmall uppercase caption above the link row
socialLinksSocialLink[][]Pill-shaped links rendered below the caption
classNamestringExtra classes for the outer <section>
ts
type SocialLink = {
  icon?: React.ReactNode;
  label: string;
  href?: string;
};

Behavior notes

More Coming Soon blocks

View all Coming Soon
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

comingsoon15

Waitlist Coming Soon

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 monospace social-proof note.

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.

PRO

comingsoon10

Dev Log Feed

Coming soon section with a chronological development log feed showing recent updates, commits, and milestones. Perfect for building in public and keeping the community engaged.

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

comingsoon8

Readiness Status Dashboard

Coming soon section with a status dashboard displaying service readiness with color-coded indicators for ready, in-progress, and planned states. Perfect for transparent launch communication.