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-corporate/section/testimonials-case-studySource
import { ArrowRight } from "lucide-react";
import { cn } from "@/lib/utils";
export interface TestimonialsCaseStudyProps {
company?: string;
industry?: string;
quote?: string;
author?: { name: string; role: string; initials: string };
metrics?: { value: string; label: string }[];
href?: string;
className?: string;
}
/** 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. */
export function TestimonialsCaseStudy({
company = "Northwind Logistics",
industry = "Logistics · 1,200 employees · 6 entities",
quote = "We closed our books in four days instead of twelve the first month after switching. Our controllers finally spend their time on analysis instead of chasing bank lines.",
author = { name: "Priya Raman", role: "VP Finance, Northwind", initials: "PR" },
metrics = [
{ value: "67%", label: "faster month-end close" },
{ value: "$2.1M", label: "cash freed from receivables" },
{ value: "18 days", label: "DSO, down from 41" },
],
href = "#case-study",
className,
}: TestimonialsCaseStudyProps) {
return (
<section aria-labelledby="nc-case-title" className={cn("da-section bg-da-bg text-da-fg", className)}>
<div className="da-container">
<p className="text-xs font-semibold tracking-da-label text-da-primary uppercase">Customer story</p>
<h2 id="nc-case-title" className="sr-only">
How {company} uses Ledgerly
</h2>
<figure className="da-stroke mt-6 grid overflow-hidden rounded-da-lg bg-da-surface text-da-surface-fg shadow-da-md lg:grid-cols-[1.6fr_1fr]">
<div className="p-8 sm:p-10">
<p className="font-da-display text-xl font-extrabold tracking-da-display">{company}</p>
<p className="text-sm text-da-muted-fg">{industry}</p>
<blockquote className="mt-8 font-da-display text-[clamp(1.25rem,2.4vw,1.75rem)] leading-snug font-semibold text-pretty">“{quote}”</blockquote>
<figcaption className="mt-8 flex items-center gap-3">
<span aria-hidden className="grid size-11 place-items-center rounded-full bg-da-accent font-semibold text-da-accent-fg">
{author.initials}
</span>
<span>
<span className="block font-semibold">{author.name}</span>
<span className="block text-sm text-da-muted-fg">{author.role}</span>
</span>
</figcaption>
</div>
<div className="flex flex-col border-t border-da-border bg-da-surface-2 p-8 sm:p-10 lg:border-t-0 lg:border-l">
<dl className="grid gap-6 max-lg:sm:grid-cols-3">
{metrics.map((m) => (
<div key={m.label} className="flex flex-col">
<dt className="order-2 text-sm text-da-muted-fg">{m.label}</dt>
<dd className="order-1 font-da-display text-4xl font-extrabold tracking-da-display text-da-primary">{m.value}</dd>
</div>
))}
</dl>
<a
href={href}
className="da-focus da-transition mt-8 inline-flex items-center gap-1.5 self-start rounded-da-sm font-semibold text-da-primary hover:gap-2 lg:mt-auto"
>
Read the case study <ArrowRight aria-hidden className="size-4" />
</a>
</div>
</figure>
</div>
</section>
);
}
export default TestimonialsCaseStudy;
modules/neo-corporate/section/testimonials-case-study/index.tsx
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| company | string | — | Company. |
| industry | string | — | Industry. |
| quote | string | — | Quote. |
| author | { name: string; role: string; initials: string } | — | Author. |
| metrics | { value: string; label: string }[] | — | Metrics. |
| href | string | — | Href. |
| className | string | — | Extra classes on the root. |
Other testimonials variants in Neo Corporate
Testimonials Cards
Clean 3-column grid of bordered quote cards with company name header, quote, and initials avatar + role footer divided by a hairline.
Testimonials Logos
Row of customer wordmark buttons acting as tabs; selecting one swaps the quote, author and key metric below.
Testimonials Ratings
Review-site proof: rating tiles per platform (score + stars + review count), a row of award badges, and two review excerpts.
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.
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.
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.
Testimonials Wall
Wall of quote cards in alternating solid colors with hard shadows, initials avatars and optional rotated metric stickers ("2× adoption").
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.
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.
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.
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.
Testimonials Carousel
One large quote at a time with initials avatar and role, cross-fading between slides; progress dots, a 01 / 04 counter and round prev/next buttons, arrow-key navigation.
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.
Testimonials Grid
Asymmetric testimonial grid: one large featured quote with a headline metric, flanked by two compact quotes, then a second row. Hairline cards, initials avatars, no logos needed.
Testimonials Posts
Masonry wall of social-post cards in 1–3 CSS columns: initials avatar, name and handle, post text, date and like count. Hairline cards, centered header.
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.
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.
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.
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.
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.
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.
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.
Testimonials Wall
Masonry wall of soft rounded quote cards in mixed tints (CSS columns), each with a small leaf-dot avatar, name and role.
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.
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.
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.
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.