Staaarter

Culture & Values

A grid of company value cards, each with an icon, title, and description, followed by a single employee testimonial with an avatar photo, name, and role. Communicates culture with both stated values and a real voice backing them up.

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 avatar, avatar-initials dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/culture-values.json

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

Usage

The file also exports careers11Demo, 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 { Careers11, careers11Demo } from "@/components/blocks/careers/careers11";

export default function Page() {
  return <Careers11 {...careers11Demo} />;
}

Props

PropTypeDefaultDescription
headingstringnoneSection heading above the values grid.
subheadingstringnoneShort supporting line under the heading.
valuesCompanyValue[]noneList of value cards to render.
testimonialValueTestimonialnoneEmployee quote shown below the values grid.
classNamestringnoneExtra classes for the outer section element.

Types

interface CompanyValue {
  title: string;
  description: string;
  icon: "focus" | "trust" | "ownership" | "craft" | "curiosity";
}

interface ValueTestimonial {
  quote: string;
  name: string;
  role: string;
  avatarUrl: string;
}

Behavior notes

  • Fully static. Value icons are chosen by a fixed internal mapping from the icon key to a lucide-react icon, so this stays a plain Server Component.
  • The testimonial avatar falls back to initials (via AvatarImage/AvatarFallback) if the photo URL fails to load.