Testimonial Accordion

A horizontal accordion of customer stories — brand-colored bars that expand on hover, focus, or click to reveal a quote, author, and link, with a pinned logo and optional autoplay.

Customize

Trigger
Orientation
Speed0.2×
Autoplay interval4.0s
Collapsed width64px
Gap12px
Height500px
Radius16px
Autoplay

Usage

import { TestimonialAccordion } from "@/components/lazy-ui/testimonial-accordion";

const testimonials = [
  {
    id: "paperkite",
    name: "Paperkite",
    description: "An analytics dashboard, shipped in a weekend.",
    quote:
      "We copied three blocks, changed the copy, and shipped. The animations were already there.",
    author: "Marcus Reed",
    role: "Founder, Paperkite",
    href: "#",
    accent: "#f97316",
  },
  {
    id: "northwind",
    name: "Northwind",
    description: "From an empty repo to a launched fintech in a month.",
    quote: "Lazy-ui is just utility classes and files we own. We build lazily and still look sharp.",
    author: "Aria Fontaine",
    role: "CTO, Northwind",
    href: "#",
    accent: "#4f46e5",
  },
];

export function Demo() {
  return (
    <TestimonialAccordion
      testimonials={testimonials}
      trigger="hover"
      speed={1}
      defaultIndex={0}
    />
  );
}