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

# Examples

# Examples

## Cards in a column layout

<Columns cols={2}>
  <Card title="Basic settings" icon="link" href="/documentation/agents/settings/basic" arrow="true" cta="Click here">
    This is an example of a card with an icon and a link. Clicking on this card brings you to the Columns page.
  </Card>

  <Card title="Speech Settings" icon="link" href="/documentation/agents/settings/speech" arrow="true" cta="Click here">
    This is an example of a card with an icon and a link. Clicking on this card brings you to the Columns page.
  </Card>
</Columns>

<Card title="Image card" img="https://mintlify.s3.us-west-1.amazonaws.com/sigmamindai/images/card-with-image.png">
  This is an example of a card with an image.
</Card>

<Tabs>
  <Tab title="First tab">
    ☝️ Welcome to the content that you can only see inside the first tab.

    You can add any number of components inside of tabs. For example, a code block:

    ```java HelloWorld.java theme={null}
      class HelloWorld {
          public static void main(String[] args) {
              System.out.println("Hello, World!");
          }
      }
    ```
  </Tab>

  <Tab title="Second tab" icon="leaf">
    ✌️ Here's content that's only inside the second tab.

    This one has a <Icon icon="leaf" /> icon!
  </Tab>

  <Tab title="Third tab">
    💪 Here's content that's only inside the third tab.
  </Tab>
</Tabs>
