Internship Program

Internship program section with highlights, mentorship details, program summary card, and apply CTA. For recruiting early-career talent.

PRO

Careers19: Internship Program

A centered internship recruiting section that pairs a badge, <strong>-aware heading, and lead paragraph with a two-column body: a list of icon-fronted highlight rows on the left and a bordered "Program Details" card on the right that stacks label/value rows above a column of full-width CTA buttons.

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

Base UI flavor

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

This installs the block to components/beste/block/careers19.tsx, plus the badge and button shadcn/ui primitives it uses for the eyebrow badge and the CTA buttons in the details card.

Quick start

The installed file exports careers19Demo alongside the block: the exact props behind the preview above. Spread it to get a working internship program section in one line.

tsx
import { Careers19, careers19Demo } from "@/components/beste/block/careers19";

export default function Page() {
  return <Careers19 {...careers19Demo} />;
}

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

tsx
import { Rocket, Users } from "lucide-react";
import { Careers19 } from "@/components/beste/block/careers19";

export default function Page() {
  return (
    <Careers19
      badge={{ label: "Internship Program", variant: "secondary" }}
      heading="Launch your career with our <strong>internship program</strong>"
      description="A 12-week immersive program working on real products alongside our team."
      highlights={[
        { icon: Rocket, title: "Real Impact", description: "Ship production features used by thousands." },
        { icon: Users, title: "Dedicated Mentorship", description: "Get paired with a senior team member." },
      ]}
      details={[
        { label: "Duration", value: "12 weeks" },
        { label: "Start Date", value: "June 2026" },
      ]}
      buttons={[{ label: "Apply Now", href: "https://beste.co" }]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Optional eyebrow badge above the heading
headingstringSection heading, supports inline <strong>
descriptionstringLead paragraph under the heading
highlightsHighlightItem[][]Icon-fronted rows in the left column
detailsProgramDetail[][]Label/value rows in the details card
buttons{ label: string; href: string; variant?: "default" | "secondary" | "outline" }[][]Full-width CTA buttons in the details card
classNamestringExtra classes for the outer <section>
ts
type HighlightItem = {
  icon?: LucideIcon;
  title: string;
  description?: string;
};

type ProgramDetail = {
  label: string;
  value: string;
};

Behavior notes

More Careers blocks

View all Careers
PRO

careers23

Employee Referral Program

Referral program section with step-by-step process, bonus highlight card, and submit CTA. Encourages employee referrals.

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

careers8

Job Detail Page

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

PRO

careers5

Featured Role with Positions

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

PRO

careers28

Learning & Development

Professional development program cards with conference budget, courses, mentorship, and tech talks. Highlights company investment in employee growth.

PRO

careers46

Role Spotlight

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