Case Study Hero

A case study header with project metadata grid, service tags, and featured image. Perfect for agency portfolio pages showcasing client work details.

PRO

Agency10: Case Study Hero

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.

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

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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" }]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Badge shown above the heading
headingstringRendered as an <h1>, the page-level case study title
descriptionstringIntro paragraph under the heading, capped at max-w-3xl
image{ src: string; alt: string }Featured project image
metaProjectMeta[][]Project metadata cells (client, timeline, etc.)
tagsstring[][]Service/discipline tags shown as outline badges
buttonsAgencyButton[][]CTA buttons below the image
classNamestringExtra classes for the outer <section>
ts
type ProjectMeta = { label: string; value: string };
type AgencyButton = {
  label: string;
  href: string;
  variant?: "default" | "secondary" | "outline" | "ghost" | "link";
};

Behavior notes

More Agency blocks

View all Agency
PRO

agency14

Studio Team

A studio team grid of member portraits with names and roles.

PRO

agency20

Clients & Outcomes

Client logo cloud paired with measurable engagement outcomes.

PRO

agency16

Studio At A Glance

Studio overview pairing facts, copy and highlight stats with a clean studio image.

PRO

agency21

Capabilities Accordion

Ruled, expandable capability rows with oversized type, detail copy, and monospace tag chips.

PRO

agency18

Studio Ethos

A bold ethos statement beside a list of concrete studio commitments.

PRO

agency19

Why Polaris

A two-column comparison contrasting the Polaris way with a typical agency.