A case study header with project metadata grid, service tags, and featured image. Perfect for agency portfolio pages showcasing client work details.
Case study header for agency portfolio pages: a badge, h1 heading, and description at the top, a row of service tags, a project metadata grid (client, timeline, industry, market), a full-width featured image, and a centered row of CTA buttons.
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/agency10?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/agency10?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/agency10.tsx and the shadcn/ui badge and button primitives it uses for the case study badge, service tags, and CTA buttons.
The installed file exports agency10Demo alongside the block: the exact props behind the preview above. Spread it to get a working case study header in one line.
import { Agency10, agency10Demo } from "@/components/beste/block/agency10";
export default function CaseStudyPage() {
return <Agency10 {...agency10Demo} />;
}Then replace the demo with your own props. Written out, the same setup looks like this:
import { Agency10 } from "@/components/beste/block/agency10";
export default function CaseStudyPage() {
return (
<Agency10
badge={{ label: "Case Study", variant: "secondary" }}
heading="Retail App Redesign"
description="We rebuilt the checkout flow for a fast-growing retailer, cutting drop-off by a third."
tags={["UI/UX Design", "Mobile"]}
meta={[
{ label: "Client", value: "Northwind Retail" },
{ label: "Timeline", value: "3 months" },
]}
image={{
src: "https://images.unsplash.com/photo-1556740714-a8395b3bf30f?w=1600&h=900&fit=crop",
alt: "Retail App Redesign",
}}
buttons={[{ label: "View live project", href: "https://beste.co" }]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Badge shown above the heading |
heading | string | – | Rendered as an <h1>, the page-level case study title |
description | string | – | Intro paragraph under the heading, capped at max-w-3xl |
image | { src: string; alt: string } | – | Featured project image |
meta | ProjectMeta[] | [] | Project metadata cells (client, timeline, etc.) |
tags | string[] | [] | Service/discipline tags shown as outline badges |
buttons | AgencyButton[] | [] | CTA buttons below the image |
className | string | – | Extra classes for the outer <section> |
type ProjectMeta = { label: string; value: string };
type AgencyButton = {
label: string;
href: string;
variant?: "default" | "secondary" | "outline" | "ghost" | "link";
};heading renders as a real <h1>, not an <h2> like most other section blocks in the registry, since this component is meant to sit at the top of a dedicated case study page.meta uses a grid-cols-2 md:grid-cols-4 layout with each entry in its own bordered box; it is not tuned to any specific item count, so 3 or 5 entries just reflow.justify-center), unlike the left-aligned CTA rows used in most other blocks, and each button appends a trailing ArrowRight icon regardless of variant.rounded-lg, and the section max-width is max-w-4xl, both narrower/rounder than the rounded-md/max-w-6xl+ patterns used by the newer blocks in this batch.agency16
Studio overview pairing facts, copy and highlight stats with a clean studio image.
agency21
Ruled, expandable capability rows with oversized type, detail copy, and monospace tag chips.