---
title: Components
description: "Built-in MDX components for your documentation pages — cards, callouts, tabs, steps, accordions, and code groups. No imports needed."
---

Jamdesk includes built-in components that you can use directly in your MDX files. No imports needed.

## Available components

| Component | Use for |
|-----------|---------|
| **Card** | Highlighting features, linking to pages |
| **Columns** | Grid layouts of cards |
| **Callout** | Notes, tips, warnings |
| **Tabs** | Showing alternatives (languages, platforms) |
| **Accordion** | Collapsible sections |
| **Steps** | Sequential instructions |
| **CodeGroup** | Multi-language code examples |

## Example

Here's a card with an icon that links to another page:

<Card title="Quickstart Guide" icon="rocket" href="/quickstart">
  Get up and running in minutes.
</Card>

```mdx
<Card title="Quickstart Guide" icon="rocket" href="/quickstart">
  Get up and running in minutes.
</Card>
```

<Tip>
Browse the **Components** tab in the sidebar to see live examples of every component.
</Tip>
