Industry Portrait TilesPRO

Four tall image tiles, one per industry, each followed by an explanation and a ruled foot pairing a proof line with a plain link into that sector's work.

Usecase46: Industry Portrait Tiles

Four industries as tall portrait tiles: a photograph, the sector, what the work involves, and a ruled foot carrying the proof line with its own link. No section CTA, so the tiles are the only way out.

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

Base UI flavor

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

This installs the block to components/beste/block/usecase46.tsx plus the badge7 eyebrow it uses.

Quick start

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

tsx
import { Usecase46, usecase46Demo } from "@/components/beste/block/usecase46";

export default function Page() {
  return <Usecase46 {...usecase46Demo} />;
}

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

tsx
import { Usecase46 } from "@/components/beste/block/usecase46";

export default function Page() {
  return (
    <Usecase46
      badge={{ label: "Fields we know" }}
      heading="Four industries where we already know the questions."
      description="Not because we are specialists, but because we have been wrong in each of them."
      sectors={[
        {
          src: "/sectors/publishing.jpg",
          alt: "Stacked print publications",
          sector: "Publishing",
          description: "Catalogues, journals and the reading order that decides the rest.",
          proof: "Nine titles, four presses",
          href: "/work/publishing",
          linkLabel: "See publishing work",
        },
        {
          src: "/sectors/retail.jpg",
          alt: "Retail interior with monochrome shelving",
          sector: "Retail",
          description: "Rooms, shelves and packaging that has to survive a busy Saturday.",
          proof: "Eighteen rooms opened",
          href: "/work/retail",
          linkLabel: "See retail work",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow label rendered as a Badge7
headingstringSection heading in the left header column
descriptionstringSupporting paragraph in the right header column
sectorsSectorTile[][]Industry tiles, rendered in order
classNamestringExtra classes for the outer <section>
ts
type SectorTile = {
  src: string;
  alt: string;
  sector: string;
  description: string;
  proof: string;
  href: string;
  linkLabel: string;
};

Behavior notes

More Use Case blocks

View all Use Case
PRO

usecase52

Placement Mosaic Grid

Six application tiles alternating between landscape and portrait crops, each captioned on a rule with where the work lands, what it is applied to and the constraint it has to survive.

FREE

usecase4

Industry Solutions Grid

Card grid showcasing industry-specific solutions with icons, images, descriptions, and feature tags. Perfect for highlighting how your platform serves different verticals.

PRO

usecase18

Industry Stats Cards

Card grid showcasing industries with icons, descriptions, and key statistics like company count and user numbers. Perfect for demonstrating market reach across verticals.

PRO

usecase48

Stacked Photo Bands

Three tall photographic bands stacked full width, each carrying an eyebrow, display title, explanation, one outcome figure and its own outline pill link over a tinted scrim; the three-column foot only forms from lg up so the sentence keeps its measure on a tablet.

PRO

usecase42

Multi-Site Locations

A multi-site use case with an eyebrow over a hairline rule, a two-column heading, and three image tiles that each float a live location card above a title and description.

PRO

usecase45

Alternating Scenario Rows

Three use cases as image and text rows, each numbered and carrying a story, two ruled outcome figures and its own outline pill link; pictures stay top-aligned and the side only alternates from lg, so a tablet keeps every image at the top left.

Markdown version