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

Careers27: Speculative Application CTA

A centered, muted-panel careers CTA that renders an optional <strong>-highlighted heading, a description paragraph, a mailto: email link, a row of link buttons, and a wrapping row of highlight badges, so candidates without a matching role can still apply.

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

Base UI flavor

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

This installs the block to components/beste/block/careers27.tsx, plus the badge and button shadcn/ui primitives it uses for the highlight badges and action buttons.

Quick start

The installed file exports careers27Demo alongside the block: the exact props behind the preview above. Spread it to get a working speculative-application CTA in one line.

tsx
import { Careers27, careers27Demo } from "@/components/beste/block/careers27";

export default function CareersPage() {
  return <Careers27 {...careers27Demo} />;
}

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

tsx
import { Careers27 } from "@/components/beste/block/careers27";

export default function CareersPage() {
  return (
    <Careers27
      heading="Don't see the <strong>right role?</strong>"
      description="Send us your resume and we'll keep you in mind."
      email="careers@company.com"
      buttons={[
        { label: "Send Your Resume", href: "/apply" },
        { label: "View All Positions", href: "/jobs", variant: "outline" },
      ]}
      highlights={["Remote-Friendly", "Competitive Equity"]}
    />
  );
}

Props

PropTypeDefaultDescription
headingstringSection heading, supports inline <strong> rendered via dangerouslySetInnerHTML
descriptionstringParagraph below the heading
emailstringAddress rendered as a mailto: link
buttonsButton[][]Action buttons wrapped in Link
highlightsstring[][]Labels rendered as secondary badges
classNamestringExtra classes for the outer <section>
ts
type Button = {
  label: string;
  href: string;
  variant?: "default" | "secondary" | "outline";
};

Behavior notes

More Careers blocks

View all Careers
PRO

careers8

Job Detail Page

Single job posting detail with responsibilities, requirements, nice-to-haves, and apply CTA. Full position description layout.

PRO

careers33

HR Job Posting Detail

Formal HR job posting with responsibilities, qualifications, benefits, and sidebar summary. Corporate-style position detail page with apply CTA.

PRO

careers5

Featured Role with Positions

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

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

careers46

Role Spotlight

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

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.