> ## Documentation Index
> Fetch the complete documentation index at: https://smartac-mintlify-999c9ea9.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# 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.

<Tile href="/components/tiles" title="Tile title" description="Short description">
  <img src="https://mintcdn.com/smartac-mintlify-999c9ea9/PKL15anJw9vJ2Col/images/tiles/placeholder-light.svg?fit=max&auto=format&n=PKL15anJw9vJ2Col&q=85&s=e2fb281817360f6c119cfda12b3d053c" alt="Tile preview placeholder" className="block dark:hidden" width="184" height="100" data-path="images/tiles/placeholder-light.svg" />

  <img src="https://mintcdn.com/smartac-mintlify-999c9ea9/PKL15anJw9vJ2Col/images/tiles/placeholder-dark.svg?fit=max&auto=format&n=PKL15anJw9vJ2Col&q=85&s=773021ddad221b07e9e87cb0c53d9ca6" alt="Tile preview placeholder (dark mode)" className="hidden dark:block" width="184" height="100" data-path="images/tiles/placeholder-dark.svg" />
</Tile>

```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.

## Grid layout

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

<Columns cols={3}>
  <Tile href="/components/tiles" title="Tile one" description="Short description">
    <img src="https://mintcdn.com/smartac-mintlify-999c9ea9/PKL15anJw9vJ2Col/images/tiles/placeholder-light.svg?fit=max&auto=format&n=PKL15anJw9vJ2Col&q=85&s=e2fb281817360f6c119cfda12b3d053c" alt="Tile preview placeholder" className="block dark:hidden" width="184" height="100" data-path="images/tiles/placeholder-light.svg" />

    <img src="https://mintcdn.com/smartac-mintlify-999c9ea9/PKL15anJw9vJ2Col/images/tiles/placeholder-dark.svg?fit=max&auto=format&n=PKL15anJw9vJ2Col&q=85&s=773021ddad221b07e9e87cb0c53d9ca6" alt="Tile preview placeholder (dark mode)" className="hidden dark:block" width="184" height="100" data-path="images/tiles/placeholder-dark.svg" />
  </Tile>

  <Tile href="/components/tiles" title="Tile two" description="Short description">
    <img src="https://mintcdn.com/smartac-mintlify-999c9ea9/PKL15anJw9vJ2Col/images/tiles/placeholder-light.svg?fit=max&auto=format&n=PKL15anJw9vJ2Col&q=85&s=e2fb281817360f6c119cfda12b3d053c" alt="Tile preview placeholder" className="block dark:hidden" width="184" height="100" data-path="images/tiles/placeholder-light.svg" />

    <img src="https://mintcdn.com/smartac-mintlify-999c9ea9/PKL15anJw9vJ2Col/images/tiles/placeholder-dark.svg?fit=max&auto=format&n=PKL15anJw9vJ2Col&q=85&s=773021ddad221b07e9e87cb0c53d9ca6" alt="Tile preview placeholder (dark mode)" className="hidden dark:block" width="184" height="100" data-path="images/tiles/placeholder-dark.svg" />
  </Tile>

  <Tile href="/components/tiles" title="Tile three" description="Short description">
    <img src="https://mintcdn.com/smartac-mintlify-999c9ea9/PKL15anJw9vJ2Col/images/tiles/placeholder-light.svg?fit=max&auto=format&n=PKL15anJw9vJ2Col&q=85&s=e2fb281817360f6c119cfda12b3d053c" alt="Tile preview placeholder" className="block dark:hidden" width="184" height="100" data-path="images/tiles/placeholder-light.svg" />

    <img src="https://mintcdn.com/smartac-mintlify-999c9ea9/PKL15anJw9vJ2Col/images/tiles/placeholder-dark.svg?fit=max&auto=format&n=PKL15anJw9vJ2Col&q=85&s=773021ddad221b07e9e87cb0c53d9ca6" alt="Tile preview placeholder (dark mode)" className="hidden dark:block" width="184" height="100" data-path="images/tiles/placeholder-dark.svg" />
  </Tile>
</Columns>

```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

<ResponseField name="href" type="string" required>
  URL to navigate to when users click the tile.
</ResponseField>

<ResponseField name="title" type="string">
  The title displayed below the tile preview.
</ResponseField>

<ResponseField name="description" type="string">
  A short description displayed below the title.
</ResponseField>

<ResponseField name="children" type="React.ReactNode" required>
  Content displayed inside the tile preview area, typically images or SVGs.
</ResponseField>
