Skip to content

Testimonials Case Studies

Three case-study cards led by an oversized mono metric in indigo (−71% pages), a short quote, author and a Read the story link that makes the whole card clickable.

minimal/section/testimonials-case-studies
Open ↗

Source

import { ArrowUpRight } from "lucide-react";
import { cn } from "@/lib/utils";

export interface TestimonialsCaseStudy {
  company: string;
  industry: string;
  metric: string;
  metricLabel: string;
  quote: string;
  author: string;
  role: string;
  href: string;
}

export interface TestimonialsCaseStudiesProps {
  eyebrow?: string;
  title?: string;
  cta?: { label: string; href: string };
  studies?: TestimonialsCaseStudy[];
  className?: string;
}

const DEFAULT_STUDIES: TestimonialsCaseStudy[] = [
  {
    company: "Northwind",
    industry: "Fintech · 900 engineers",
    metric: "−71%",
    metricLabel: "pages per engineer",
    quote: "Alert grouping alone paid for Tracewise in the first month.",
    author: "Priya Raman",
    role: "VP Engineering",
    href: "#northwind",
  },
  {
    company: "Parcel",
    industry: "Logistics · 240 engineers",
    metric: "6 min",
    metricLabel: "median time to resolve SEV2",
    quote: "War rooms spin up before anyone has asked who’s leading.",
    author: "Hannah Weiss",
    role: "Head of Support",
    href: "#parcel",
  },
  {
    company: "Heliograph",
    industry: "Developer tools · 120 engineers",
    metric: "1 PR",
    metricLabel: "to migrate 40 rotations",
    quote: "Config as code means our on-call is reviewed like the rest of our infra.",
    author: "Tomás Herrera",
    role: "Platform Lead",
    href: "#heliograph",
  },
];

/** Three case-study cards led by a big metric, then a short quote, author and a “Read story” link. */
export function TestimonialsCaseStudies({
  eyebrow = "Customer stories",
  title = "Results teams measure, not just feel",
  cta = { label: "All customer stories", href: "#customers" },
  studies = DEFAULT_STUDIES,
  className,
}: TestimonialsCaseStudiesProps) {
  return (
    <section aria-labelledby="testimonials-cases-title" className={cn("da-section bg-da-bg text-da-fg", className)}>
      <div className="da-container">
        <div className="flex flex-col gap-4 sm:flex-row sm:items-end sm:justify-between">
          <div className="max-w-2xl">
            <p className="font-da-mono text-xs text-da-accent-fg">{eyebrow}</p>
            <h2 id="testimonials-cases-title" className="mt-3 text-[clamp(1.875rem,4vw,2.75rem)] leading-[1.1] font-semibold tracking-da-display text-balance">
              {title}
            </h2>
          </div>
          <a
            href={cta.href}
            className="da-focus da-transition group inline-flex shrink-0 items-center gap-1 rounded-da-sm text-sm font-medium text-da-muted-fg hover:text-da-fg"
          >
            {cta.label}
            <ArrowUpRight aria-hidden className="da-transition size-4 group-hover:translate-x-0.5 group-hover:-translate-y-0.5" />
          </a>
        </div>
        <ul className="mt-12 grid gap-4 lg:grid-cols-3">
          {studies.map((s) => (
            <li key={s.company}>
              <article className="da-stroke da-transition group relative flex h-full flex-col rounded-da-lg bg-da-surface p-6 text-da-surface-fg hover:border-da-border-strong hover:shadow-da-md">
                <header className="flex items-baseline justify-between gap-3">
                  <h3 className="text-[17px] font-semibold tracking-tight">{s.company}</h3>
                  <p className="text-[12px] text-da-muted-fg">{s.industry}</p>
                </header>
                <p className="mt-8 font-da-mono text-5xl font-medium tracking-tight text-da-accent-fg">{s.metric}</p>
                <p className="mt-1 text-sm text-da-muted-fg">{s.metricLabel}</p>
                <blockquote className="mt-8 border-t border-da-border pt-5 text-[15px] leading-relaxed">“{s.quote}”</blockquote>
                <p className="mt-3 text-[13px] text-da-muted-fg">
                  {s.author}, {s.role}
                </p>
                <a
                  href={s.href}
                  className="da-focus mt-6 inline-flex items-center gap-1 rounded-da-sm text-sm font-medium after:absolute after:inset-0 after:rounded-da-lg"
                >
                  Read the story<span className="sr-only">: {s.company}</span>
                  <ArrowUpRight aria-hidden className="da-transition size-4 group-hover:translate-x-0.5 group-hover:-translate-y-0.5" />
                </a>
              </article>
            </li>
          ))}
        </ul>
      </div>
    </section>
  );
}

export default TestimonialsCaseStudies;

modules/minimal/section/testimonials-case-studies/index.tsx

