{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/3oblPGeqwDLNUKkyRUhV/4Nt2Ykm8ZhJrzGnk0GSK/ParagraphGenerator.js", "ssg:https://framerusercontent.com/modules/75Hjz9NMJpDNZsaxsbnl/G6mvbyGUp62lbfi4OdeS/FvMGR9PqS.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{motion,AnimatePresence}from\"framer-motion\";import{TailwindInjector}from\"https://framerusercontent.com/modules/FMalyiyml0zfWmrcLHA5/AO1U8otujAPbR9ooRVmi/TailwindInjector.js\";const primaryColor=\"rgb(242, 88, 22)\";const loaderTexts=[\"Analyzing your topic...\",\"Crafting compelling paragraphs...\",\"Refining the language...\",\"Polishing the content...\",\"Adding final touches...\"];const writingTones=[\"\uD83D\uDC54 Formal\",\"\uD83E\uDD13 Academic\",\"\uD83D\uDCBC Professional\",\"\uD83D\uDDE3\uFE0F Conversational\",\"\uD83D\uDE0A Friendly\",\"\uD83E\uDD14 Analytical\",\"\uD83D\uDCA1 Informative\",\"\uD83C\uDFAD Persuasive\",\"\uD83C\uDF1F Inspirational\",\"\uD83C\uDFA8 Creative\"];const languages=[\"English\",\"Spanish\",\"French\",\"German\",\"Italian\",\"Chinese\",\"Japanese\"];export function ParagraphGenerator(){const[topic,setTopic]=React.useState(\"\");const[language,setLanguage]=React.useState(\"English\");const[tone,setTone]=React.useState(\"\");const[format,setFormat]=React.useState(\"Paragraphs\");const[paragraphCount,setParagraphCount]=React.useState(1);const[detail,setDetail]=React.useState(\"Concise\");const[isGenerating,setIsGenerating]=React.useState(false);const[generatedContent,setGeneratedContent]=React.useState(\"\");const[loaderTextIndex,setLoaderTextIndex]=React.useState(0);const[error,setError]=React.useState(\"\");const[copied,setCopied]=React.useState(false);const[previousGenerations,setPreviousGenerations]=React.useState([]);React.useEffect(()=>{if(isGenerating){const interval=setInterval(()=>{setLoaderTextIndex(prevIndex=>(prevIndex+1)%loaderTexts.length);},3e3);return()=>clearInterval(interval);}},[isGenerating]);const generateParagraph=async()=>{if(!topic||!tone){setError(\"Please fill in all required fields\");return;}setIsGenerating(true);setGeneratedContent(\"\");setError(\"\");try{const response=await fetch(\"https://prod-api.fibr.shop/client/assistance/rewrite/open/tools\",{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"*/*\"},body:JSON.stringify({input:{context:[{parameter:\"Topic\",value:topic,weightage:\"Highest\",additional_instructions:`Write about ${topic}`},{parameter:\"Language\",value:language,weightage:\"High\",additional_instructions:`Write in ${language}`},{parameter:\"Tone\",value:tone,weightage:\"High\",additional_instructions:`Use a ${tone} tone`},{parameter:\"Format\",value:format,weightage:\"Medium\",additional_instructions:`Format as ${format}`},{parameter:\"Paragraphs\",value:paragraphCount.toString(),weightage:\"Medium\",additional_instructions:`Write ${paragraphCount} paragraph(s)`},{parameter:\"Detail\",value:detail,weightage:\"Medium\",additional_instructions:`Make it ${detail.toLowerCase()}`},{parameter:\"Previous Generations\",value:previousGenerations.join(\"\\n\\n\"),weightage:\"High\",additional_instructions:\"Avoid repeating content from these previous generations\"}],content:[{type:\"Paragraph\",value:\"\"}]}})});if(!response.ok){throw new Error(`HTTP error! status: ${response.status}`);}const result=await response.json();const newContent=result.data.response.content[0].new;setGeneratedContent(newContent);setPreviousGenerations([...previousGenerations,newContent]);}catch(error){console.error(\"Error generating paragraph:\",error);setError(\"An error occurred while generating the paragraph: \"+error.message);}finally{setIsGenerating(false);}};const copyToClipboard=()=>{navigator.clipboard.writeText(generatedContent).then(()=>{setCopied(true);setTimeout(()=>setCopied(false),2e3);});};return /*#__PURE__*/_jsxs(\"div\",{className:\"flex justify-center items-start p-8 font-sans\",style:{fontFamily:\"Plus Jakarta Sans\"},children:[/*#__PURE__*/_jsx(TailwindInjector,{}),/*#__PURE__*/_jsxs(motion.div,{className:\"w-full max-w-2xl bg-white rounded-xl shadow-lg p-8\",initial:{opacity:0,y:20},animate:{opacity:1,y:0},transition:{duration:.5},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"mb-4\",children:[/*#__PURE__*/_jsx(\"label\",{className:\"block text-sm font-medium text-gray-700 mb-2\",children:\"Write about...*\"}),/*#__PURE__*/_jsx(motion.textarea,{whileFocus:{boxShadow:`0 0 0 2px ${primaryColor}`},className:\"w-full p-3 border border-gray-300 rounded-lg focus:outline-none\",rows:3,value:topic,onChange:e=>setTopic(e.target.value),placeholder:\"Enter your topic here...\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"mb-4\",children:[/*#__PURE__*/_jsx(\"label\",{className:\"block text-sm font-medium text-gray-700 mb-2\",children:\"Language\"}),/*#__PURE__*/_jsx(\"select\",{className:\"w-full p-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary\",value:language,onChange:e=>setLanguage(e.target.value),children:languages.map(lang=>/*#__PURE__*/_jsx(\"option\",{value:lang,children:lang},lang))})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"mb-4\",children:[/*#__PURE__*/_jsx(\"label\",{className:\"block text-sm font-medium text-gray-700 mb-2\",children:\"Writing tone*\"}),/*#__PURE__*/_jsxs(\"select\",{className:\"w-full p-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary\",value:tone,onChange:e=>setTone(e.target.value),children:[/*#__PURE__*/_jsx(\"option\",{value:\"\",children:\"Select tone\"}),writingTones.map(t=>/*#__PURE__*/_jsx(\"option\",{value:t,children:t},t))]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"mb-4\",children:[/*#__PURE__*/_jsx(\"label\",{className:\"block text-sm font-medium text-gray-700 mb-2\",children:\"Format as\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"flex space-x-4\",children:[/*#__PURE__*/_jsxs(\"label\",{className:\"inline-flex items-center\",children:[/*#__PURE__*/_jsx(\"input\",{type:\"radio\",className:\"form-radio\",name:\"format\",value:\"Paragraphs\",checked:format===\"Paragraphs\",onChange:e=>setFormat(e.target.value)}),/*#__PURE__*/_jsx(\"span\",{className:\"ml-2\",children:\"Paragraphs\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"inline-flex items-center\",children:[/*#__PURE__*/_jsx(\"input\",{type:\"radio\",className:\"form-radio\",name:\"format\",value:\"Bullet points\",checked:format===\"Bullet points\",onChange:e=>setFormat(e.target.value)}),/*#__PURE__*/_jsx(\"span\",{className:\"ml-2\",children:\"Bullet points\"})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"mb-4\",children:[/*#__PURE__*/_jsx(\"label\",{className:\"block text-sm font-medium text-gray-700 mb-2\",children:\"Write\"}),/*#__PURE__*/_jsxs(\"select\",{className:\"w-full p-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary\",value:paragraphCount,onChange:e=>setParagraphCount(Number(e.target.value)),children:[/*#__PURE__*/_jsx(\"option\",{value:1,children:\"1 paragraph\"}),/*#__PURE__*/_jsx(\"option\",{value:2,children:\"2 paragraphs\"}),/*#__PURE__*/_jsx(\"option\",{value:3,children:\"3 paragraphs\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"mb-6\",children:[/*#__PURE__*/_jsx(\"label\",{className:\"block text-sm font-medium text-gray-700 mb-2\",children:\"Make\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"flex space-x-4\",children:[/*#__PURE__*/_jsxs(\"label\",{className:\"inline-flex items-center\",children:[/*#__PURE__*/_jsx(\"input\",{type:\"radio\",className:\"form-radio\",name:\"detail\",value:\"Concise\",checked:detail===\"Concise\",onChange:e=>setDetail(e.target.value)}),/*#__PURE__*/_jsx(\"span\",{className:\"ml-2\",children:\"Concise\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"inline-flex items-center\",children:[/*#__PURE__*/_jsx(\"input\",{type:\"radio\",className:\"form-radio\",name:\"detail\",value:\"Detailed\",checked:detail===\"Detailed\",onChange:e=>setDetail(e.target.value)}),/*#__PURE__*/_jsx(\"span\",{className:\"ml-2\",children:\"Detailed\"})]})]})]}),/*#__PURE__*/_jsx(motion.button,{whileHover:{scale:1.05},whileTap:{scale:.95},className:\"w-full py-3 px-6 text-white rounded-lg text-lg font-semibold\",style:{backgroundColor:primaryColor},onClick:generateParagraph,disabled:isGenerating,children:isGenerating?\"Generating...\":\"Generate Copy\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:isGenerating&&/*#__PURE__*/_jsxs(motion.div,{initial:{opacity:0,height:0},animate:{opacity:1,height:\"auto\"},exit:{opacity:0,height:0},className:\"mt-6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"flex items-center justify-center\",children:/*#__PURE__*/_jsx(\"div\",{className:\"w-12 h-12 border-t-4 border-b-4 border-primary rounded-full animate-spin\",style:{borderColor:primaryColor}})}),/*#__PURE__*/_jsx(\"p\",{className:\"text-center mt-4 text-gray-600\",children:loaderTexts[loaderTextIndex]})]})}),/*#__PURE__*/_jsx(AnimatePresence,{children:generatedContent&&!isGenerating&&/*#__PURE__*/_jsxs(motion.div,{initial:{opacity:0,height:0},animate:{opacity:1,height:\"auto\"},exit:{opacity:0,height:0},className:\"mt-6\",children:[/*#__PURE__*/_jsx(\"h2\",{className:\"text-xl font-semibold mb-2\",children:\"Generated Content:\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"p-4 bg-gray-100 rounded-lg mb-4 relative\",children:[/*#__PURE__*/_jsx(\"p\",{className:\"whitespace-pre-wrap\",children:generatedContent}),/*#__PURE__*/_jsx(motion.button,{whileHover:{scale:1.05},whileTap:{scale:.95},className:\"absolute top-2 right-2 p-2 bg-white rounded-full shadow-md\",onClick:copyToClipboard,children:copied?/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",className:\"h-5 w-5 text-green-500\",viewBox:\"0 0 20 20\",fill:\"currentColor\",children:/*#__PURE__*/_jsx(\"path\",{fillRule:\"evenodd\",d:\"M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z\",clipRule:\"evenodd\"})}):/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",className:\"h-5 w-5 text-gray-500\",viewBox:\"0 0 20 20\",fill:\"currentColor\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M8 2a1 1 0 000 2h2a1 1 0 100-2H8z\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M3 5a2 2 0 012-2 3 3 0 003 3h2a3 3 0 003-3 2 2 0 012 2v6h-4.586l1.293-1.293a1 1 0 00-1.414-1.414l-3 3a1 1 0 000 1.414l3 3a1 1 0 001.414-1.414L10.414 13H15v3a2 2 0 01-2 2H7a2 2 0 01-2-2V5z\"})]})})]})]})}),error&&/*#__PURE__*/_jsx(motion.div,{initial:{opacity:0},animate:{opacity:1},className:\"mt-4 p-3 bg-red-100 border border-red-400 text-red-700 rounded\",children:error})]})]});}\nexport const __FramerMetadata__ = {\"exports\":{\"ParagraphGenerator\":{\"type\":\"reactComponent\",\"name\":\"ParagraphGenerator\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ParagraphGenerator.map", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import MainCTABannerV25 from\"#framer/local/canvasComponent/B1uKs0hqZ/B1uKs0hqZ.js\";import FaqAccordian from\"#framer/local/canvasComponent/bDyM3ZzlK/bDyM3ZzlK.js\";import FooterV25 from\"#framer/local/canvasComponent/SbLUB1gTe/SbLUB1gTe.js\";import{ParagraphGenerator}from\"#framer/local/codeFile/HLyNzEV/ParagraphGenerator.js\";import*as sharedStyle3 from\"#framer/local/css/I0yTfaIjx/I0yTfaIjx.js\";import*as sharedStyle4 from\"#framer/local/css/Mio69B9CO/Mio69B9CO.js\";import*as sharedStyle2 from\"#framer/local/css/NDC2MFhAc/NDC2MFhAc.js\";import*as sharedStyle5 from\"#framer/local/css/P6RzN2iMb/P6RzN2iMb.js\";import*as sharedStyle1 from\"#framer/local/css/PO1C8y5XF/PO1C8y5XF.js\";import*as sharedStyle from\"#framer/local/css/rhC_m78Ue/rhC_m78Ue.js\";import metadataProvider from\"#framer/local/webPageMetadata/FvMGR9PqS/FvMGR9PqS.js\";const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const ParagraphGeneratorFonts=getFonts(ParagraphGenerator);const MainCTABannerV25Fonts=getFonts(MainCTABannerV25);const FaqAccordianFonts=getFonts(FaqAccordian);const FooterV25Fonts=getFonts(FooterV25);const breakpoints={dhi_Mzhfj:\"(min-width: 810px) and (max-width: 1279px)\",FqrAXYu2r:\"(max-width: 809px)\",nG3zBZTPr:\"(min-width: 1280px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-LJeGK\";const variantClassNames={dhi_Mzhfj:\"framer-v-1xf5128\",FqrAXYu2r:\"framer-v-1lsfwjt\",nG3zBZTPr:\"framer-v-1g6sfyw\"};const transition1={damping:40,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation={opacity:.4,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={delay:0,duration:20,ease:[.38,.2,.46,.75],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-220,y:-20};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"nG3zBZTPr\",Phone:\"FqrAXYu2r\",Tablet:\"dhi_Mzhfj\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"nG3zBZTPr\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"nG3zBZTPr\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(251, 251, 251); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1g6sfyw\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x7i1d9\",\"data-framer-name\":\"Main Flow\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t5qpxz\",\"data-framer-name\":\"Subflow\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i636wn\",\"data-framer-name\":\"Topbar\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sqbce0\",\"data-framer-name\":\"navbar\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ot0q2c5H4\"},nodeId:\"tLAtTZ0ix\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-4es11e\",\"data-styles-preset\":\"rhC_m78Ue\",children:\"Tools\"})})})}),className:\"framer-tx84t8\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\">\"})}),className:\"framer-184qbfu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(82, 82, 82)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":ZU14V8mWG\",webPageId:\"ot0q2c5H4\"},nodeId:\"lhmrElXKZ\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-4es11e\",\"data-styles-preset\":\"rhC_m78Ue\",children:\"Content Creation & Optimization\"})})})}),className:\"framer-thzuxe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\">\"})}),className:\"framer-1i1ir4b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\"},children:\"AI Paragraph Generator\"})}),className:\"framer-1e02hw3\",fonts:[\"Inter-Light\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i2ht44\",\"data-framer-name\":\"Divider\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-htj65i\",\"data-framer-name\":\"Line\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m4u39o\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-swubs3\",\"data-styles-preset\":\"PO1C8y5XF\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Free\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-97ec787c-abd6-4026-bdf7-079e1f53bc2f, rgb(255, 77, 0))\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-afdcaf7b-fc9f-43c3-bdce-a076970e9c51, rgb(249, 99, 24))\"},children:\"AI Paragraph Generator\"})]})}),className:\"framer-17arnac\",\"data-framer-name\":\"MOCO BLOG\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dhi_Mzhfj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Unable to write that one section in your blog? Just need two more paragraphs to complete a long pending thesis? Then we have the perfect mini assistant cum brainstorming partner cum writer for you\u2014AI paragraph generators. \"})})},FqrAXYu2r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Unable to write that one section in your blog? Just need two more paragraphs to complete a long pending thesis? Then we have the perfect mini assistant cum brainstorming partner cum writer for you\u2014AI paragraph generators. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Unable to write that one section in your blog? Just need two more paragraphs to complete a long pending thesis? Then we have the perfect mini assistant cum brainstorming partner cum writer for you\u2014AI paragraph generators. \"})}),className:\"framer-cfqq7v\",\"data-framer-name\":\"MOCO BLOG\",fonts:[\"FR;InterDisplay\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1hot1ad\",\"data-framer-appear-id\":\"1hot1ad\",\"data-framer-name\":\"gradient-top-right\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1omkpg\",\"data-framer-name\":\"blue\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wiwi2d\",\"data-framer-name\":\"blue-2\"})]}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:.4,animate:animation,className:\"framer-10pdwxn\",\"data-framer-appear-id\":\"10pdwxn\",\"data-framer-name\":\"gradient-top-left\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-j5yrg9\",\"data-framer-name\":\"yellow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zxgx10\",\"data-framer-name\":\"green\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16ibvp9\",\"data-framer-name\":\"yellow\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xcoyb0-container\",children:/*#__PURE__*/_jsx(ParagraphGenerator,{height:\"100%\",id:\"ViUir0pX1\",layoutId:\"ViUir0pX1\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dhi_Mzhfj:{height:404,y:(componentViewport?.y||0)+0+589.6},FqrAXYu2r:{height:404,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:550,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+551.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qub09o-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dhi_Mzhfj:{style:{width:\"100%\"},variant:\"hjSJtJnyW\"},FqrAXYu2r:{style:{width:\"100%\"},variant:\"wpC1YTrwj\"}},children:/*#__PURE__*/_jsx(MainCTABannerV25,{height:\"100%\",id:\"BE4DYUY_6\",layoutId:\"BE4DYUY_6\",style:{height:\"100%\",width:\"100%\"},variant:\"Ytp_RiHTk\",width:\"100%\",WWZasKv4I:123})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q418gd\",\"data-framer-name\":\"editor-section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f51xwk\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-103lt3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-e990rh\",\"data-styles-preset\":\"NDC2MFhAc\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"What is an AI paragraph generator?\"})})}),className:\"framer-1is4x34\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hdx8vz\",\"data-styles-preset\":\"I0yTfaIjx\",children:\"An AI paragraph generator is an advanced software designed to craft contextually relevant paragraphs based on user input. By leveraging machine learning algorithms, this tool analyzes context, keywords, topics, and more to generate human-like text that aligns with the specified content.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hdx8vz\",\"data-styles-preset\":\"I0yTfaIjx\",children:\"As the algorithms are trained on extensive datasets, the AI learns grammar, semantics, syntax, and even relevance. For instance, if you\u2019re a writer looking to write a conclusion to a blog piece, you simply need to just enter the context, style, and tone you\u2019re looking for; once done the generator will process this information to produce a conclusion paragraph that is not only grammatically sound but also contextually appropriate.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hdx8vz\",\"data-styles-preset\":\"I0yTfaIjx\",children:\"The basic objective of the AI paragraph generator is to aid the writing process and enable users to create more content without compromising on style, tone, and consistency. And by automating initial drafting and brainstorming, it allows users to focus on refining and enhancing content, thereby improving overall productivity.\\xa0\"})]}),className:\"framer-127xhbg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16gic6y\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-e990rh\",\"data-styles-preset\":\"NDC2MFhAc\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"How does Fibr\u2019s free AI paragraph generator work?\"})})}),className:\"framer-1n76wf5\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hdx8vz\",\"data-styles-preset\":\"I0yTfaIjx\",children:\"The Fibr AI paragraph generator is super straightforward to use. Here are the steps to get you started\u2014\"}),/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-t29six\",\"data-styles-preset\":\"Mio69B9CO\",style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:\"Write About:\\xa0\"})})}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-hdx8vz\",\"data-styles-preset\":\"I0yTfaIjx\",children:[\"The first field on the page, here you need to input the topi\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"c and details about the paragraph you wish to generate. It could be anything\u2014finance, beauty, education, eCommerce, and more.\\xa0\"})]}),/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-t29six\",\"data-styles-preset\":\"Mio69B9CO\",start:\"2\",style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:\"Language:\\xa0\"})})}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-hdx8vz\",\"data-styles-preset\":\"I0yTfaIjx\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[\"Fibr AI\u2019s paragraph generator gives you the option to write in more than one language. Besides English,\",/*#__PURE__*/_jsx(\"strong\",{children:\" \"}),\"choose from Spanish, German, Chinese, Japanese, and more depending on your needs.\\xa0\"]}),/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-t29six\",\"data-styles-preset\":\"Mio69B9CO\",start:\"3\",style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:\"Writing Tone:\\xa0\"})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hdx8vz\",\"data-styles-preset\":\"I0yTfaIjx\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Next you need to choose the tone of the paragraph you\u2019re generating. You can choose from a plethora of options like academic, professional, friendly, creative, etc. If you\u2019re writing a research paper for instance, then the tone could be analytical and professional. If the use case is a blog, you can choose creative and conversational tones.\\xa0\"}),/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-t29six\",\"data-styles-preset\":\"Mio69B9CO\",start:\"4\",style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:\"Format:\\xa0\"})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hdx8vz\",\"data-styles-preset\":\"I0yTfaIjx\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Here\u2019s the interesting bit\u2014you have to pick between generating a paragraph or bullet points. Again this will depend on your specific use case and purpose.\\xa0\"}),/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-t29six\",\"data-styles-preset\":\"Mio69B9CO\",start:\"5\",style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:\"Write:\\xa0\"})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hdx8vz\",\"data-styles-preset\":\"I0yTfaIjx\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Under this field, you can choose the number of paragraphs you wish to generate. You can generate up to 3 paragraphs using Fibr AI free AI paragraph generator\\xa0\"}),/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-t29six\",\"data-styles-preset\":\"Mio69B9CO\",start:\"6\",style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:\"Make:\\xa0\"})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hdx8vz\",\"data-styles-preset\":\"I0yTfaIjx\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"The last field presents you with two options\u2014Concise and Detailed. If you need your paragraphs to be super detailed, you can choose the latter. If you\u2019re aiming for brevity, the former would be the best option.\"})]}),className:\"framer-2ydhe5\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8qa6zr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-e990rh\",\"data-styles-preset\":\"NDC2MFhAc\",style:{\"--framer-text-alignment\":\"left\"},children:\"Benefits of using Fibr AI\u2019s free AI paragraph generator\"})}),className:\"framer-zkb5ga\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-t29six\",\"data-styles-preset\":\"Mio69B9CO\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"h3\",{children:[\"Enhanced productivity:\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:\"\\xa0\"})]})})}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-hdx8vz\",\"data-styles-preset\":\"I0yTfaIjx\",children:[\"If you\u2019re writing a research paper, or a blog, using a paragraph generator can add speed to the whole process. Things that would earlier take hours to complete can now be done in a few seconds. That\u2019s the power \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"of AI paragraph generators.\\xa0\"})]}),/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-t29six\",\"data-styles-preset\":\"Mio69B9CO\",start:\"2\",style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:\"Cost-effectiveness:\\xa0\"})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hdx8vz\",\"data-styles-preset\":\"I0yTfaIjx\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"If you\u2019re thinking that these dynamic tools would be expensive, think again. You can access free paragraph generators to create unique content instantly, and in any tone and style you prefer.\\xa0\"}),/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-t29six\",\"data-styles-preset\":\"Mio69B9CO\",start:\"3\",style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:\"Consistency in tone and style:\\xa0\"})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hdx8vz\",\"data-styles-preset\":\"I0yTfaIjx\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"A common problem with content creation is the inability to maintain consistency. But that\u2019s a thing of the past\u2014Fibr AI\u2019s paragraph generator comes with separate fields to choose the paragraph\u2019s style and tone, ensuring the content produced is exactly in line with the style or tone you need.\\xa0\\xa0\"}),/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-t29six\",\"data-styles-preset\":\"Mio69B9CO\",start:\"4\",style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:\"Versatility across domains:\\xa0\"})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hdx8vz\",\"data-styles-preset\":\"I0yTfaIjx\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Whether you need to write a paragraph for Instagram or need to insert 5 bullet points in your thesis, AI paragraph generators are capable of doing both, seamlessly.\\xa0 Sections of blogs, ads, brochures, campaign copy, website copy, and more can be easily created using Fibr\u2019s AI paragraph generator.\"})]}),className:\"framer-bxwff6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cfmwu5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-e990rh\",\"data-styles-preset\":\"NDC2MFhAc\",style:{\"--framer-text-alignment\":\"left\"},children:\"Applications of AI paragraph generators\"})}),className:\"framer-y4dah0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hdx8vz\",\"data-styles-preset\":\"I0yTfaIjx\",children:\"The versatility of advanced paragraph generators extends across many fields and areas\u2014\"}),/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-t29six\",\"data-styles-preset\":\"Mio69B9CO\",style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:\"Content Marketing:\\xa0\"})})}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-hdx8vz\",\"data-styles-preset\":\"I0yTfaIjx\",children:[\"The largest application can arguably be seen in the content space. If you\u2019re writing a social media post or an ad, this tool can help generate tailored content\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\" in seconds! Also, it can be used to craft professional presentations to enhance audience outreach and engagement.\\xa0\"})]}),/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-t29six\",\"data-styles-preset\":\"Mio69B9CO\",start:\"2\",style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:\"Academic writing:\\xa0\"})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hdx8vz\",\"data-styles-preset\":\"I0yTfaIjx\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Students, researchers, and the academic industry can deploy AI paragraph generators to draft certain sections or H2s of an essay or blog, parts of the thesis, and more to streamline their writing processes.\\xa0\"}),/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-t29six\",\"data-styles-preset\":\"Mio69B9CO\",start:\"3\",style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:\"Business communication:\\xa0\"})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hdx8vz\",\"data-styles-preset\":\"I0yTfaIjx\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Businesses can use paragraph generators to quickly write or create professional emails, reports, and other marketing materials.\"}),/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-t29six\",\"data-styles-preset\":\"Mio69B9CO\",start:\"4\",style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:\"Creative writing:\\xa0\"})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hdx8vz\",\"data-styles-preset\":\"I0yTfaIjx\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Individuals in the creative field facing writer\u2019s block can use these paragraph generators to explore new ideas and concepts and overcome common creativity issues.\\xa0\"}),/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-t29six\",\"data-styles-preset\":\"Mio69B9CO\",start:\"5\",style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--framer-text-color\":\"rgb(67, 67, 67)\"},children:\"Educational material:\\xa0\"})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hdx8vz\",\"data-styles-preset\":\"I0yTfaIjx\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Paragraph generators can also be used to create educational material like textbooks, instruction materials, and more.\"})]}),className:\"framer-126zghv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rnkrph\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-e990rh\",\"data-styles-preset\":\"NDC2MFhAc\",style:{\"--framer-text-alignment\":\"left\"},children:\"Conclusion\"})}),className:\"framer-1aqxelc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aatlr6\",\"data-styles-preset\":\"P6RzN2iMb\",style:{\"--framer-text-alignment\":\"left\"},children:\"Sometimes, individuals can get stuck in their creative processes\u2014it can happen to the best writers, researchers, and marketers. However, that shouldn\u2019t become a roadblock to success. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aatlr6\",\"data-styles-preset\":\"P6RzN2iMb\",style:{\"--framer-text-alignment\":\"left\"},children:\"Such individuals can rely on AI paragraph generators to break the monotony, have a brainstorming partner, maintain consistency, and break free from the curse of writer\u2019s block. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aatlr6\",\"data-styles-preset\":\"P6RzN2iMb\",style:{\"--framer-text-alignment\":\"left\"},children:\"These generators can produce content tailored to your specific needs, tone, and writing style in seconds\u2014so, no more delays and missed deadlines!\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aatlr6\",\"data-styles-preset\":\"P6RzN2iMb\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Also, as AI continues to evolve, the powers of these generators are expected to expand further, making them further valuable in the content creation process.\"})]}),className:\"framer-fm4pqu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h5sza7\",\"data-framer-name\":\"FAQ\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-uelv0g\",\"data-framer-appear-id\":\"uelv0g\",\"data-framer-name\":\"gradient-top-right\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kfb08z\",\"data-framer-name\":\"blue\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13029jb\",\"data-framer-name\":\"blue-2\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17e5g9\",\"data-framer-name\":\"wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vxlctp\",\"data-framer-name\":\"heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-swubs3\",\"data-styles-preset\":\"PO1C8y5XF\",children:\"Find answers below\"})}),className:\"framer-1d2mwj3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xnz7gi\",\"data-framer-name\":\"faq-list\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dhi_Mzhfj:{width:`min(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 800px)`,y:(componentViewport?.y||0)+0+5507.6+80+0+0+336+80+0},FqrAXYu2r:{width:`min(min(${componentViewport?.width||\"100vw\"} - 32px, 1200px), 800px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`min(min(${componentViewport?.width||\"100vw\"} - 160px, 1200px), 800px)`,y:(componentViewport?.y||0)+0+5695.4+80+0+0+336+80+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1opm0ns-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FqrAXYu2r:{variant:\"P72VmgoKR\"}},children:/*#__PURE__*/_jsx(FaqAccordian,{aRHGtJ10l:\"Are AI paragraph generators free to use?\",eV_v0jGRj:\"Many free paragraph generators offer basic content generation features; however advanced capabilities may require subscriptions or one-time payments. Fibr AI\u2019s paragraph generator is free to use. \",height:\"100%\",id:\"Tln3tb1Mt\",layoutId:\"Tln3tb1Mt\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"NUN_t16JA\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dhi_Mzhfj:{width:`min(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 800px)`,y:(componentViewport?.y||0)+0+5507.6+80+0+0+336+80+224},FqrAXYu2r:{width:`min(min(${componentViewport?.width||\"100vw\"} - 32px, 1200px), 800px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`min(min(${componentViewport?.width||\"100vw\"} - 160px, 1200px), 800px)`,y:(componentViewport?.y||0)+0+5695.4+80+0+0+336+80+224,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x42n0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FqrAXYu2r:{variant:\"P72VmgoKR\"}},children:/*#__PURE__*/_jsx(FaqAccordian,{aRHGtJ10l:\"How accurate is the content produced by free AI paragraph generators?\",eV_v0jGRj:\"AI paragraph generators rely on advanced tech to produce accurate and factual sound content. However, sometimes these models can hallucinate and generate incorrect information. It is thus imperative that you check dates, numbers, figures, and more to ensure the content is accurate. \",height:\"100%\",id:\"dYdsTCzTF\",layoutId:\"dYdsTCzTF\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"NUN_t16JA\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dhi_Mzhfj:{width:`min(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 800px)`,y:(componentViewport?.y||0)+0+5507.6+80+0+0+336+80+448},FqrAXYu2r:{width:`min(min(${componentViewport?.width||\"100vw\"} - 32px, 1200px), 800px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`min(min(${componentViewport?.width||\"100vw\"} - 160px, 1200px), 800px)`,y:(componentViewport?.y||0)+0+5695.4+80+0+0+336+80+448,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fj0olx-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FqrAXYu2r:{variant:\"P72VmgoKR\"}},children:/*#__PURE__*/_jsx(FaqAccordian,{aRHGtJ10l:\"Are there ethical concerns when using paragraph generators?\",eV_v0jGRj:\"Yes, ethical considerations can arise regarding plagiarised content and the generation of factual incorrect, or biased information. You must address these issues before you use the content generated. \",height:\"100%\",id:\"BCJ72muod\",layoutId:\"BCJ72muod\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"NUN_t16JA\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dhi_Mzhfj:{width:`min(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 800px)`,y:(componentViewport?.y||0)+0+5507.6+80+0+0+336+80+672},FqrAXYu2r:{width:`min(min(${componentViewport?.width||\"100vw\"} - 32px, 1200px), 800px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`min(min(${componentViewport?.width||\"100vw\"} - 160px, 1200px), 800px)`,y:(componentViewport?.y||0)+0+5695.4+80+0+0+336+80+672,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jiesqd-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FqrAXYu2r:{variant:\"P72VmgoKR\"}},children:/*#__PURE__*/_jsx(FaqAccordian,{aRHGtJ10l:\"How can I choose the right paragraph generator?\",eV_v0jGRj:\"Before you lock in an AI paragraph generator, consider factors such as specific features, language support, ease of use, and reviews. It\u2019s also super important to keep in mind the use case before finalizing the right generator.\",height:\"100%\",id:\"WQukOI0Cn\",layoutId:\"WQukOI0Cn\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"NUN_t16JA\",width:\"100%\"})})})})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dhi_Mzhfj:{y:(componentViewport?.y||0)+0+6955.6},FqrAXYu2r:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7143.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-iu7t7z-container\",children:/*#__PURE__*/_jsx(FooterV25,{height:\"100%\",id:\"yD9ozD7gn\",layoutId:\"yD9ozD7gn\",style:{width:\"100%\"},variant:\"gtxmF5Vfj\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LJeGK.framer-131envw, .framer-LJeGK .framer-131envw { display: block; }\",\".framer-LJeGK.framer-1g6sfyw { align-content: center; align-items: center; background-color: #fbfbfb; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-LJeGK .framer-1x7i1d9 { align-content: center; align-items: center; background-color: #fbfbfb; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 39px; height: min-content; justify-content: center; overflow: hidden; padding: 70px 80px 100px 80px; position: relative; width: 100%; }\",\".framer-LJeGK .framer-t5qpxz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LJeGK .framer-i636wn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-LJeGK .framer-1sqbce0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LJeGK .framer-tx84t8, .framer-LJeGK .framer-thzuxe { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-LJeGK .framer-184qbfu, .framer-LJeGK .framer-1i1ir4b, .framer-LJeGK .framer-1e02hw3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-LJeGK .framer-i2ht44 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-LJeGK .framer-htj65i { background-color: rgba(64, 64, 64, 0.25); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-LJeGK .framer-1m4u39o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-LJeGK .framer-17arnac { --framer-paragraph-spacing: 0px; flex: 0.9 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-LJeGK .framer-cfqq7v { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-LJeGK .framer-1hot1ad { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 448px; justify-content: center; left: 70px; opacity: 0.4; overflow: visible; padding: 0px; position: absolute; top: -360px; width: 650px; z-index: 0; }\",\".framer-LJeGK .framer-1omkpg, .framer-LJeGK .framer-1kfb08z { -webkit-filter: blur(90px); background-color: #ff470a; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -23px; filter: blur(90px); flex: none; left: -212px; opacity: 0.36; position: absolute; right: -86px; top: -209px; z-index: 0; }\",\".framer-LJeGK .framer-wiwi2d, .framer-LJeGK .framer-13029jb { -webkit-filter: blur(82px); background-color: #ff470a; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; bottom: -11px; filter: blur(82px); flex: none; left: -355px; opacity: 0.36; position: absolute; right: 0px; top: -16px; z-index: 0; }\",\".framer-LJeGK .framer-10pdwxn { align-content: center; align-items: center; bottom: -106px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 531px; justify-content: center; opacity: 0.4; overflow: visible; padding: 0px; position: absolute; right: -339px; width: 317px; z-index: 0; }\",\".framer-LJeGK .framer-j5yrg9 { -webkit-filter: blur(76px); background-color: rgba(255, 98, 0, 0.82); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(76px); flex: none; height: 520px; position: absolute; right: 218px; top: 119px; width: 890px; z-index: 1; }\",\".framer-LJeGK .framer-zxgx10 { -webkit-filter: blur(95px); background-color: #ff7f3b; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(95px); flex: none; height: 425px; overflow: hidden; position: absolute; right: 62px; top: 123px; width: 345px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-LJeGK .framer-16ibvp9 { -webkit-filter: blur(76px); background-color: rgba(255, 98, 0, 0.82); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(76px); flex: none; height: 520px; position: absolute; right: 524px; top: 19px; width: 890px; z-index: 1; }\",\".framer-LJeGK .framer-xcoyb0-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 100%; }\",\".framer-LJeGK .framer-qub09o-container { flex: none; height: 55.00000000000001vh; position: relative; width: 100%; }\",\".framer-LJeGK .framer-q418gd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 64px 80px 80px 80px; position: relative; width: 100%; }\",\".framer-LJeGK .framer-1f51xwk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LJeGK .framer-103lt3, .framer-LJeGK .framer-16gic6y, .framer-LJeGK .framer-8qa6zr, .framer-LJeGK .framer-1cfmwu5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LJeGK .framer-1is4x34, .framer-LJeGK .framer-127xhbg, .framer-LJeGK .framer-1n76wf5, .framer-LJeGK .framer-2ydhe5, .framer-LJeGK .framer-zkb5ga, .framer-LJeGK .framer-bxwff6, .framer-LJeGK .framer-y4dah0, .framer-LJeGK .framer-126zghv, .framer-LJeGK .framer-1aqxelc, .framer-LJeGK .framer-fm4pqu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-LJeGK .framer-1rnkrph { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LJeGK .framer-1h5sza7 { align-content: center; align-items: center; background-color: var(--token-b2379071-e3ab-457f-aeb0-c2e2d1a178e0, #fbfbfb); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-LJeGK .framer-uelv0g { align-content: center; align-items: center; background-color: #ffffff; bottom: 157px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 233px; justify-content: center; opacity: 0.4; overflow: visible; padding: 0px; position: absolute; right: 0px; width: 422px; z-index: 0; }\",\".framer-LJeGK .framer-17e5g9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-LJeGK .framer-vxlctp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-LJeGK .framer-1d2mwj3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 880px; position: relative; white-space: pre-wrap; width: 880px; word-break: break-word; word-wrap: break-word; }\",\".framer-LJeGK .framer-xnz7gi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-LJeGK .framer-1opm0ns-container, .framer-LJeGK .framer-1x42n0-container, .framer-LJeGK .framer-fj0olx-container, .framer-LJeGK .framer-jiesqd-container { flex: none; height: auto; max-width: 800px; position: relative; width: 100%; }\",\".framer-LJeGK .framer-iu7t7z-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-LJeGK.framer-1g6sfyw, .framer-LJeGK .framer-1x7i1d9, .framer-LJeGK .framer-t5qpxz, .framer-LJeGK .framer-i636wn, .framer-LJeGK .framer-1sqbce0, .framer-LJeGK .framer-i2ht44, .framer-LJeGK .framer-1m4u39o, .framer-LJeGK .framer-1hot1ad, .framer-LJeGK .framer-10pdwxn, .framer-LJeGK .framer-q418gd, .framer-LJeGK .framer-1f51xwk, .framer-LJeGK .framer-103lt3, .framer-LJeGK .framer-16gic6y, .framer-LJeGK .framer-8qa6zr, .framer-LJeGK .framer-1cfmwu5, .framer-LJeGK .framer-1rnkrph, .framer-LJeGK .framer-1h5sza7, .framer-LJeGK .framer-uelv0g, .framer-LJeGK .framer-17e5g9, .framer-LJeGK .framer-vxlctp, .framer-LJeGK .framer-xnz7gi { gap: 0px; } .framer-LJeGK.framer-1g6sfyw > *, .framer-LJeGK .framer-17e5g9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-LJeGK.framer-1g6sfyw > :first-child, .framer-LJeGK .framer-1x7i1d9 > :first-child, .framer-LJeGK .framer-t5qpxz > :first-child, .framer-LJeGK .framer-i636wn > :first-child, .framer-LJeGK .framer-i2ht44 > :first-child, .framer-LJeGK .framer-q418gd > :first-child, .framer-LJeGK .framer-1f51xwk > :first-child, .framer-LJeGK .framer-103lt3 > :first-child, .framer-LJeGK .framer-16gic6y > :first-child, .framer-LJeGK .framer-8qa6zr > :first-child, .framer-LJeGK .framer-1cfmwu5 > :first-child, .framer-LJeGK .framer-1rnkrph > :first-child, .framer-LJeGK .framer-1h5sza7 > :first-child, .framer-LJeGK .framer-17e5g9 > :first-child, .framer-LJeGK .framer-vxlctp > :first-child, .framer-LJeGK .framer-xnz7gi > :first-child { margin-top: 0px; } .framer-LJeGK.framer-1g6sfyw > :last-child, .framer-LJeGK .framer-1x7i1d9 > :last-child, .framer-LJeGK .framer-t5qpxz > :last-child, .framer-LJeGK .framer-i636wn > :last-child, .framer-LJeGK .framer-i2ht44 > :last-child, .framer-LJeGK .framer-q418gd > :last-child, .framer-LJeGK .framer-1f51xwk > :last-child, .framer-LJeGK .framer-103lt3 > :last-child, .framer-LJeGK .framer-16gic6y > :last-child, .framer-LJeGK .framer-8qa6zr > :last-child, .framer-LJeGK .framer-1cfmwu5 > :last-child, .framer-LJeGK .framer-1rnkrph > :last-child, .framer-LJeGK .framer-1h5sza7 > :last-child, .framer-LJeGK .framer-17e5g9 > :last-child, .framer-LJeGK .framer-vxlctp > :last-child, .framer-LJeGK .framer-xnz7gi > :last-child { margin-bottom: 0px; } .framer-LJeGK .framer-1x7i1d9 > * { margin: 0px; margin-bottom: calc(39px / 2); margin-top: calc(39px / 2); } .framer-LJeGK .framer-t5qpxz > *, .framer-LJeGK .framer-i2ht44 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-LJeGK .framer-i636wn > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-LJeGK .framer-1sqbce0 > *, .framer-LJeGK .framer-1hot1ad > *, .framer-LJeGK .framer-10pdwxn > *, .framer-LJeGK .framer-uelv0g > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-LJeGK .framer-1sqbce0 > :first-child, .framer-LJeGK .framer-1m4u39o > :first-child, .framer-LJeGK .framer-1hot1ad > :first-child, .framer-LJeGK .framer-10pdwxn > :first-child, .framer-LJeGK .framer-uelv0g > :first-child { margin-left: 0px; } .framer-LJeGK .framer-1sqbce0 > :last-child, .framer-LJeGK .framer-1m4u39o > :last-child, .framer-LJeGK .framer-1hot1ad > :last-child, .framer-LJeGK .framer-10pdwxn > :last-child, .framer-LJeGK .framer-uelv0g > :last-child { margin-right: 0px; } .framer-LJeGK .framer-1m4u39o > * { margin: 0px; margin-left: calc(19px / 2); margin-right: calc(19px / 2); } .framer-LJeGK .framer-q418gd > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-LJeGK .framer-1f51xwk > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-LJeGK .framer-103lt3 > *, .framer-LJeGK .framer-16gic6y > *, .framer-LJeGK .framer-8qa6zr > *, .framer-LJeGK .framer-1cfmwu5 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-LJeGK .framer-1rnkrph > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-LJeGK .framer-1h5sza7 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-LJeGK .framer-vxlctp > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-LJeGK .framer-xnz7gi > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,\"@media (min-width: 810px) and (max-width: 1279px) { .framer-LJeGK.framer-1g6sfyw { width: 810px; } .framer-LJeGK .framer-1x7i1d9 { padding: 64px 40px 100px 40px; } .framer-LJeGK .framer-1m4u39o { flex-direction: column; } .framer-LJeGK .framer-17arnac, .framer-LJeGK .framer-cfqq7v { flex: none; width: 100%; } .framer-LJeGK .framer-qub09o-container { height: auto; } .framer-LJeGK .framer-q418gd { padding: 64px 40px 0px 40px; } .framer-LJeGK .framer-1h5sza7 { padding: 80px 40px 80px 40px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-LJeGK .framer-1m4u39o { gap: 0px; } .framer-LJeGK .framer-1m4u39o > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-LJeGK .framer-1m4u39o > :first-child { margin-top: 0px; } .framer-LJeGK .framer-1m4u39o > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-LJeGK.framer-1g6sfyw { width: 390px; } .framer-LJeGK .framer-1x7i1d9 { padding: 48px 16px 64px 16px; } .framer-LJeGK .framer-1sqbce0 { flex-wrap: wrap; } .framer-LJeGK .framer-1m4u39o { flex-direction: column; } .framer-LJeGK .framer-17arnac, .framer-LJeGK .framer-cfqq7v { flex: none; width: 100%; } .framer-LJeGK .framer-qub09o-container { height: auto; } .framer-LJeGK .framer-q418gd, .framer-LJeGK .framer-1h5sza7 { padding: 64px 16px 64px 16px; } .framer-LJeGK .framer-1d2mwj3 { width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-LJeGK .framer-1m4u39o { gap: 0px; } .framer-LJeGK .framer-1m4u39o > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-LJeGK .framer-1m4u39o > :first-child { margin-top: 0px; } .framer-LJeGK .framer-1m4u39o > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7243.13\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dhi_Mzhfj\":{\"layout\":[\"fixed\",\"auto\"]},\"FqrAXYu2r\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerFvMGR9PqS=withCSS(Component,css,\"framer-LJeGK\");export default FramerFvMGR9PqS;FramerFvMGR9PqS.displayName=\"Tools / Caption Generator\";FramerFvMGR9PqS.defaultProps={height:7243.13,width:1280};addFonts(FramerFvMGR9PqS,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/BkDpl4ghaqvMi1btKFyG2tdbec.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zAMK70AQRFSShJgUiaR5IiIhgzk.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/IETjvc5qzUaRoaruDpPSwCUM8.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/oLCoaT3ioA0fHdJnWR9W6k7NY.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/Sj0PCHQSBjFmEp6NBWg6FNaKc.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/v2q8JTTTs7McDMSEhnxAIBqd0.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/H4TfENUY1rh8R9UaSD6vngjJP3M.woff2\",weight:\"300\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/2uIBiALfCHVpWbHqRMZutfT7giU.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Zwfz6xbVe5pmcWRJRgBDHnMkOkI.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/U9LaDDmbRhzX3sB8g8glTy5feTE.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tVew2LzXJ1t7QfxP1gdTIdj2o0g.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DF7bjCRmStYPqSb945lAlMfCCVQ.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/nCpxWS6DaPlPe0lHzStXAPCo3lw.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/vebZUMjGyKkYsfcY73iwWTzLNag.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...ParagraphGeneratorFonts,...MainCTABannerV25Fonts,...FaqAccordianFonts,...FooterV25Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFvMGR9PqS\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"7243.13\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dhi_Mzhfj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FqrAXYu2r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["primaryColor", "loaderTexts", "writingTones", "languages", "ParagraphGenerator", "topic", "setTopic", "ye", "language", "setLanguage", "tone", "setTone", "format", "setFormat", "paragraphCount", "setParagraphCount", "detail", "setDetail", "isGenerating", "setIsGenerating", "generatedContent", "setGeneratedContent", "loaderTextIndex", "setLoaderTextIndex", "error", "setError", "copied", "setCopied", "previousGenerations", "setPreviousGenerations", "ue", "interval", "prevIndex", "generateParagraph", "response", "newContent", "copyToClipboard", "navigator", "u", "p", "TailwindInjector", "motion", "e", "lang", "t", "AnimatePresence", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "MotionDivWithFXWithOptimizedAppearEffect", "withFX", "ParagraphGeneratorFonts", "getFonts", "ParagraphGenerator", "MainCTABannerV25Fonts", "B1uKs0hqZ_default", "FaqAccordianFonts", "bDyM3ZzlK_default", "FooterV25Fonts", "SbLUB1gTe_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "RichText2", "x", "Link", "PropertyOverrides2", "MotionDivWithOptimizedAppearEffect", "MotionDivWithFXWithOptimizedAppearEffect", "ComponentViewportProvider", "Container", "ParagraphGenerator", "B1uKs0hqZ_default", "bDyM3ZzlK_default", "SbLUB1gTe_default", "css", "FramerFvMGR9PqS", "withCSS", "FvMGR9PqS_default", "addFonts", "ParagraphGeneratorFonts", "MainCTABannerV25Fonts", "FaqAccordianFonts", "FooterV25Fonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
