# Help page

> A ChatGPT-style hosted help page for your agent — a full-screen chat you can share as a link or proxy under a path on your own domain (e.g. /help).

The Help page is a clean, full-screen version of your agent's chat — the same experience as the widget, but as its own page instead of a floating bubble. It's ideal for a "Support" or "Help" link in your nav, a shared URL, or embedding on a contact page.

> **WHERE TO FIND IT:** Open your agent → **Deploy** → the **Help page** card → **Manage**. Toggle it on, set a page title and default theme, and copy the hosted URL.

## Settings

| Setting | What it does |
| --- | --- |
| Page title | The display name shown in the page header. |
| Default theme | System, Light, or Dark — the starting appearance of the page. |
| Hosted help page URL | A ready-to-share link (`/widget/frame?agentId=…`). The preview updates live as you edit. |

## Share or embed

Share the hosted URL directly, link to it from your site nav, or proxy it under a path on your own domain (for example, `/help`). To embed it inside an existing page, use an iframe:

```html
<iframe
  src="https://app.bookbag.ai/widget/frame?agentId=YOUR_AGENT_ID"
  title="Help"
  width="100%"
  style="height: 100%; min-height: 700px"
  frameborder="0"
></iframe>
```

> **TIP:** Want a structured support form (email, problem, severity, attachments) that files a ticket instead of a live chat? Use the [Help center](/docs/deploy/help-center).
