Engineering and team blog article preview cards with images, excerpts, and authors. Showcases technical depth and knowledge sharing culture.
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.
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.
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
npx shadcn add "https://ui.beste.co/r/careers30?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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",
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Section eyebrow badge above the heading |
heading | string | – | Section heading, supports inline <strong> |
description | string | – | Supporting paragraph below the heading |
items | ArticleItem[] | [] | Article cards rendered in the grid |
className | string | – | Extra classes for the outer <section> |
type ArticleItem = {
image?: { src: string; alt: string };
category?: string;
title: string;
excerpt?: string;
author?: { name: string; role?: string };
href?: string;
};badge, heading, or description is truthy; otherwise the grid renders flush to the top.heading is injected via dangerouslySetInnerHTML, so inline <strong> markup is supported and every <strong> is recolored to text-primary through a descendant selector.Link; when an item omits href the link falls back to "#", so cards never render as non-navigable elements.title produces a valid card.scale-105 on hover via a scoped group/careers30 group name, and its wrapper clips the overflow so the zoom stays inside the aspect-video frame.sm:grid-cols-2, and lg:grid-cols-3; there is no prop to change the column count.badge.variant defaults to "default" when omitted, while the per-card category badge is hard-coded to the "outline" variant and cannot be configured.careers29
Photo gallery of company events, offsites, and team activities in masonry layout. Visual showcase of team culture and community.
careers16
Employee testimonial cards with quotes, avatars, and roles. Social proof grid showcasing team member experiences and company culture.
careers11
Company values grid with icon cards and employee testimonial quote. Showcases team culture and work philosophy.
careers7
Team culture stats bar followed by detailed job position cards. Combines social proof with open roles listing.
careers14
Team member photo grid with names and roles. Square portrait layout for showcasing leadership and team composition.
careers46
A full featured-role posting with responsibilities, requirements and a sticky apply card.