# WebSite

Learn how Thulite SEO emits WebSite structured data on the homepage using site title and description from params for baseline schema markup.

A `WebSite` is a set of related web pages and other items typically served from a single web domain and accessible via URLs.

## Settings

You can set `title` and `description` in `config/_default/params.toml`:

```toml {title="params.toml"}
# Hugo
title = "My Docs"
description = "Congrats on setting up a new Doks project!"
```

## Generated meta tag

Thulite SEO generates the following meta tag (homepage only) — for example:

```html
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "WebSite",
      "url": "https://getdoks.org/",
      "name": "My Docs",
      "description": "Congrats on setting up a new Doks project!"
    }
  ]
}
</script>
```

## Resources

- [WebSite](https://schema.org/WebSite)
