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

# मैनस स्लाइड्स

> मैनस एक सरल विवरण से संपूर्ण प्रस्तुतियाँ बनाता है। यह शोध करता है, सामग्री विकसित करता है, स्लाइड डिज़ाइन करता है, विज़ुअल्स उत्पन्न करता है, और विस्तृत वक्ता नोट्स लिखता है—मिनटों में प्रस्तुति के लिए तैयार डेक प्रदान करता है।

export const CodePrompt = ({children}) => {
  const [isCopied, setIsCopied] = useState(false);
  const textContent = useMemo(() => {
    const extractText = (children, depth = 0) => {
      const maxDepth = 10;
      if (depth > maxDepth) return '';
      if (children == null) return '';
      if (typeof children === 'string' || typeof children === 'number') {
        return String(children);
      }
      if (Array.isArray(children)) {
        return children.map(child => extractText(child, depth + 1)).join('');
      }
      if (typeof children === 'object' && children.props) {
        return extractText(children.props.children, depth + 1);
      }
      return '';
    };
    return extractText(children);
  }, [children]);
  const handleAskManus = useCallback(() => {
    const url = new URL('https://manus.im');
    if (textContent) {
      url.searchParams.set('q', textContent);
      url.searchParams.set('submit', '1');
    }
    window.open(url.toString(), '_blank');
  }, [textContent]);
  const handleCopy = useCallback(async () => {
    try {
      await navigator.clipboard.writeText(textContent);
      setIsCopied(true);
      setTimeout(() => {
        setIsCopied(false);
      }, 2000);
    } catch (err) {
      const textArea = document.createElement('textarea');
      textArea.value = textContent;
      textArea.style.position = 'fixed';
      textArea.style.opacity = '0';
      document.body.appendChild(textArea);
      textArea.select();
      try {
        document.execCommand('copy');
        setIsCopied(true);
        setTimeout(() => {
          setIsCopied(false);
        }, 2000);
      } catch (fallbackErr) {
        console.error(fallbackErr);
      }
      document.body.removeChild(textArea);
    }
  }, [textContent]);
  return <div className="code-block mt-5 mb-8 not-prose rounded-2xl relative group text-gray-950 dark:text-gray-50 codeblock-light border border-gray-950/10 dark:border-white/10 dark:twoslash-dark bg-transparent dark:bg-transparent">
      <div className="absolute top-3 right-4 flex items-center gap-1.5">
        <div className="z-10 relative">
          <button onClick={handleCopy} className="h-[26px] w-[26px] flex items-center justify-center rounded-md backdrop-blur peer group/copy-button " data-testid="copy-code-button" aria-label="Copy the contents from the code block">
            {isCopied ? <svg width="16" height="11" viewBox="0 0 16 11" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary dark:fill-primary-light">
                <path d="M14.7813 1.21873C15.0751 1.51248 15.0751 1.98748 14.7813 2.2781L6.53135 10.5312C6.2376 10.825 5.7626 10.825 5.47197 10.5312L1.21885 6.28123C0.925098 5.98748 0.925098 5.51248 1.21885 5.22185C1.5126 4.93123 1.9876 4.9281 2.27822 5.22185L5.99697 8.9406L13.7188 1.21873C14.0126 0.924976 14.4876 0.924976 14.7782 1.21873H14.7813Z"></path>
              </svg> : <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg" className="w-4 h-4 text-gray-400 group-hover/copy-button:text-gray-500 dark:text-white/40 dark:group-hover/copy-button:text-white/60">
                <path d="M14.25 5.25H7.25C6.14543 5.25 5.25 6.14543 5.25 7.25V14.25C5.25 15.3546 6.14543 16.25 7.25 16.25H14.25C15.3546 16.25 16.25 15.3546 16.25 14.25V7.25C16.25 6.14543 15.3546 5.25 14.25 5.25Z" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"></path>
                <path d="M2.80103 11.998L1.77203 5.07397C1.61003 3.98097 2.36403 2.96397 3.45603 2.80197L10.38 1.77297C11.313 1.63397 12.19 2.16297 12.528 3.00097" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"></path>
              </svg>}
          </button>
          <div aria-hidden="true" className="absolute top-11 left-1/2 transform whitespace-nowrap -translate-x-1/2 -translate-y-1/2 peer-hover:opacity-100 opacity-0 text-white rounded-lg px-1.5 py-0.5 text-xs bg-primary-dark">
            {isCopied ? 'Copied' : 'Copy'}
          </div>
        </div>
        <div className="z-10 relative">
          <button onClick={handleAskManus} className="h-[26px] w-[26px] flex items-center justify-center rounded-md backdrop-blur peer group/ask-manus " id="ask-ai-code-block-button" aria-label="Ask Manus">
            <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" className="w-4 h-4 text-gray-400 group-hover/ask-manus:text-gray-500 dark:text-white/40 dark:group-hover/ask-manus:text-white/60">
              <path d="M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z" />
              <path d="M12 8v6" />
              <path d="M9 11h6" />
            </svg>
          </button>
          <div aria-hidden="true" className="absolute top-11 left-1/2 transform whitespace-nowrap -translate-x-1/2 -translate-y-1/2 peer-hover:opacity-100 opacity-0 text-white rounded-lg px-1.5 py-0.5 text-xs bg-primary-dark">
            Ask Manus
          </div>
        </div>
      </div>

      <div className="w-0 min-w-full max-w-full py-3.5 px-4 h-full dark:bg-codeblock relative text-sm leading-6 children:!my-0 children:!shadow-none children:!bg-transparent transition-[height] duration-300 ease-in-out code-block-background [&_*]:ring-0 [&_*]:outline-0 [&_*]:focus:ring-0 [&_*]:focus:outline-0 [&_pre>code]:pr-[3rem] [&_pre>code>span.line-highlight]:min-w-[calc(100%+3rem)] [&_pre>code>span.line-diff]:min-w-[calc(100%+3rem)] rounded-2xl bg-white overflow-x-auto scrollbar-thin scrollbar-thumb-rounded scrollbar-thumb-black/15 hover:scrollbar-thumb-black/20 active:scrollbar-thumb-black/20 dark:scrollbar-thumb-white/20 dark:hover:scrollbar-thumb-white/25 dark:active:scrollbar-thumb-white/25" style={{
    fontVariantLigatures: 'none',
    height: 'auto',
    backgroundColor: 'rgb(255, 255, 255)'
  }}>
        <div className="font-mono whitespace-pre leading-6">{children}</div>
      </div>
    </div>;
};

