> ## Documentation Index
> Fetch the complete documentation index at: https://docs.inklyai.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Collections

> Group demo slugs on the hosted hub index.

Collections organize demos on the hub page. Use them to group demos by audience, product area, lifecycle stage, or sales motion.

Collections change how demos are presented on the hub. They do not change the demo URLs.

```json theme={null}
{
  "collections": [
    {
      "name": "Sales",
      "description": "Demos for buyer conversations.",
      "icon": "briefcase",
      "demos": ["crm-overview", "pipeline-forecast"]
    }
  ]
}
```

| Field         | Type       | Required | Default | Notes                                                                                                        |
| ------------- | ---------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------ |
| `name`        | `string`   | Yes      | —       | Collection title. Must be non-empty.                                                                         |
| `description` | `string`   | No       | —       | Optional tagline shown under the collection title. Must be non-empty when present.                           |
| `icon`        | `string`   | No       | —       | Optional lucide icon name in kebab-case, such as `folder` or `book-open`. Unrecognized names render no icon. |
| `demos`       | `string[]` | Yes      | —       | Ordered list of demo slugs in this collection.                                                               |

Each slug in `demos` should match a folder under `demos/<slug>/`.
