Navigation: [/sitemap.md](/sitemap.md)

---
type: block
category: hero
title: Hero 11
description: Content, buttons, and social proof centered vertically over a full-bleed background image with gradient masks.
---

```astro live props={{ name: 'hero-11' }}
---
import Hero11Block from "@/components/blocks/hero-11.astro"
import avatarSil from "@/assets/avatar-sil-veltman.webp"
import placeholderImage from "@/assets/placeholder.webp"
---

<Hero11Block
  title="Centered content over a full background image"
  description="Content, buttons, and social proof centered vertically over a full-bleed background image with gradient masks."
  buttons={[
    { label: "Get started", href: "/docs/", variant: "default" },
    { label: "View pricing", href: "#", variant: "secondary" },
  ]}
  socialProof={{
    avatars: [
      { image: avatarSil, initials: "AM", name: "Sil Veltman" },
      { image: avatarSil, initials: "KL", name: "Sil Veltman" },
      { image: avatarSil, initials: "SV", name: "Sil Veltman" },
    ],
    rating: 5,
    text: "Loved by developers",
  }}
  image={{ src: placeholderImage, alt: "Full background" }}
/>
```
