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

# Meta

> An Object which contains all the meta information

```js theme={null}
theme: SoftUI({
  meta: {
    author: String,
    owner: String,
    description: String,
    ogLocale: String,
    ogTitle: String,
    ogImage: String,
    ogType: String,
    ogUrl: String,
    ogSiteName: String,
    ogDescription: String,
    twitterTitle: String,
    twitterDescription: String,
    twitterDomain: String,
    twitterUrl: String,
    twitterCard: String,
    twitterSite: String,
    twitterSiteId: String,
    twitterCreator: String,
    twitterCreatorId: String,
    twitterImage: String,
  },
});
```

## Example Usage

```js theme={null}
theme: SoftUI({
  meta: {
    author: "PlainDevelopment",
    owner: "iMidnights",
    description:
      "SOFT-UI. An awesome theme for discord-dashboard created by Plain and iMidnight!",
    ogLocale: "en_US",
    ogTitle: "Soft-UI",
    ogImage: "/img/soft-ui.webp",
    ogType: "Theme",
    ogUrl: "https://google.com",
    ogSiteName: "Soft-UI Theme",
    ogDescription:
      "SOFT-UI. An awesome theme for discord-dashboard created by Plain and iMidnight!",
    twitterTitle: "Soft-UI Theme",
    twitterDescription:
      "SOFT-UI. An awesome theme for discord-dashboard created by Plain and iMidnight!",
    twitterDomain: "https://twitter.com/plainstuff",
    twitterUrl: "https://twitter.com/plainstuff",
    twitterCard: "summary_large_image",
    twitterSite: "https://twitter.com/iMidnight4",
    twitterSiteId: "https://twitter.com/plainstuff",
    twitterCreator: "69",
    twitterCreatorId: "420",
    twitterImage: "/img/soft-ui.webp",
  },
});
```

## Props

<ResponseField name="author" type="string">
  The name of the author
</ResponseField>

<ResponseField name="owner" type="string">
  The name of the owner
</ResponseField>

<ResponseField name="description" type="string">
  The description of the theme
</ResponseField>

<ResponseField name="ogLocale" type="string">
  The locale of the og image
</ResponseField>

<ResponseField name="ogTitle" type="string">
  The title of the og image
</ResponseField>

<ResponseField name="ogImage" type="string">
  The image of the og image
</ResponseField>

<ResponseField name="ogType" type="string">
  The type of the og image
</ResponseField>

<ResponseField name="ogUrl" type="string">
  The url of the og image
</ResponseField>

<ResponseField name="ogSiteName" type="string">
  The site name of the og image
</ResponseField>

<ResponseField name="ogDescription" type="string">
  The description of the og image
</ResponseField>

<ResponseField name="twitterTitle" type="string">
  The title of the twitter image
</ResponseField>

<ResponseField name="twitterDescription" type="string">
  The description of the twitter image
</ResponseField>

<ResponseField name="twitterDomain" type="string">
  The domain of the twitter image
</ResponseField>

<ResponseField name="twitterUrl" type="string">
  The url of the twitter image
</ResponseField>

<ResponseField name="twitterCard" type="string">
  The card of the twitter image
</ResponseField>

<ResponseField name="twitterSite" type="string">
  The site of the twitter image
</ResponseField>

<ResponseField name="twitterSiteId" type="string">
  The site id of the twitter image
</ResponseField>

<ResponseField name="twitterCreator" type="string">
  The creator of the twitter image
</ResponseField>

<ResponseField name="twitterCreatorId" type="string">
  The creator id of the twitter image
</ResponseField>

<ResponseField name="twitterImage" type="string">
  The image of the twitter image
</ResponseField>