## त्वरित शुरुआत

<iframe src="https://www.youtube.com/embed/pFDWPizKNxo" title="यूट्यूब वीडियो प्लेयर" frameborder="0" className="w-full aspect-video rounded-xl" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen />

**बुनियादी अनुरोध**

<CodePrompt>
  "हमारे AI ग्राहक सेवा प्लेटफॉर्म के लिए 15-स्लाइड का पिच डेक बनाएं
  जो एंटरप्राइज क्लाइंट्स को लक्षित करता है।"
</CodePrompt>

**विस्तृत अनुरोध**

<CodePrompt>
  "एक Q3 व्यवसाय समीक्षा प्रस्तुति बनाएं। शामिल करें: राजस्व (23% ऊपर),
  ग्राहक अधिग्रहण (लागत 15% कम), उत्पाद लॉन्च (मोबाइल ऐप, API v2),
  और Q4 प्राथमिकताएँ। इसे स्पष्ट चार्ट के साथ कार्यकारी-अनुकूल बनाएं।"
</CodePrompt>

**मौजूदा सामग्री से**

<CodePrompt>
  "इस शोध रिपोर्ट को 20-स्लाइड की कॉन्फ्रेंस प्रस्तुति में बदलें
  जो तकनीकी दर्शकों के लिए हो। मुख्य चार्ट शामिल करें और वक्ता नोट्स जोड़ें।"
</CodePrompt>

## **थीम का उपयोग करना**

