Job Alerts Signup

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

PRO

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.

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

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

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

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

careers5

Featured Role with Positions

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

PRO

careers46

Role Spotlight

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

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

careers2

Job Openings Grid

Job openings grid with department badges, location tags, and apply buttons. Card-based layout for career pages.