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

---
type: block
category: "products"
title: "Products 3"
description: "Products 3 block example."
---

```astro live props={{ name: 'products-3' }}
---
import Products3Block from "@/components/blocks/products-3.astro"
---

<Products3Block
  badge="Pricing"
  title="Minimal cards with prominent pricing"
  products={[
    {
      title: "Hero set",
      description:
        "Use compact cards when the products are really grouped content patterns.",
      price: { value: 49, currency: "USD" },
    },
    {
      title: "Article set",
      description:
        "Use compact cards when the products are really grouped content patterns.",
      price: { value: 79, currency: "USD" },
    },
    {
      title: "Pricing set",
      description:
        "Use compact cards when the products are really grouped content patterns.",
      price: { value: 99, currency: "USD" },
    },
  ]}
/>
```
