Docs
Vertical Testimonial

Vertical Testimonial

A vertically oriented testimonial component with avatar, content highlighting, and role information.

The attention to detail and the user experience is absolutely phenomenal

Sarah Wilson

Sarah Wilson

Product Designer

Installation

npx shadcn@latest add "https://www.layout.software/r/styles/default/verticaltestimonial.json"

Usage

import {
  VerticalTestimonial,
  VerticalTestimonialAvatar,
  VerticalTestimonialContent,
  VerticalTestimonialHighlight,
  VerticalTestimonialInfo,
  VerticalTestimonialName,
  VerticalTestimonialRole,
} from "@/components/ui/verticaltestimonial"
<VerticalTestimonial>
  <VerticalTestimonialContent>
    The attention to detail and the user experience is
    <VerticalTestimonialHighlight>
      absolutely phenomenal
    </VerticalTestimonialHighlight>
  </VerticalTestimonialContent>
  <VerticalTestimonialAvatar src="/avatars/user.png" alt="User avatar" />
  <VerticalTestimonialInfo>
    <VerticalTestimonialName>Sarah Wilson</VerticalTestimonialName>
    <VerticalTestimonialRole>Product Designer</VerticalTestimonialRole>
  </VerticalTestimonialInfo>
</VerticalTestimonial>