Careers Job AlertsPRO

A hiring coming-soon section with a centered square eyebrow and heading, a working job-alert email form, and a list of upcoming roles with team and employment type.

ComingSoon69: Careers Job Alerts

A Polaris hiring coming-soon section (single accent color, square eyebrow) that centers an eyebrow, a heading, and a description over a working job-alert email form, then lists upcoming roles with their team and employment type below.

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/comingsoon69?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

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

Quick start

The installed file exports comingsoon69Demo alongside the block: the exact props behind the preview above. Spread it to get a working job-alert page in one line.

tsx
import { ComingSoon69, comingsoon69Demo } from "@/components/beste/block/comingsoon69";

export default function Page() {
  return <ComingSoon69 {...comingsoon69Demo} />;
}

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

tsx
import { ComingSoon69 } from "@/components/beste/block/comingsoon69";

export default function Page() {
  return (
    <ComingSoon69
      label="We're Hiring Soon"
      heading="Our careers page is on its way. So are the roles."
      description="We're growing the team this quarter across product, design, and engineering."
      roles={[
        { title: "Senior Product Designer", team: "Design", type: "Full-time" },
        { title: "Frontend Engineer", team: "Engineering", type: "Full-time" },
        { title: "Product Manager", team: "Product", type: "Full-time" },
      ]}
      labels={{
        rolesTitle: "Roles opening first",
        placeholder: "Enter your email",
        success: "You're set. We'll email you the moment roles go live.",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringSquare eyebrow rendered via Badge6
labelsComingSoon69Labels{}Roles title plus the form placeholder and success strings
headingstringSection heading
descriptionstringSupporting paragraph under the heading
rolesRoleItem[][]Upcoming role rows listed below the form
classNamestringExtra classes for the outer <section>
ts
type RoleItem = {
  title: string;
  team: string;
  type: string;
};

type ComingSoon69Labels = {
  rolesTitle?: string;
  placeholder?: string;
  success?: string;
};

Behavior notes

Wiring the form up

The form ships with local state and a success message but no backend, so submissions are not sent anywhere until you connect one. Point handleSubmit at your own route handler or email platform, or wire in a form library. For a walkthrough of the options, see React Hook Form, TanStack Form, and Formisch.

More Coming Soon blocks

View all Coming Soon
PRO

comingsoon57

Event Tickets Coming Soon

An event coming-soon section with a square eyebrow, an event name and heading, a date and venue meta row with icons, a working ticket-alert email form, and a speaker avatar row.

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

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

comingsoon36

Countdown Clock Waitlist

A centered pre-launch section with a square eyebrow, an accent-highlighted heading, a large colon-separated live countdown clock, a working email-capture form with a success state, and an avatar social-proof row.

PRO

comingsoon21

Waitlist Signup Counter

A centered waitlist section with a square eyebrow, a bold accent-highlighted heading, a working rounded email-capture form with a success state, and an avatar row with a live signup counter.

PRO

comingsoon45

Animated Waitlist Stats

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.