Job Alerts Signup

Get notified about new roles

Subscribe to job alerts and be the first to know when we open positions that match your interests.

No spam, everUnsubscribe anytimeJoin 2,500+ subscribers
About this block

Job Alerts SignupPRO

Email subscription form for job alerts with trust indicators. Captures candidate interest for future openings with clean card layout.

Careers37: Job Alerts Signup

A centered card containing a heading with inline <strong> accent, a supporting paragraph, an inline email Input paired with a submit Button, and an optional row of check-marked trust indicators for capturing candidate interest in future openings.

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

Base UI flavor

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

This installs the block to components/beste/block/careers37.tsx, plus the button and input shadcn/ui primitives it uses for the subscribe action and the email field.

Quick start

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

tsx
import { Careers37, careers37Demo } from "@/components/beste/block/careers37";

export default function Page() {
  return <Careers37 {...careers37Demo} />;
}

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

tsx
import { Careers37 } from "@/components/beste/block/careers37";

export default function Page() {
  return (
    <Careers37
      heading="Get notified about <strong>new roles</strong>"
      description="Subscribe to job alerts and be the first to hear about open positions."
      inputPlaceholder="Enter your email address"
      buttonLabel="Subscribe"
      trustItems={["No spam, ever", "Unsubscribe anytime"]}
    />
  );
}

Props

PropTypeDefaultDescription
headingstringCard heading, supports inline <strong>
descriptionstringSupporting paragraph under the heading
inputPlaceholderstringPlaceholder text for the email input
buttonLabelstringText on the submit button
trustItemsstring[][]Check-marked labels shown below the form
classNamestringExtra classes for the outer <section>

Behavior notes

  • heading is rendered via dangerouslySetInnerHTML, so inline <strong> markup is supported and every <strong> is styled with text-primary and font-semibold; the whole heading is skipped when heading is falsy.
  • description and the trustItems row each render only when present: the paragraph is dropped if description is falsy, and the trust row is dropped when trustItems.length is 0.
  • The Input is a plain type="email" field with no value, onChange, or ref, and the Button has no onClick, so the form captures and submits nothing: there is no internal state and no callback to wire, leaving all submission handling to the integrator.
  • trustItems are keyed by array index, and each item renders a decorative Check icon before its label.
  • The card is width-capped by an inner max-w-2xl wrapper and centers all text; the input and button sit in a single flex row where the input takes flex-1 and the button hugs its label.
  • className is merged onto the outer <section> via cn, so it composes with the default py-16 md:py-24 w-full spacing rather than replacing it.

Wiring the form up

This block ships the form markup only; state, validation, and submit are yours to add. Our guide wires the shadcn Field primitives to React Hook Form, TanStack Form, and Formisch on one field system.

More Careers blocks

View all Careers
PRO

careers1

Job Listings List

Job listings section with role cards showing department, location, and employment type. Clean list layout with hover effects and apply buttons.

PRO

careers17

Job Application Form

Job application form with input fields, file upload area, and position summary sidebar. Complete apply page layout for career sites.

PRO

careers5

Featured Role with Positions

Highlighted featured position card with a compact list of additional openings below. Great for showcasing priority roles.

PRO

careers27

Speculative Application CTA

Bottom-of-page careers CTA for general applications with email, action buttons, and company highlight badges. Captures candidates without matching roles.

PRO

careers46

Role Spotlight

A full featured-role posting with responsibilities, requirements and a sticky apply card.

PRO

careers39

Candidate Experience Guide

Two-column guide with preparation tips and company commitments to candidates. Sets expectations for the hiring process with contact info.