# Notes (/docs/components/notes)

Speaker notes for reveal.js presentations.

> For the complete documentation index, see [llms.txt](/llms.txt). Markdown variants are available by appending `.md` to any URL or sending an `Accept: text/markdown` header. An agent skill is available at [/.well-known/agent-skills/site-skill.md](/.well-known/agent-skills/site-skill.md).



<ComponentPreview name="notes-demo" />

### Installation [#installation]

<CodeTabs>
  <TabsList>
    <TabsTrigger value="cli">
      Command
    </TabsTrigger>

    <TabsTrigger value="manual">
      Manual
    </TabsTrigger>
  </TabsList>

  <TabsContent value="cli">
    ```bash
    npx shadcn@latest add @slidecn/notes
    ```
  </TabsContent>

  <TabsContent value="manual">
    <Steps>
      <Step>
        Copy the component source into your project.
      </Step>

      <ComponentSource src="registry/slidecn/ui/notes.tsx" title="components/slidecn/notes.tsx" />

      <Step>
        Update the import paths to match your project setup.
      </Step>
    </Steps>
  </TabsContent>
</CodeTabs>

## Usage [#usage]

```tsx
import Notes from "@/components/slides/notes";

function MyPresentation() {
  return (
    <Deck>
      <Notes markdown>## Speaker Notes - Point one - Point two</Notes>
    </Deck>
  );
}
```

## API Reference [#api-reference]

### Notes [#notes]

| Prop       | Type      | Default  | Description       |
| ---------- | --------- | -------- | ----------------- |
| `children` | `string`  | required | Note content      |
| `markdown` | `boolean` | -        | Parse as markdown |