**पूर्व-निर्मित टेम्पलेट**

<iframe src="https://www.youtube.com/embed/svWBYYl7Grc" title="यूट्यूब वीडियो प्लेयर" frameborder="0" className="w-full aspect-video rounded-xl" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen />

**अपना टेम्पलेट अपलोड करें**

1. टेम्पलेट आयात करें पर क्लिक करें
2. अपना पावरपॉइंट टेम्पलेट (.pptx) अपलोड करें
3. मैनस आपके लेआउट, रंग और फ़ॉन्ट लागू करता है

## मैनस क्या बनाता है

* स्लाइड्स: स्पष्ट दृश्य पदानुक्रम के साथ पेशेवर लेआउट
* सामग्री: शोध-समर्थित, सुव्यवस्थित कथा
* विज़ुअल्स: कस्टम चार्ट, आरेख और उत्पन्न छवियां
* वक्ता नोट्स: हर स्लाइड के लिए विस्तृत चर्चा बिंदु
* ब्रांडिंग: सुसंगत रंग, फ़ॉन्ट और स्टाइलिंग

## टीमों के साथ सहयोग करें

## निर्यात प्रारूप

* PowerPoint (.pptx): PowerPoint या Google Slides में पूरी तरह से संपादन योग्य
* PDF: वितरण के लिए प्रिंट-तैयार
* वेब स्लाइड्स: इंटरैक्टिव ब्राउज़र-आधारित प्रस्तुति
* वक्ता नोट्स दस्तावेज़: सभी नोट्स के साथ अलग फ़ाइल

## बेहतर प्रस्तुतियों के लिए सुझाव

दर्शकों के बारे में विशिष्ट रहें:

* ✅ "ML से परिचित तकनीकी दर्शक"
* ✅ "व्यावसायिक कार्यकारी, कोई तकनीकी पृष्ठभूमि नहीं"
* ❌ "सामान्य दर्शक"

लक्ष्य परिभाषित करें:

* ✅ "निवेशकों को हमें फंड देने के लिए मनाएं"
* ✅ "छात्रों को बुनियादी बातों पर शिक्षित करें"
* ❌ "जानकारी प्रस्तुत करें"

लंबाई और समय निर्दिष्ट करें:

* ✅ "20 मिनट की प्रस्तुति के लिए 15 स्लाइड"
* ✅ "1 घंटे की कार्यशाला के लिए 30 स्लाइड"
* ❌ "कुछ स्लाइड बनाएं"

Manus को शोध करने दें:

* ✅ "वर्तमान बाजार के रुझानों पर शोध करें और उन्हें शामिल करें"
* ❌ सभी सामग्री स्वयं प्रदान करना

## सामान्य प्रश्न

**क्या मैं निर्माण के बाद स्लाइड संपादित कर सकता हूँ? हाँ। .pptx फ़ाइल डाउनलोड करें और किसी भी प्रस्तुति सॉफ़्टवेयर में संपादित करें।**

इसमें कितना समय लगता है? जटिलता के आधार पर 5-15 मिनट। साधारण 10-स्लाइड डेक: \~5 मिनट। जटिल 40-स्लाइड शोध प्रस्तुति: \~15 मिनट।

**क्या Manus मेरी कंपनी टेम्पलेट का उपयोग कर सकता है? हाँ। अपनी .pptx टेम्पलेट फ़ाइल अपलोड करें।**

अगर मुझे बदलाव की ज़रूरत हो तो क्या होगा? Manus से बातचीत के माध्यम से बदलाव करने के लिए कहें, या सीधे PowerPoint फ़ाइल को संपादित करें।

**क्या Manus मेरे डेटा से चार्ट बना सकता है? हाँ। अपना डेटा (CSV, Excel) अपलोड करें, और Manus उचित विज़ुअलाइज़ेशन बनाएगा।**

कौन सी भाषाएँ समर्थित हैं? सभी प्रमुख भाषाएँ। अपने अनुरोध में निर्दिष्ट करें: "स्पेनिश में बनाएं..."
