Team Blog Highlights

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

PRO

Careers30: Team Blog Highlights

A centered heading block above a responsive one-to-three-column grid of article preview cards, where each card is a single Link wrapping an aspect-video cover image, an outline category badge, a title, an excerpt, and an author name with optional 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.

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

Base UI flavor

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

This installs the block to components/beste/block/careers30.tsx, plus the badge shadcn/ui primitive it uses for the eyebrow badge and per-card category label.

Quick start

The installed file exports careers30Demo alongside the block: the exact props behind the preview above. Spread it to get a working blog highlights grid in one line.

tsx
import { Careers30, careers30Demo } from "@/components/beste/block/careers30";

export default function Page() {
  return <Careers30 {...careers30Demo} />;
}

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

tsx
import { Careers30 } from "@/components/beste/block/careers30";

export default function Page() {
  return (
    <Careers30
      badge={{ label: "From the Team", variant: "secondary" }}
      heading="Stories from the <strong>engineering floor</strong>"
      description="Our team writes about the challenges they solve."
      items={[
        {
          image: { src: "/blog/pipeline.jpg", alt: "Real-time data pipeline" },
          category: "Engineering",
          title: "How We Scaled Our Real-Time Pipeline",
          excerpt: "A deep dive from batch processing to fully streaming.",
          author: { name: "James Kim", role: "Staff Engineer" },
          href: "/blog/pipeline",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Section eyebrow badge above the heading
headingstringSection heading, supports inline <strong>
descriptionstringSupporting paragraph below the heading
itemsArticleItem[][]Article cards rendered in the grid
classNamestringExtra classes for the outer <section>
ts
type ArticleItem = {
  image?: { src: string; alt: string };
  category?: string;
  title: string;
  excerpt?: string;
  author?: { name: string; role?: string };
  href?: string;
};

Behavior notes

More Careers blocks

View all Careers
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

careers16

Employee Testimonials

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

PRO

careers11

Culture & Values

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

PRO

careers7

Culture Stats with Positions

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

PRO

careers14

Meet the Team Gallery

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

PRO

careers46

Role Spotlight

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