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

# Personalize Inboxapp

> Customize statuses, tags, currency, and snippets from Settings.

export const Youtube = ({id, title = "YouTube video"}) => {
  const [playing, setPlaying] = useState(false);
  const poster = `https://i.ytimg.com/vi/${id}/hqdefault.jpg`;
  if (playing) {
    return <div className="relative my-6 aspect-video overflow-hidden rounded-xl border bg-gray-900">
        <iframe title={title} src={`https://www.youtube-nocookie.com/embed/${id}?autoplay=1&rel=0`} allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen className="absolute inset-0 h-full w-full" />
      </div>;
  }
  return <div className="relative my-6 aspect-video overflow-hidden rounded-xl border bg-gray-900">
      <button type="button" onClick={() => setPlaying(true)} className="group absolute inset-0 flex w-full items-center justify-center" aria-label={`Play ${title}`}>
        <img src={poster} alt="" className="absolute inset-0 h-full w-full object-cover" />
        <span className="relative z-10 flex h-14 w-14 items-center justify-center rounded-full bg-black/70 text-white shadow-lg transition group-hover:scale-105 group-hover:bg-black/85">
          <svg viewBox="0 0 24 24" className="ml-0.5 h-6 w-6 fill-current" aria-hidden>
            <path d="M8 5v14l11-7z" />
          </svg>
        </span>
      </button>
      <a href={`https://www.youtube.com/watch?v=${id}`} target="_blank" rel="noreferrer" className="sr-only">
        Watch on YouTube
      </a>
    </div>;
};

Customize your workspace from **Settings**.

<Youtube id="WzSlc0hYi3E" />

## Statuses

In **Settings → Statuses** you can create, edit, remove, and drag-to-reorder pipeline stages. Details: [Add statuses to the pipeline](/help/account/how-to-add-statuses-to-the-pipeline).

## Tags

In **Settings → Tags**, create tags (with colors), edit, or delete them. Step-by-step: [Tags and custom fields](/help/leads-management/organize/tags-and-custom-fields).

## Currency and valuation

In **Settings → Prospects**, choose the currency used for prospect valuation in the inbox and pipeline.

## Snippets

In **Settings → Snippets**, create reusable message templates. In chat, type `;` to insert a snippet.

## Related

* [Add statuses to the pipeline](/help/account/how-to-add-statuses-to-the-pipeline)
* [Tags and custom fields](/help/leads-management/organize/tags-and-custom-fields)
* [Set up your Inboxapp account](/help/getting-started-with-inboxapp/setup-your-inboxapp-account)

Still stuck? Contact support from the app.
