Zum Inhalt springen

Composites & Sections · 13 Props

Testimonials

Testimonial section displaying multiple customer reviews. Wraps TestimonialCard instances with optional heading and layout.

Composites & Sections 13 Props

src/components/blocks/Testimonials.astro

← Alle Components

Props

Prop Type Default Beschreibung
items * object[]
items[].avatarAlt string
items[].avatarSrc string
items[].company string
items[].href string
items[].name * string
items[].quote * string
items[].rating number
items[].role string
title * any
card any {} Pass-through props for Card.astro (applied to every TestimonialCard)
cardClass string ""
columns number 3
eyebrow any
gridClass string ""
headingAlign string center "left" | "center"
id string
layout string grid "grid" | "masonry"
spacingX number Spacing multipliers — forwarded to inner Section
spacingY number
subtitle any

Beispiele

Default

Customer review cards with quotes, author info, and company.

"The new website exceeded our expectations. Fast, modern, and exactly what we needed."

CEO · TechStart AG

"Professional team, transparent process, and outstanding results."

Marketing Lead · Alpine Solutions

"Our conversion rate doubled within the first month after launch."

Founder · DesignLab

{
  "type": "testimonials",
  "props": {
    "items": [
      {
        "quote": "The new website exceeded our expectations. Fast, modern, and exactly what we needed.",
        "author": "Sarah Müller",
        "role": "CEO",
        "company": "TechStart AG"
      },
      {
        "quote": "Professional team, transparent process, and outstanding results.",
        "author": "Marco Bernasconi",
        "role": "Marketing Lead",
        "company": "Alpine Solutions"
      },
      {
        "quote": "Our conversion rate doubled within the first month after launch.",
        "author": "Lisa Weber",
        "role": "Founder",
        "company": "DesignLab"
      }
    ]
  }
}
<Testimonials items={[{"quote":"The new website exceeded our expectations. Fast, modern, and exactly what we needed.","author":"Sarah Müller","role":"CEO","company":"TechStart AG"},{"quote":"Professional team, transparent process, and outstanding results.","author":"Marco Bernasconi","role":"Marketing Lead","company":"Alpine Solutions"},{"quote":"Our conversion rate doubled within the first month after launch.","author":"Lisa Weber","role":"Founder","company":"DesignLab"}]} />