> ## 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.

# Create a new team

> Create a separate team workspace for another brand, client, or billing group.

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>;
};

Use a new team when you need a separate workspace for another brand, client, or billing group.

<Youtube id="LjJlybrLjKM" />

1. Hover over your **team name** at the top of the screen.
2. Click **Create team**.
3. Enter a name for the team.
4. Select a plan — **Inboxapp** (\$25/month or \$250/year) or **Pro** (\$79/month per connected X account). See [Plans and credits](/help/billing/billing-plans-and-credits).
5. Confirm to create the team.

Separate teams keep members, linked accounts, and settings isolated per client or brand.

## Related

* [Share your X inbox with a team member](/help/account/share-your-x-twitter-inbox-with-a-team-member)
* [Plans and credits](/help/billing/billing-plans-and-credits)

Still stuck? Contact support from the app.
