Culture & Values

Our Culture

Built on shared values

Our culture is the foundation of everything we do. These are the principles that guide how we work, collaborate, and grow together.

Ownership

We take responsibility for our work and its impact. Everyone has the autonomy to make decisions and drive outcomes.

Transparency

Open communication by default. We share context freely so everyone can make informed decisions.

Continuous Learning

Growth is part of the job. We invest in each other through mentorship, feedback, and learning opportunities.

Customer Obsession

Everything we build starts with the customer. We listen, empathize, and solve real problems.

Joining this team was the best career decision I've made. The culture of ownership and transparency means I can focus on doing my best work every day.

About this block

Culture & ValuesPRO

Company values grid with icon cards and employee testimonial quote. Showcases team culture and work philosophy.

Careers11: Culture & Values

A centered culture section that renders an optional badge, an inline-<strong> heading, and a description above a two-column grid of value cards (each with an optional icon in a tinted circle, a title, and optional copy), followed by an optional left-border testimonial blockquote with author and role.

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.

Upgrade Now

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

Base UI flavor

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

This installs the block to components/beste/block/careers11.tsx, plus the badge shadcn/ui primitive it uses for the section eyebrow.

Quick start

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

tsx
import { Careers11, careers11Demo } from "@/components/beste/block/careers11";

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

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

tsx
import { Eye, Shield } from "lucide-react";
import { Careers11 } from "@/components/beste/block/careers11";

export default function CulturePage() {
  return (
    <Careers11
      badge={{ label: "Our Culture", variant: "secondary" }}
      heading="Built on <strong>shared values</strong>"
      description="The principles that guide how we work and grow together."
      items={[
        { icon: Shield, title: "Ownership", description: "We own our work and its impact." },
        { icon: Eye, title: "Transparency", description: "Open communication by default." },
      ]}
      quote={{
        content: "Joining this team was the best career decision I've made.",
        author: "Sarah Chen",
        role: "Staff Engineer",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Optional eyebrow badge above the heading
headingstringSection heading, supports inline <strong>
descriptionstringSupporting paragraph below the heading
itemsValueItem[][]Value cards rendered in the two-column grid
quote{ content: string; author: string; role: string }Testimonial blockquote below the grid
classNamestringExtra classes for the outer <section>
ts
type ValueItem = {
  icon?: LucideIcon;
  title: string;
  description?: string;
};

Behavior notes

  • The entire header block (badge, heading, description) is only rendered when at least one of those three props is present; if all are omitted the grid becomes the first element.
  • heading is injected via dangerouslySetInnerHTML, and only nested <strong> tags are styled (recolored to text-primary); any other markup you pass is rendered raw.
  • The badge falls back to the "default" variant when badge.variant is not supplied.
  • Cards key on the array index, so reordering items will remount rather than reuse nodes; each card only shows its icon circle when item.icon is set and its description paragraph when item.description is set.
  • The grid is fixed at a single column on mobile and two columns from the sm breakpoint up (sm:grid-cols-2); it never grows to three or more columns regardless of item count.
  • The component is purely presentational: it holds no internal state and exposes no callbacks, so all content is driven entirely by props.

More Careers blocks

View all Careers
PRO

careers16

Employee Testimonials

Employee testimonial cards with quotes, avatars, and roles. Social proof grid showcasing team member experiences and company culture.

PRO

careers7

Culture Stats with Positions

Team culture stats bar followed by detailed job position cards. Combines social proof with open roles listing.

PRO

careers9

Employee Benefits Grid

Benefits and perks showcase with icon cards in a responsive grid. Highlights company offerings like health, remote work, and growth opportunities.

PRO

careers30

Team Blog Highlights

Engineering and team blog article preview cards with images, excerpts, and authors. Showcases technical depth and knowledge sharing culture.

PRO

careers29

Team Events Gallery

Photo gallery of company events, offsites, and team activities in masonry layout. Visual showcase of team culture and community.

PRO

careers14

Meet the Team Gallery

Team member photo grid with names and roles. Square portrait layout for showcasing leadership and team composition.