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

# Content Title

> Displays the title of the current content item.

export const ContentTitleDemo = () => {
  const MOCK_CONTENT = [{
    id: "demo-1",
    title: "How AI voices are changing publishing",
    imageUrl: "/images/player-ui/demo-cover.svg",
    sourceUrl: "https://beyondwords.io",
    sourceId: "demo",
    adsEnabled: false,
    duration: 124,
    audio: [{
      id: "audio-1",
      url: "/images/player-ui/demo-silent.mp3",
      contentType: "audio/mpeg",
      duration: 124
    }],
    video: [],
    summarization: {
      audio: [],
      video: []
    },
    segments: []
  }];
  const [target, setTarget] = useState(null);
  const [player, setPlayer] = useState(null);
  const [content, setContent] = useState(null);
  const [contentIndex, setContentIndex] = useState(0);
  useEffect(() => {
    if (!target) return;
    let instance;
    const init = () => {
      instance = new window.BeyondWords.Player({
        target,
        content: MOCK_CONTENT,
        widgetStyle: "none",
        showUserInterface: false,
        analyticsConsent: "none"
      });
      const sync = () => {
        setContent(instance.content);
        setContentIndex(instance.contentIndex);
      };
      instance.addEventListener("<any>", sync);
      sync();
      setPlayer(instance);
    };
    if (window.BeyondWords) init(); else window.addEventListener("BeyondWordsReady", init);
    return () => {
      window.removeEventListener("BeyondWordsReady", init);
      if (instance) instance.destroy();
    };
  }, [target]);
  return <div className="not-prose flex w-full items-center justify-center rounded-lg border p-10" style={{
    minHeight: "16rem",
    fontFamily: 'ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif'
  }}>
      <div ref={setTarget} style={{
    display: "none"
  }} />
      {player && <div>{content?.[contentIndex]?.title}</div>}
    </div>;
};

<Tabs>
  <Tab title="Preview">
    <ContentTitleDemo />
  </Tab>

  <Tab title="Code">
    ```jsx ContentTitle.jsx theme={null}
    "use client";

    import { usePlayerSelector } from "@/registry/react/PlayerProvider";

    export function ContentTitle() {
      const content = usePlayerSelector((p) => p.content);
      const contentIndex = usePlayerSelector((p) => p.contentIndex);
      return <div>{content?.[contentIndex]?.title}</div>;
    }
    ```
  </Tab>
</Tabs>

## Installation

<CodeGroup>
  ```bash npm theme={null}
  npx @beyondwords/cli components add content-title
  ```

  ```bash pnpm theme={null}
  pnpm dlx @beyondwords/cli components add content-title
  ```

  ```bash yarn theme={null}
  yarn dlx @beyondwords/cli components add content-title
  ```

  ```bash bun theme={null}
  bunx --bun @beyondwords/cli components add content-title
  ```
</CodeGroup>

## Usage

```tsx theme={null}
import { PlayerProvider } from '@/registry/react/PlayerProvider';
import { ContentTitle } from '@/registry/react/ContentTitle';

export function Player() {
  return (
    <PlayerProvider args={{ projectId: 9504, contentId: "ba00ef51-03ac-4a85-8b98-e45c957e8ef8", showUserInterface: false }}>
      <ContentTitle />
    </PlayerProvider>
  );
}
```

The component reads `content` and `contentIndex` from the surrounding
[`PlayerProvider`](/player-ui/react/player-provider) via `usePlayerSelector` and
renders the current item's title (`content[contentIndex].title`), re-rendering
only when those values change.

## Reference

|                       |                                                                 |
| --------------------- | --------------------------------------------------------------- |
| **Props**             | None                                                            |
| **Player state read** | `content`, `contentIndex`                                       |
| **Events emitted**    | None (display only)                                             |
| **Requires**          | a [`PlayerProvider`](/player-ui/react/player-provider) ancestor |
