UIPackage
Menu

Framework

Change language

Boilerplate repo

Testimonial — Single Featured

blockmarketing

One large pull quote given the full section: oversized text, attribution with avatar and role, the customer wordmark, and a supporting result metric beside it.

Also available for React ->

Installation

$npx shadcn-vue@latest add https://uipkge.dev/r/vue/testimonial-single-featured.json
Named registry:npx shadcn-vue@latest add @uipkge/testimonial-single-featuredInstalls to:app/components/blocks/

Variants

Loading interactive previews…

Files installed (1)

  • app/components/blocks/TestimonialSingleFeatured.vue2.1 kB
    <script setup lang="ts">
    import { ArrowRight } from 'lucide-vue-next'
    import { Avatar, AvatarFallback } from '@/components/ui/avatar'
    import { Badge } from '@/components/ui/badge'
    import { Button } from '@/components/ui/button'
    import { Separator } from '@/components/ui/separator'
    </script>
    
    <template>
      <section data-slot="testimonial-single-featured" class="bg-background">
        <div class="mx-auto max-w-5xl px-6 py-20 lg:py-28">
          <Badge variant="secondary">Customer</Badge>
    
          <!-- One quote, given the whole section. Keep it short: the size is what
               carries it, and a long quote at this scale stops being readable. -->
          <blockquote class="mt-6 text-2xl leading-tight font-medium tracking-tight text-balance sm:text-3xl lg:text-4xl">
            “We stopped arguing about whose number was right and started arguing about what to do next.”
          </blockquote>
    
          <div class="mt-10 grid gap-8 sm:grid-cols-[1fr_auto] sm:items-center">
            <div class="flex items-center gap-4">
              <Avatar class="size-12">
                <AvatarFallback>EW</AvatarFallback>
              </Avatar>
              <div>
                <p class="font-medium">Erin Walsh</p>
                <p class="text-muted-foreground text-sm">VP Finance · Northwind Logistics</p>
              </div>
              <Separator orientation="vertical" class="ml-2 hidden h-10 sm:block" />
              <span class="hidden text-sm font-semibold tracking-[0.18em] uppercase sm:inline">Northwind</span>
            </div>
    
            <div class="sm:text-right">
              <p class="font-display text-3xl font-bold tracking-tight">5 days</p>
              <p class="text-muted-foreground mt-1 text-sm">off the monthly close</p>
            </div>
          </div>
    
          <Separator class="my-10" />
    
          <div class="flex flex-wrap items-center justify-between gap-4">
            <p class="text-muted-foreground text-sm">Freight forwarding · 1,200 staff · live since Q1 2026</p>
            <Button variant="outline">
              Read the full story
              <ArrowRight class="ml-2 size-4" aria-hidden="true" />
            </Button>
          </div>
        </div>
      </section>
    </template>
    

Raw manifest:https://uipkge.dev/r/vue/testimonial-single-featured.json