Careers Job Alerts
A centered pre-launch hiring screen with an eyebrow, heading, and a working job-alert email form with a success state. Below it sits a list of upcoming roles, each showing its title alongside team and employment-type badges.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its badge dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/careers-job-alerts.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon69.tsx instead.
Usage
The file also exports comingsoon69Demo, the exact props behind the preview above. Spread it to get a working section in one line, then replace it with your own data.
import { ComingSoon69, comingsoon69Demo } from "@/components/blocks/coming-soon/comingsoon69"; export default function Page() { return <ComingSoon69 {...comingsoon69Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | "We're hiring soon" | Small label above the heading. |
| heading | string | "Get notified when we open new roles" | Main heading. |
| description | string | "We're growing our team over the next few months..." | Supporting copy under the heading. |
| roles | UpcomingRole[] | none | Upcoming roles rendered as a list with team and type badges. |
| className | string | none | Extra classes for the outer section element. |
Types
export interface UpcomingRole { id: string; title: string; team: string; type: string; }
Behavior notes
- The job-alert email form is real client state (useState): submitting swaps it for a confirmation message, nothing is sent to a server.
- The upcoming-roles list is fully static, non-interactive content, no apply links attached yet since the roles aren't open.
More Coming Soon Blocks
View all →countdown-timer-launch
Countdown Timer Launch
A centered launch page with a live days/hours/minutes/seconds countdown to a target date.
development-progress-milestones
Development Progress Milestones
A centered launch page with an overall progress bar and a milestone tracker list with status badges.
social-connect-launch
Social Connect Launch
A centered coming-soon page with pill-style outline buttons linking out to Twitter, GitHub, LinkedIn, and email.
animated-icons-preview
Animated Icons Preview
A centered coming-soon page with a row of bobbing icon tiles and a pulsing build-status indicator.
sneak-peek-feature-grid
Sneak Peek Feature Grid
A centered coming-soon page with a grid of blurred feature cards teased behind a lock icon overlay.
waitlist-with-avatars
Waitlist with Avatars
A centered coming-soon page with a working waitlist signup form, stacked subscriber avatars, and a live join count.