Skip to content

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.

brutalist/section/testimonials-posts
Open ↗

Source

import { Heart, MessageCircle, Repeat2 } from "lucide-react";
import { cn } from "@/lib/utils";

export interface TestimonialsPostsItem {
  name: string;
  handle: string;
  text: string;
  date: string;
  likes: number;
  replies: number;
  reposts: number;
}

export interface TestimonialsPostsProps {
  kicker?: string;
  title?: string;
  posts?: TestimonialsPostsItem[];
  cta?: { label: string; href: string };
  className?: string;
}

const DEFAULT_POSTS: TestimonialsPostsItem[] = [
  { name: "Maya Okafor", handle: "@mayabuilds", text: "shipyard wrote our release notes from PR labels and honestly they're better than mine. friday afternoons are back 🙌", date: "Sep 12", likes: 214, replies: 18, reposts: 31 },
  { name: "Dev Patel", handle: "@devpatel", text: "Hot take: your changelog is a growth channel. Ours drives 11% of trial signups since we moved it to @shipyard.", date: "Sep 9", likes: 489, replies: 42, reposts: 77 },
  { name: "Aiko Tanaka", handle: "@aikot", text: "Release notes in Japanese and German on day one, no agency. Support tickets after launches: −33%.", date: "Sep 3", likes: 132, replies: 9, reposts: 14 },
  { name: "Sam Whitfield", handle: "@samw", text: "Engineers don't hate it. That's the review.", date: "Aug 28", likes: 902, replies: 61, reposts: 120 },
  { name: "Lena Brandt", handle: "@lenab", text: "The in-app widget is 9kb. NINE. Our old announcement tool was 240kb of iframe.", date: "Aug 21", likes: 356, replies: 27, reposts: 45 },
  { name: "Omar Haddad", handle: "@omarh", text: "Set up our changelog + custom domain during a standup. Didn't even miss my turn.", date: "Aug 14", likes: 188, replies: 11, reposts: 19 },
];

const AVATAR_TONES = ["bg-da-primary text-da-primary-fg", "bg-da-accent text-da-accent-fg", "bg-da-secondary text-da-secondary-fg", "bg-da-success text-da-success-fg"];

export function TestimonialsPosts({
  kicker = "[ 06 ] Word on the timeline",
  title = "People are posting about their changelogs. Wild.",
  posts = DEFAULT_POSTS,
  cta = { label: "See 300+ more", href: "#wall-of-love" },
  className,
}: TestimonialsPostsProps) {
  return (
    <section className={cn("da-section da-stroke-b bg-da-bg text-da-fg", className)} aria-labelledby="testimonials-posts-title">
      <div className="da-container">
        <div className="flex flex-wrap items-end justify-between gap-6">
          <div>
            <p className="font-da-mono text-xs font-bold tracking-da-label text-da-muted-fg uppercase">{kicker}</p>
            <h2 id="testimonials-posts-title" className="mt-3 max-w-2xl font-da-display text-[clamp(2rem,5vw,3.5rem)] leading-[0.95] tracking-da-display uppercase">
              {title}
            </h2>
          </div>
          <a href={cta.href} className="da-focus da-stroke bg-da-fg px-5 py-3 font-bold text-da-bg shadow-da-sm hover:translate-x-[3px] hover:translate-y-[3px] hover:shadow-none">
            {cta.label} →
          </a>
        </div>
        <ul className="mt-12 grid items-start gap-5 md:grid-cols-2 lg:grid-cols-3">
          {posts.map((p, i) => (
            <li key={p.handle}>
              <article className="da-stroke bg-da-surface p-5 text-da-surface-fg shadow-da-md" aria-label={`Post by ${p.name}`}>
                <header className="flex items-center gap-3">
                  <span aria-hidden className={cn("da-stroke grid size-11 place-items-center font-da-display", AVATAR_TONES[i % AVATAR_TONES.length])}>
                    {p.name[0]}
                  </span>
                  <span className="min-w-0 flex-1">
                    <span className="block truncate font-bold">{p.name}</span>
                    <span className="font-da-mono text-xs text-da-muted-fg">
                      {p.handle} · <time>{p.date}</time>
                    </span>
                  </span>
                </header>
                <p className="mt-4 text-[15px] leading-relaxed">{p.text}</p>
                <footer className="da-stroke-t mt-4 flex gap-6 pt-3 font-da-mono text-xs font-bold text-da-muted-fg">
                  <span className="flex items-center gap-1.5">
                    <MessageCircle aria-hidden className="size-4" /> {p.replies}
                    <span className="sr-only">replies</span>
                  </span>
                  <span className="flex items-center gap-1.5">
                    <Repeat2 aria-hidden className="size-4" /> {p.reposts}
                    <span className="sr-only">reposts</span>
                  </span>
                  <span className="flex items-center gap-1.5">
                    <Heart aria-hidden className="size-4" /> {p.likes}
                    <span className="sr-only">likes</span>
                  </span>
                </footer>
              </article>
            </li>
          ))}
        </ul>
      </div>
    </section>
  );
}

export default TestimonialsPosts;

modules/brutalist/section/testimonials-posts/index.tsx

Props

PropTypeDefaultDescription
kicker / titlestring—Header copy.
postsTestimonialsPostsItem[]—{ name, handle, text, date, likes, replies, reposts }[].
cta{ label: string; href: string }—Link to the full wall.
classNamestring—Classes on the <section>.

Other testimonials variants in Brutalist

Testimonials in other art directions

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

MinimalTestimonials

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.

MinimalTestimonials

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.

MinimalTestimonials

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.

MinimalTestimonials

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