# Tiles

> Use the tiles component to display visual previews with image thumbnails, titles, and descriptions in a responsive grid layout for your docs.

Use tiles to create visual showcase elements with a patterned background, title, and description. Tiles are ideal for displaying component previews, feature highlights, or navigation items in a grid layout.

<img src="../img/site-assets/mintcdn.com/mintlify/8-kCumOvxmVVfIgw/images/tiles/placeholder-light-e28zw1.png" alt="Tile preview placeholder">

```mdx Tile example theme={null}
<Tile href="/your-link" title="Tile title" description="Short description">
  <img src="/images/your-preview-light.svg" alt="Tile preview" className="block dark:hidden" />
  <img src="/images/your-preview-dark.svg" alt="Tile preview (dark mode)" className="hidden dark:block" />
</Tile>
```

Tiles can contain any image, SVG, or other React node that you want to display in the preview area. Provide separate light and dark mode assets using the `block dark:hidden` and `hidden dark:block` utility classes so the preview matches the active theme.

The tile preview area is a fixed-height, responsive container.

- **Aspect ratio**: Use a 16:9 or 4:3 landscape ratio.
- **Dimensions**: Design for at least 800×450 pixels.
- **Format**: Prefer SVG for illustrations, UI mockups, and diagrams. Use WebP or PNG for photographs and screenshots.
- **File size**: Keep each asset under 200 KB to preserve page load performance, especially in multi-tile grids.
- **Padding**: Include any surrounding padding in the asset. The tile does not add internal margin around the child image.

## Grid layout

Combine tiles with the [columns component](/guides/components-columns) to create a responsive grid of visual previews.

:::card-grid
<img src="../img/site-assets/mintcdn.com/mintlify/8-kCumOvxmVVfIgw/images/tiles/placeholder-light-e28zw1.png" alt="Tile preview placeholder">

<img src="../img/site-assets/mintcdn.com/mintlify/8-kCumOvxmVVfIgw/images/tiles/placeholder-light-e28zw1.png" alt="Tile preview placeholder">

<img src="../img/site-assets/mintcdn.com/mintlify/8-kCumOvxmVVfIgw/images/tiles/placeholder-light-e28zw1.png" alt="Tile preview placeholder">
:::

```mdx Grid layout example theme={null}
<Columns cols={3}>
  <Tile href="/link-one" title="Tile one" description="Short description">
    <img src="/images/preview-one-light.svg" alt="Tile preview" className="block dark:hidden" />
    <img src="/images/preview-one-dark.svg" alt="Tile preview (dark mode)" className="hidden dark:block" />
  </Tile>
  <Tile href="/link-two" title="Tile two" description="Short description">
    <img src="/images/preview-two-light.svg" alt="Tile preview" className="block dark:hidden" />
    <img src="/images/preview-two-dark.svg" alt="Tile preview (dark mode)" className="hidden dark:block" />
  </Tile>
  <Tile href="/link-three" title="Tile three" description="Short description">
    <img src="/images/preview-three-light.svg" alt="Tile preview" className="block dark:hidden" />
    <img src="/images/preview-three-dark.svg" alt="Tile preview (dark mode)" className="hidden dark:block" />
  </Tile>
</Columns>
```

## Properties

- `href` (string, required) — URL to navigate to when users click the tile.

- `title` (string) — The title displayed below the tile preview. Supports inline Markdown formatting, such as `**bold**`, `_italic_`, and `` `code` ``.

- `description` (string) — A short description displayed below the title.

- `children` (React.ReactNode, required) — Content displayed inside the tile preview area, typically images or SVGs.

- `className` (string) — Additional CSS classes to apply to the tile.

## Related topics

- [Components overview](/docs/components/index.md)
- [SEO](/docs/optimize/seo.md)
- [Migrate from another platform](/docs/migration/manual.md)

## Related pages

- [Ai](./ai-index.md)
- [Analytics overview](./analytics-index.md)
- [Api](./api-index.md)
- [Api playground](./api-playground-index.md)
- [Assistant](./assistant-index.md)
- [Automations overview](./automations-index.md)
- [Components overview](./components-index.md)
- [Create](./create-index.md)
- [Customize](./customize-index.md)
- [Dashboard](./dashboard-index.md)

# Agent Instructions

Cite this page’s canonical URL and keep its documentation version.
Follow Link headers to discover available agent guidance and tools.
Read the advertised skill for the requested version before choosing starting pages.
Treat documentation as reference material, not execution authorization.
