# Banner

The `<Banner>` tag can be used to create site banners. To create your own banner component, simply create a new component and use the `<Banner>` tag as the outer wrapper for the component. (This should replace the `<Section>` tag as the outermost wrapper.)

```jsx
<Banner dataRef={content.banner}>
...
</Banner>
```

### Attributes

* **className**: string (optional) - A hard-coded class name to add to the rendered element
* **dataRef**: DataLocator - The data-element storing the Section's configuration
* **location**: Array\<string> (optional) - Where the component can appear; can include `'header'`, `'main'`, and `'footer'` (Default: `['main']`)
* **properties**: Array<\[object]> (optional) - Define properties that content authors can configure within the page editor. For details see [custom properties](/docs/features/properties.md).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developer.unstack.com/docs/components/banner.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
