Case Study Hero

Case Study

Fintech Dashboard Redesign

We partnered with FinanceFlow to completely reimagine their trading platform. The goal was to create an intuitive, data-rich interface that empowers both novice and professional traders.

UI/UX DesignWeb DevelopmentBrand Identity
Client

FinanceFlow

Timeline

4 months

Industry

Fintech

Market

Global

Fintech Dashboard Redesign
About this block

Case Study HeroPRO

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

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.

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/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

  • 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.
  • Render order is fixed: badge/heading/description, then tags, then the metadata grid, then the image, then the buttons; there is no prop to reorder these blocks.
  • 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.
  • Buttons are centered (justify-center), unlike the left-aligned CTA rows used in most other blocks, and each button appends a trailing ArrowRight icon regardless of variant.
  • The image and metadata boxes use 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.

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

agency15

Awards List

Editorial list of studio awards by year with project and recognition details.

PRO

agency18

Studio Ethos

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