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

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

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

<Products2Block
  badge="Collection"
  title="A compact list layout for product overviews"
  products={[
    {
      title: "Marketing pages",
      description:
        "Describe the collection first, then let subpages or product cards handle the deeper details.",
      price: { value: 100, currency: "USD", unit: "month" },
    },
    {
      title: "Documentation templates",
      description:
        "Describe the collection first, then let subpages or product cards handle the deeper details.",
      price: { value: 100, currency: "USD", unit: "month" },
    },
    {
      title: "Conversion flows",
      description:
        "Describe the collection first, then let subpages or product cards handle the deeper details.",
      price: { value: 100, currency: "USD", unit: "month" },
    },
    {
      title: "Onboarding bundle",
      description:
        "Describe the collection first, then let subpages or product cards handle the deeper details.",
      price: { value: 100, currency: "USD", unit: "month" },
    },
  ]}
/>
```
