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.
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.
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/comingsoon69?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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.",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
label | string | – | Square eyebrow rendered via Badge6 |
labels | ComingSoon69Labels | {} | Roles title plus the form placeholder and success strings |
heading | string | – | Section heading |
description | string | – | Supporting paragraph under the heading |
roles | RoleItem[] | [] | Upcoming role rows listed below the form |
className | string | – | Extra classes for the outer <section> |
type RoleItem = {
title: string;
team: string;
type: string;
};
type ComingSoon69Labels = {
rolesTitle?: string;
placeholder?: string;
success?: string;
};handleSubmit calls preventDefault and only flips to the success panel when the trimmed email is non-empty, so there is no external callback to wire.Check icon and the success string; the input is not restored without a reload.roles is non-empty, each row a bordered card showing the title with the team and type joined by a small dot separator.max-w-3xl column, and the roles list opens under a top border with its own centered caption.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.
comingsoon57
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.
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.
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.
comingsoon36
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.