Props

PropTypeDefaultDescription
eyebrow / titlestring—Header copy.
cta{ label, href }—All stories link.
studies{ company, industry, metric, metricLabel, quote, author, role, href }[]—Cards.
classNamestring—Classes on the section.

Other testimonials variants in Minimal

Testimonials in other art directions

Testimonials Big Quote

Full-bleed blue section showing one giant uppercase quote at a time with a tilted yellow metric card, author row, pressable prev/next buttons and bar-shaped pagination.

BrutalistTestimonials

Testimonials Logos

Case-study strip: four ruled cells, each with a company wordmark, a giant result number, its label and a one-line quote, alternating solid and paper tones.

BrutalistTestimonials

Testimonials Posts

Social-post wall: ruled cards styled like timeline posts (square colored avatar, handle, date, casual copy, reply/repost/like counts) in a 3-column grid with a 'see more' CTA.

BrutalistTestimonials

Testimonials Wall

Wall of quote cards in alternating solid colors with hard shadows, initials avatars and optional rotated metric stickers ("2× adoption").

BrutalistTestimonials

Testimonials Deck

Stacked deck of glass testimonial cards offset in depth; a ‘Next story’ button sends the top card to the back and the others slide forward, with a live counter.

GlassTestimonials

Testimonials Marquee

Two rows of frosted testimonial cards scrolling infinitely in opposite directions with faded edges, pause on hover, star rating summary above. A static sr-only list carries the content for assistive tech.

GlassTestimonials

Testimonials Masonry

Rating summary pill (stars, 4.9/5, review count) above a masonry wall of glass quote cards with star ratings; one highlight card is filled with the brand gradient.

GlassTestimonials

Testimonials Video

Three video-testimonial glass cards with gradient posters, initials, play button and duration; opening one expands a glass player panel above with headline, quote and author.

GlassTestimonials

Testimonials Grid

Hairline grid of short quotes (gap-px on a border-colored background) — 3 columns desktop, each cell with the quote and mono attribution; no cards, no shadows.

Mono CleanTestimonials

Testimonials List

Testimonials as an editorial ruled list: each row pairs a mono index + name/studio/city on the left with the quote on the right in a larger size; rows separated by hairlines.

Mono CleanTestimonials

Testimonials Marquee

Slow horizontal ticker of short quotes in large display type, separated by signal dots, between two ink rules; pauses on hover, static and wrapped with reduced motion. Pure CSS.

Mono CleanTestimonials

Testimonials Quote

One oversized pull quote set in the display face with a hanging opening quote mark, mono attribution under a short ink rule; lots of whitespace.

Mono CleanTestimonials

Testimonials Cards

Clean 3-column grid of bordered quote cards with company name header, quote, and initials avatar + role footer divided by a hairline.

Neo CorporateTestimonials

Testimonials Case Study

Featured customer story: bordered card split into a company quote (logo wordmark, quote, author) and a tinted column of three big result metrics with a “Read the case study” link.

Neo CorporateTestimonials

Testimonials Logos

Row of customer wordmark buttons acting as tabs; selecting one swaps the quote, author and key metric below.

Neo CorporateTestimonials

Testimonials Ratings

Review-site proof: rating tiles per platform (score + stars + review count), a row of award badges, and two review excerpts.

Neo CorporateTestimonials

Testimonials Carousel

Gentle one-at-a-time carousel on a sage band: serif quote cross-fades, round prev/next buttons, leaf-shaped position dots; no autoplay.

Organic SoftTestimonials

Testimonials Notes

Kind words as handwritten-feeling notes: slightly tilted paper/sage/clay cards with italic serif quotes and a small “pinned” dot, straightening on hover.

Organic SoftTestimonials

Testimonials Portrait

Single large testimonial: an arch-shaped sage “portrait” with big initials and a leaf, next to a large serif quote, attribution and a clay result chip.

Organic SoftTestimonials

Testimonials Wall

Masonry wall of soft rounded quote cards in mixed tints (CSS columns), each with a small leaf-dot avatar, name and role.

Organic SoftTestimonials

Testimonials Bubbles

Testimonials as a friendly group chat: alternating pastel speech bubbles with round avatars and names inside a big white phone-like card, next to the section title.

Soft FlatTestimonials

Testimonials Notes

Wall of pastel sticky notes, slightly rotated with a round periwinkle pin on top, each holding a bold short quote and author; notes straighten on hover.

Soft FlatTestimonials

Testimonials Slider

Horizontal slider of pastel testimonial cards with star ratings; round prev/next buttons move one card at a time and pill dots show the position.

Soft FlatTestimonials

Testimonials Spotlight

One big quote on a mint block with a giant quote mark, a flat shape avatar, three white stat bubbles and a row of customer wordmarks below.

Soft FlatTestimonials