# Pitch Deck (/docs/blocks/pitch-deck)

A 7-slide pitch deck template for investor 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="pitch-deck-demo" />

### Installation [#installation]

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

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

  <TabsContent value="cli">
    ```bash
    npx shadcn@latest add https://slidecn.dev/r/pitch-deck.json
    ```
  </TabsContent>

  <TabsContent value="manual">
    <Steps>
      <Step>
        Install the following dependencies:
      </Step>

      ```bash
      npm install @revealjs/react reveal.js
      ```

      <Step>
        Copy the component source into your project.
      </Step>

      <ComponentSource src="registry/slidecn/blocks/pitch-deck.tsx" title="components/slidecn/blocks/pitch-deck.tsx" />

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

## Usage [#usage]

```tsx
import { Deck } from "@revealjs/react";
import { PitchDeck } from "@/components/slides/blocks/pitch-deck";

export function InvestorPitch() {
  return (
    <Deck>
      <PitchDeck />
    </Deck>
  );
}
```

## Slides [#slides]

1. **Title** — Eyebrow, title, subtitle, author, date
2. **Problem** — Split slide with stat + problem description
3. **Solution** — Animated list of key points
4. **How It Works** — Vertical timeline + product screenshot
5. **Traction** — Row of key metrics
6. **Team** — Team member grid
7. **CTA** — Thank you with contact info
