Staaarter

Job Listings List

A simple, scannable list of open job roles. Each row shows the job title, a department badge, the location with a map-pin icon, and the employment type, with a subtle hover highlight and an Apply link on the right.

By Staaarter Team
Careers
Docs
Live preview

Docs

Installation

A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its badge, button dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/job-listings-list.json

Prefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/careers/careers1.tsx instead.

Usage

The file also exports careers1Demo, 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 { Careers1, careers1Demo } from "@/components/blocks/careers/careers1";

export default function Page() {
  return <Careers1 {...careers1Demo} />;
}

Props

PropTypeDefaultDescription
headingstring"Open positions"Section heading.
descriptionstring"Join our team..."Section subheading.
jobsJobListing[]noneList of job rows to render.
classNamestringnoneExtra classes for the outer section element.

Types

interface JobListing {
  id: string;
  title: string;
  department: string;
  location: string;
  type: string;
}

Behavior notes

  • Fully static: the row hover highlight is CSS-only (:hover), no client-side state.
  • The Apply button is a link (`render={<Link href="#" />}`) with a placeholder href, nothing is submitted anywhere.