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

# 투자자 피치 덱 만들기

> 웹사이트, Drive, 재무 Sheet를 기반으로 10~12장 분량의 투자자 덱을 생성합니다.

export const Connectors = ({items}) => <div style={{
  margin: "8px 0 20px"
}}>
    <style>{`
      .connectors-list, .connectors-list * { margin-top: 0 !important; margin-bottom: 0 !important; }
      .connectors-row {
        display: flex !important;
        align-items: flex-start !important;
        gap: 10px !important;
        padding: 4px 0 !important;
        min-height: 0 !important;
        height: auto !important;
      }
      .connectors-row img {
        width: 20px !important;
        height: 20px !important;
        max-width: 20px !important;
        max-height: 20px !important;
        margin: 2px 0 0 !important;
        display: block !important;
      }
    `}</style>
    <div className="connectors-list">
      {items.map((item, i) => <div key={item.id} className="connectors-row" style={{
  borderTop: i === 0 ? "none" : "1px solid rgba(130,130,130,0.22)"
}}>
          <img src={`/images/connectors/${item.id}.svg`} alt="" width={20} height={20} />
          <div style={{
  minWidth: 0
}}>
            <div>
              <strong>{item.name}</strong>
              {item.why ? <span style={{
  opacity: 0.72
}}> · {item.why}</span> : null}
            </div>
            {item.auth === "api-key" ? <div style={{
  fontSize: "11.5px",
  lineHeight: 1.35,
  color: "#F26207",
  marginTop: "2px"
}}>
                Not a native connector. Agent will ask for your API key.
              </div> : null}
          </div>
        </div>)}
    </div>
  </div>;

export const AiPrompt = ({children}) => {
  return <CodeBlock className="relative block max-w-full overflow-x-hidden font-sans !whitespace-pre-wrap !break-words" style={{
    overflowWrap: "anywhere",
    wordBreak: "break-word"
  }}>
      <div className="pr-7" style={{
    whiteSpace: "pre-wrap",
    overflowWrap: "anywhere",
    wordBreak: "break-word"
  }}>
        {children}
      </div>
    </CodeBlock>;
};

여러분의 웹사이트, Google Drive의 브랜드 파일, Google Sheets의 재무 데이터를
기반으로 Replit Slides에서 투자자 피치 덱(10\~12장)을 생성합니다: 문제, 제품,
시장, 트랙션, 팀, 그리고 요청 사항. Agent가 사이트에서 스토리와 근거를,
Drive에서 브랜딩을, Sheet에서 숫자(매출, 소진율, 런웨이, 유닛 이코노믹스,
전망)를 가져옵니다.

## 다음과 같은 경우에 적합합니다

* 실제 사이트와 재무 Sheet를 바탕으로 투자자 덱이 필요한 창업자.
* 이미 Google Sheets에 지표를 관리하며 투자 라운드를 진행 중인 운영자.

## 커넥터

<Connectors
  items={[
{
  id: "google-drive",
  name: "Google Drive",
  why: "로고, 색상, 선택적 참고 덱",
},
{
  id: "google-sheets",
  name: "Google Sheets",
  why: "재무: 매출, 소진율, 런웨이, 전망",
},
]}
/>

## 시작하기 전에

실제 사이트, Drive의 브랜드 파일, 레이블이 붙은 행이나 탭(매출, 소진율,
런웨이, 전망)이 있는 Sheet를 준비하세요. Drive와 Sheets를 연결하세요. 라운드
단계(pre-seed, seed, Series A)와 요청 사항을 Agent에게 알려주세요.

## Agent에게 요청하기

<AiPrompt>
  이 웹사이트 \[URL], Google Drive의 브랜드 파일, 그리고 재무 데이터가 담긴
  이 Google Sheet \[링크]를 기반으로 Replit Slides에서 10\~12장 분량의 투자자
  피치 덱을 생성해 주세요. 문제, 솔루션, 제품, 시장, 트랙션, 비즈니스 모델,
  재무, 팀, 요청 사항을 다뤄주세요. Sheet에 있는 숫자만 사용하세요. 출처가
  필요한 부분은 플래그로 표시해 주세요.
</AiPrompt>

## 예상 결과

Agent가 사이트를 슬라이드 플랜으로 전환하고, 트랙션과 재무 슬라이드에 Sheet
숫자를 넣어 Replit Slides에서 덱을 만듭니다. 투자자에게 보내기 전에 모든
수치를 Sheet와 대조하여 검토하세요. Preview에서 덱을 클릭하며 확인하고, 재무
슬라이드를 Sheet 탭과 대조하고, 각 주장이 사이트나 Sheet에 출처를 가지고
있는지 확인하세요.

## 나에게 맞게 조정하기

<AiPrompt>
  Sheet에서 가져온 최근 12개월 매출 및 소진율과 18개월 전망을 담은 재무
  슬라이드를 추가해 주세요. 슬라이드에 출처 탭을 표기해 주세요.
</AiPrompt>

<AiPrompt>
  이 덱을 \[참고 프레젠테이션]에 맞게 수정해 주세요. 레이아웃, 타이포그래피,
  색상, 섹션 구조를 유지하세요. Sheet에서 승인된 수치는 유지하고, 맞지 않는
  부분은 플래그로 표시해 주세요.
</AiPrompt>

## 문제 해결

* **수치가 Sheet와 일치하지 않음:** 레이블이 붙은 행이나 탭이 중요합니다. 매출, 소진율, 런웨이, 전망을 위한 탭 이름을 지정하고, 그곳에 있는 숫자만 사용하도록 Agent에게 알려주세요. 출처가 필요한 부분은 플래그로 표시해 주세요.
* **브랜드가 어색해 보임:** Drive를 연결하고 로고와 색상을 가리켜 주세요. 참고 덱이 있다면, 승인된 수치를 바꾸지 않고 레이아웃과 서체를 맞추도록 Agent에게 요청하세요.

## 관련 문서

<CardGroup cols={2}>
  <Card title="랜딩 페이지 디자인하기" href="/ko/use-cases/design-landing-page">
    동일한 Google Drive 브랜드 파일을 사용하며, 대기자 명단 페이지도 필요한 창업자를 위한 문서입니다.
  </Card>

  <Card title="소셜 아이콘 및 배너 만들기" href="/ko/use-cases/create-social-kit">
    모든 네트워크에 동일한 Google Drive 브랜드 파일을 사용합니다.
  </Card>
</CardGroup>
