Social Connect LaunchFREE

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.

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

PRO

comingsoon22

Coming Soon Notify Page

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.

PRO

comingsoon60

Portfolio Under Construction

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.

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

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.