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

# SEO

> Mintlify automatically generates most meta tags. If you want to customize them, you can set default values in docs.json or change them per page.

<Accordion title="Supported Meta Tags">
  * og:site\_name
  * og:title
  * og:description
  * og:url
  * og:image
  * og:locale
  * og:logo
  * article:publisher
  * twitter:title
  * twitter:description
  * twitter:url
  * twitter:image
  * twitter:site
  * og:image:width
  * og:image:height
  * robots
</Accordion>

## Default meta tags

You can set default meta tags by adding the `metadata` field to your `docs.json`.

```json theme={null}
"seo": {
    "metatags": {
        "og:image": "link to your default meta tag image"
    }
}
```

## Changing meta tags on one page

Add your meta tags to the page's metadata like so:

```md theme={null}
---
title: 'Your Example Page Title'
'og:image': 'link to your meta tag image'
---
```

<Warning>
  Meta tags with colons need to be typed with quotes around them when you put them in the page metadata.
</Warning>

## Sitemaps

Mintlify automatically generates a `sitemap.xml` file and a `robots.txt` file. Simply add `/sitemap.xml` to the end of your website URL to see your sitemap. We recommend submitting the sitemap to search engines for improved SEO.

Only pages included in your `docs.json` are included by default. To include hidden links, add `seo.indexing` to your `docs.json`:

```json theme={null}
"seo": {
    "indexing": all
}
```

## Disabling indexing

If you want to stop a page from being indexed by search engines, you can include the following in the [frontmatter](/page) of your page:

```
---
noindex: true
---
```

You can also specify `noindex` for all pages in your docs by setting the `metadata.robots` field to `"noindex"` in your `docs.json`:

```json theme={null}
"seo": {
    "metatags": {
      "robots": "noindex"
    }
  }
```
