Files
Ethan Palm 4c31f3683c SEO: add keywords to pages (#1775)
* ai/ keywords

* api/ keywords

* components/ keywords

* create/ keywords

* customize/ keywords

* api-playground/ keywords

* dashboard/ keywords

* deploy/ keywords

* guides/ keywords

* insights/ keywords

* integrations/ keywords

* optimize/ keywords

* organize/ keywords

* root/ keywords

* rm temp files
2025-11-14 14:08:24 -08:00

34 lines
902 B
Plaintext

---
title: 'Columns'
description: 'Show elements side by side'
keywords: ['card groups', 'grid layout', 'multi-column layout']
---
The `Columns` component lets you group multiple `Card` components together. It's most often used to put cards in a grid, by specifying the number of grid columns.
<Columns cols={2}>
<Card title="Get started" icon="rocket">
Set up your project with our quickstart guide.
</Card>
<Card title="API reference" icon="code">
Explore endpoints, parameters, and examples for your API.
</Card>
</Columns>
```mdx Columns example
<Columns cols={2}>
<Card title="Get started">
Set up your project with our quickstart guide.
</Card>
<Card title="API reference">
Explore endpoints, parameters, and examples for your API.
</Card>
</Columns>
```
## Properties
<ResponseField name="cols" default={2}>
The number of columns per row.
</ResponseField>