{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/BHPEZdY8Pbp3HKQgcnDx/OXPv2IXVzsaGzXCOhGpV/TextInputFramework2Inputs.js", "ssg:https://framerusercontent.com/modules/QmomQ5h1HBuULQrvnJLB/yOoZ3cLSdW8oQP66jAzv/AiSummarizerFromFramework.js", "ssg:https://framerusercontent.com/modules/MkUmAkz7A7W1dAeTqcwT/tvjmXeJRNvJMPDSLki78/Vm_ReiJT7.js", "ssg:https://framerusercontent.com/modules/l8tNWqyhb0WV5K9cJKZl/cLCFnxqWSmn8a9WyM1go/Vm_ReiJT7.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{altHeaderStyle,headerStyle,copyButtonStyle,buttonStyle,disabledButtonStyle,parentContainerStyle,outputContainerStyle,navbarStyle,gapDivStyle,titleStyle,headerTextStyle,textStyle,infoHiddenStyle,infoContentsStyle,copyIconStyle,clearButtonStyle,disabledClearButtonStyle,copyButtonTextStyle,disabledCopyButtonStyle,disabledCopyButtonTextStyle}from\"https://framerusercontent.com/modules/suPdI7ariXAGJ76v6i2Z/wXvh7RcXrYyNP8XSGvpf/FrameworkStyles.js\";import React,{useEffect,useState,useRef}from\"react\";import{getWordCount}from\"https://framerusercontent.com/modules/Z0X4H7UcU6Q6UTL33I9g/ylXMTFUK7l6M7p1vfANB/Utils.js\";import{Toaster,toast}from\"react-hot-toast\";function loadPDFJsLibrary(){const script=document.createElement(\"script\");script.src=\"https://cdnjs.cloudflare.com/ajax/libs/pdf.js/2.7.570/pdf.min.js\";document.head.appendChild(script);}const TextInputFramework2Inputs=({toolTitle,functionality,generateButtonTitle,inputs,isGenerated,onClearInputs,onGenerate,maxWordCount,minWordCount})=>{const[isEssayGenerating,setIsEssayGenerating]=useState(false);const[isEssayGenerated,setIsEssayGenerated]=useState(false);const[wordIndex,setWordIndex]=useState(0);const[displayedText,setDisplayedText]=useState(\"\");const[isCopied,setIsCopied]=useState(false);const[isPressed,setIsPressed]=useState(false);const[inputText,setInputText]=useState(\"\");const[fileName,setFileName]=useState(\"\");const[error,setError]=useState(\"\");const[wordCount,setWordCount]=useState(0);const[chatCompletion,setChatCompletion]=useState(\"\");const fileInputRef=useRef(null);const extractTextFromPDF=file=>{if(!window.pdfjsLib){setError(\"PDF.js library failed to load. Please refresh the page.\");showToastError(\"PDF.js library failed to load. Please refresh the page.\");return;}return new Promise((resolve,reject)=>{const reader=new FileReader;reader.onload=function(){const typedarray=new Uint8Array(this.result);pdfjsLib.getDocument(typedarray).promise.then(function(pdf){let totalPages=pdf.numPages;let extractedText=\"\";let pagePromises=[];for(let pageNumber=1;pageNumber<=totalPages;pageNumber++){let pagePromise=pdf.getPage(pageNumber).then(function(page){return page.getTextContent().then(function(textContent){let pageText=textContent.items.map(item=>item.str).join(\" \");extractedText+=`${pageText}\n\n`;});});pagePromises.push(pagePromise);}Promise.all(pagePromises).then(()=>{resolve(extractedText);}).catch(error=>{reject(error);});}).catch(function(error){reject(\"Error during PDF extraction: \"+error);});};reader.readAsArrayBuffer(file);});};useEffect(()=>{loadPDFJsLibrary();},[]);const clearAllInputs=()=>{onClearInputs();setInputText(\"\");};const fullOnGenerate=async()=>{console.log(\"Full on generate has hit, inputText is \"+inputText);try{const generatedText=await onGenerate(inputText)// Call parent's logic\n;setChatCompletion(generatedText)// Update framework state for display\n;setError(\"\")// Clear any previous error\n;}catch(error){setError(\"Please Login.\");showToastError(\"Please Login.\");console.error(\"Error in fullOnGenerate:\",error.message);}};const handleTextChange=e=>{const text=e.target.value;setInputText(text);};const handleFileUpload=async e=>{const file=e.target.files[0];if(file){setFileName(file.name);if(file.type===\"application/pdf\"){const text=await extractTextFromPDF(file);setInputText(text);}else if(file.type===\"text/plain\"){const text=await file.text();setInputText(text);}else{setError(\"Unsupported file type. Please upload a .txt or .pdf file.\");showToastError(\"Unsupported file type. Please upload a .txt or .pdf file.\");}}};const handleMouseDown=()=>{if(isEssayGenerated)setIsPressed(true);console.log(\"GENERATED ESSAY: \"+isEssayGenerated);};const handleMouseUp=()=>setIsPressed(false);const handleCopy=()=>{if(isEssayGenerated){navigator.clipboard.writeText(chatCompletion);setIsCopied(true);}};const onPasteButton=async()=>{const clipboardText=await navigator.clipboard.readText()// Get text from clipboard\n;setInputText(clipboardText);};const showToastError=error=>{toast.error(error);};const textInputStyle={//border: \"1px solid #ccc\",\nborderBottom:\"1px solid #ccc\",padding:\"20px\",width:\"100%\",flex:\"1 1 0px\",position:\"relative\",backgroundColor:\"#FFF\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};const placeholderStyle=`\n        textarea::placeholder {\n            font-size: 14px;\n            font-family: \"Inter\", sans-serif;\n            color: #9CA3AF;\n        }\n        `;const buttonContainerStyle={position:\"absolute\",display:\"flex\",gap:\"10px\",bottom:\"130px\"};const leftPanelContainerStyle2Inputs={border:\"1px solid #E4E4E7\",minWidth:\"300px\",width:\"100%\",display:\"flex\",flexDirection:\"column\",flex:\"1 1 0\",height:\"500px\",position:\"relative\"};const rightPanelContainerStyle2Inputs={border:\"1px solid #E4E4E7\",minWidth:\"300px\",width:\"100%\",display:\"flex\",flexDirection:\"column\",flex:\"1 1 0\",height:\"500px\",position:\"relative\"};const uploadButtonStyle={backgroundColor:\"white\",color:\"#374151\",border:\"1px solid #D1D5DB\",borderRadius:\"8px\",fontSize:\"14px\",padding:\"8px 12px\",display:\"inline-flex\",alignItems:\"center\",gap:\"6px\",cursor:\"pointer\",fontFamily:\"Inter, sans-serif\",fontWeight:\"500\",textAlign:\"center\",whiteSpace:\"nowrap\"};const inputComponentsContainerStyle={fontFamily:\"Inter, sans-serif\",fontSize:\"16px\",width:\"100%\",display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",gap:\"10px\",height:\"100%\",padding:\"0\",borderBottom:\"1px solid #ccc\"};const getInputComponentsContainerStyle=inputCount=>({fontFamily:\"Inter, sans-serif\",fontSize:\"16px\",width:\"100%\",display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",gap:\"10px\",height:inputCount>1?\"100%\":\"70px\",padding:\"0\",borderBottom:\"1px solid #ccc\",flex:\"0 0 10%\"});const parentContainerStyleTemp={display:\"flex\",flexDirection:\"row\",flexWrap:\"wrap\",width:\"100%\",minWidth:\"300px\",maxWidth:\"100%\",padding:\"1rem\"};const navbarStyleTemp={alignItems:\"center\",display:\"flex\",flexDirection:\"row\",fontFamily:\"Inter, sans-serif\",fontSize:\"14px\",padding:\"1rem 2rem 0px\",justifyContent:\"space-between\"};const newInfoStyle={backgroundColor:\"#E6ECFF\",overflow:\"hidden\",position:\"relative\",alignItems:\"center\",display:\"flex\",flexDirection:\"row\",height:\"79px\"};useEffect(()=>{//if (isEssayGenerating && wordIndex < output.length) {\nif(chatCompletion.length>0&&wordIndex<chatCompletion.length){const interval=setInterval(()=>{setDisplayedText(prev=>prev+chatCompletion[wordIndex]);setWordIndex(prev=>prev+1);},7.5);if(wordIndex+1==chatCompletion.length)setIsEssayGenerated(true);return()=>clearInterval(interval);}else if(wordIndex>=chatCompletion.length){setIsEssayGenerating(false);}},[chatCompletion,isEssayGenerating,wordIndex]);useEffect(()=>{length=getWordCount(inputText);setWordCount(length);if(length>maxWordCount){setError(`Text cannot exceed ${maxWordCount} words`);showToastError(`Text cannot exceed ${maxWordCount} words`);}else if(length<minWordCount){setError(`Text must be at least ${minWordCount} words`);//showToastError(`Text must be at least ${minWordCount} words`)\n}else{setError(\"\");}},[inputText]);return /*#__PURE__*/_jsxs(\"div\",{style:parentContainerStyle,children:[/*#__PURE__*/_jsx(Toaster,{position:\"top-center\"}),/*#__PURE__*/_jsxs(\"div\",{style:leftPanelContainerStyle2Inputs,children:[/*#__PURE__*/_jsxs(\"div\",{style:headerStyle,children:[/*#__PURE__*/_jsx(\"div\",{style:titleStyle,children:/*#__PURE__*/_jsx(\"p\",{style:headerTextStyle,children:toolTitle})}),/*#__PURE__*/_jsx(\"div\",{style:gapDivStyle})]}),/*#__PURE__*/_jsxs(\"div\",{style:textInputStyle,children:[/*#__PURE__*/_jsx(\"style\",{children:placeholderStyle}),/*#__PURE__*/_jsx(\"textarea\",{rows:\"8\",value:inputText,onChange:handleTextChange,disabled:isEssayGenerated,style:{width:\"100%\",border:\"none\",resize:\"none\",backgroundColor:\"transparent\",outline:\"none\",fontFamily:\"Inter, sans-serif\",fontSize:\"14px\",position:\"relative\"},placeholder:\"Start typing or paste text here...\"}),inputText.length==0&&/*#__PURE__*/_jsxs(\"div\",{style:buttonContainerStyle,children:[/*#__PURE__*/_jsxs(\"button\",{style:uploadButtonStyle,onClick:onPasteButton,children:[/*#__PURE__*/_jsx(\"svg\",{fill:\"#000\",width:\"20px\",height:\"20px\",viewBox:\"0 0 512 512\",xmlns:\"http://www.w3.org/2000/svg\",xmlnsXlink:\"http://www.w3.org/1999/xlink\",children:/*#__PURE__*/_jsx(\"g\",{children:/*#__PURE__*/_jsx(\"g\",{children:/*#__PURE__*/_jsx(\"path\",{d:\"M466.611,241.22l-65.741-61.039c0.043-0.341,0.196-0.631,0.196-0.981V42.667c0-4.719-3.823-8.533-8.533-8.533H332.8 c0-4.719-3.823-8.533-8.533-8.533h-34.133V8.533C290.133,3.814,286.31,0,281.6,0H162.133c-4.71,0-8.533,3.814-8.533,8.533V25.6 h-34.133c-4.71,0-8.533,3.814-8.533,8.533H51.2c-4.71,0-8.533,3.814-8.533,8.533v401.075c0,4.71,3.806,8.525,8.516,8.533 l93.884,0.196v50.995c0,2.27,0.896,4.437,2.5,6.033c1.604,1.596,3.772,2.5,6.033,2.5h307.2c4.71,0,8.533-3.814,8.533-8.533v-256 C469.333,245.094,468.343,242.825,466.611,241.22z M439.066,238.933h-89.199V156.1L439.066,238.933z M128,42.667h34.133 c4.71,0,8.533-3.814,8.533-8.533V17.067h102.4v17.067c0,4.719,3.823,8.533,8.533,8.533h34.133v25.6H128V42.667z M145.067,136.533 c0,0.128,0,0.256,0.009,0.384l-0.009,298.479l-85.333-0.179V51.2h51.2v25.6c0,4.719,3.823,8.533,8.533,8.533h204.8 c4.71,0,8.533-3.814,8.533-8.533V51.2H384v113.306l-36.855-34.227c-1.579-1.459-3.661-2.278-5.811-2.278H153.6 C148.89,128,145.067,131.814,145.067,136.533z M452.267,494.933H162.133l0.009-349.867H332.8v102.4 c0,4.719,3.823,8.533,8.533,8.533h110.933V494.933z\"})})})}),\"Paste Text\"]}),/*#__PURE__*/_jsxs(\"label\",{htmlFor:\"fileUpload\",style:{...uploadButtonStyle,display:\"flex\",alignItems:\"center\",gap:\"6px\",cursor:\"pointer\",color:\"#374151\",fontFamily:\"Inter, sans-serif\",fontSize:\"14px\",fontWeight:\"500\"},children:[/*#__PURE__*/_jsx(\"svg\",{id:\"Layer_1\",xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 99.09 122.88\",width:\"18\",height:\"18\",fill:\"#374151\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M64.64,13,86.77,36.21H64.64V13ZM42.58,71.67a3.25,3.25,0,0,1-4.92-4.25l9.42-10.91a3.26,3.26,0,0,1,4.59-.33,5.14,5.14,0,0,1,.4.41l9.3,10.28a3.24,3.24,0,0,1-4.81,4.35L52.8,67.07V82.52a3.26,3.26,0,1,1-6.52,0V67.38l-3.7,4.29ZM24.22,85.42a3.26,3.26,0,1,1,6.52,0v7.46H68.36V85.42a3.26,3.26,0,1,1,6.51,0V96.14a3.26,3.26,0,0,1-3.26,3.26H27.48a3.26,3.26,0,0,1-3.26-3.26V85.42ZM99.08,39.19c.15-.57-1.18-2.07-2.68-3.56L63.8,1.36A3.63,3.63,0,0,0,61,0H6.62A6.62,6.62,0,0,0,0,6.62V116.26a6.62,6.62,0,0,0,6.62,6.62H92.46a6.62,6.62,0,0,0,6.62-6.62V39.19Zm-7.4,4.42v71.87H7.4V7.37H57.25V39.9A3.71,3.71,0,0,0,61,43.61Z\"})}),\"Upload PDF\"]}),/*#__PURE__*/_jsx(\"input\",{type:\"file\",id:\"fileUpload\",accept:\".txt, .pdf\",onChange:handleFileUpload,disabled:isEssayGenerated||inputText,style:{display:\"none\"},ref:fileInputRef})]}),/*#__PURE__*/_jsxs(\"p\",{style:{position:\"absolute\",bottom:\"0px\",right:\"2px\",marginBottom:\"0px\",fontFamily:\"Inter, sans-serif\",fontSize:\"12px\",color:wordCount>maxWordCount||wordCount<minWordCount?\"red\":\"black\"},children:[\"Word Count: \",wordCount]})]}),/*#__PURE__*/_jsx(\"div\",{style:getInputComponentsContainerStyle(inputs.length),children:inputs.map((inputComponent,index)=>/*#__PURE__*/React.cloneElement(inputComponent,{key:index,style:{...inputComponent.props.style||{},paddingLeft:\"10px\",paddingRight:\"10px\"}}))}),/*#__PURE__*/_jsxs(\"div\",{style:navbarStyle,children:[/*#__PURE__*/_jsx(\"button\",{style:isGenerated?disabledClearButtonStyle:clearButtonStyle,disabled:isGenerated,onClick:clearAllInputs,type:\"button\",children:\"Clear Inputs\"}),/*#__PURE__*/_jsx(\"button\",{style:isGenerated||error?disabledButtonStyle:buttonStyle,type:\"submit\",onClick:fullOnGenerate,disabled:isGenerated||error!=\"\",children:generateButtonTitle})]})]}),/*#__PURE__*/_jsxs(\"div\",{style:rightPanelContainerStyle2Inputs,children:[/*#__PURE__*/_jsxs(\"div\",{style:altHeaderStyle,children:[/*#__PURE__*/_jsx(\"div\",{style:titleStyle,children:/*#__PURE__*/_jsx(\"p\",{style:headerTextStyle,children:\"Result\"})}),/*#__PURE__*/_jsxs(\"button\",{style:{...isEssayGenerated?{...copyButtonStyle,backgroundColor:isPressed?\"#D1D5DB\":\"white\",transform:isPressed?\"scale(0.98)\":\"scale(1)\"}:disabledCopyButtonStyle},onMouseDown:handleMouseDown,onMouseUp:handleMouseUp,onMouseLeave:handleMouseUp,onClick:handleCopy,children:[/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 24 24\",width:\"20\",height:\"20\",fill:\"#A1A1AA\",style:copyIconStyle,children:/*#__PURE__*/_jsx(\"path\",{d:\"M16 1H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2zm0 14H4V3h12v12zm3-10h-2v12H8v2h9a2 2 0 0 0 2-2V5z\"})}),/*#__PURE__*/_jsx(\"span\",{style:isEssayGenerated?copyButtonTextStyle:disabledCopyButtonTextStyle,children:isCopied?\"Copied\":\"Copy\"})]})]}),/*#__PURE__*/_jsx(\"div\",{style:outputContainerStyle,children:/*#__PURE__*/_jsx(\"div\",{children:/*#__PURE__*/_jsx(\"p\",{style:{whiteSpace:\"pre-wrap\"},children:displayedText})})}),/*#__PURE__*/_jsx(\"div\",{style:isGenerated?newInfoStyle:infoHiddenStyle,children:/*#__PURE__*/_jsxs(\"div\",{style:infoContentsStyle,children:[/*#__PURE__*/_jsxs(\"p\",{style:textStyle,children:[\"Get free access to our advanced research toolkit, including features \",functionality,\".\"]}),/*#__PURE__*/_jsx(\"div\",{style:gapDivStyle}),/*#__PURE__*/_jsx(\"a\",{href:\"https://app.jenni.ai/register\",children:/*#__PURE__*/_jsx(\"button\",{style:buttonStyle,children:\"Sign Up\"})})]})})]})]});};export default TextInputFramework2Inputs;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState}from\"react\";import{getGroqChatCompletion}from\"https://framerusercontent.com/modules/i5JLYYBGC9QwvcQkaFZk/viHolEQJXpmActFIS58q/GroqFunctions.js\";import{labelStyle,paraInputStyle,selectWrapperStyleTextInput,chevronStyle}from\"https://framerusercontent.com/modules/4fCPIN3YfBUIZslVEJ3Z/DPLYxh35ja0EP13RJiGV/Styles.js\";import TextInputFramework2Inputs from\"https://framerusercontent.com/modules/BHPEZdY8Pbp3HKQgcnDx/OXPv2IXVzsaGzXCOhGpV/TextInputFramework2Inputs.js\";const MAX_SUMMARIZED_TEXT_LENGTH=500;const bulletPoint=\"bullet points (with new line breaks after each bullet point)\";const format=\"Only output the summarized text with no other words.\";const SummarizerForm=()=>{const[prompt,setPrompt]=useState(\"\");const[isEssayGenerated,setIsEssayGenerated]=useState(false);const[summarizeStyle,setSummarizeStyle]=useState(\"paragraph\");const[summaryLength,setSummaryLength]=useState(10);const handleSliderChange=e=>{setSummaryLength(e.target.value);};const clearInputs=()=>{setSummarizeStyle(\"paragraph\");setSummaryLength(10);};const handleSubmit=async inputText=>{let finalText=inputText;let prompt;switch(summarizeStyle){case\"Paragraph\":prompt=`Summarize the following text in paragraphs (with no numbering). `;break;case\"Bullet\":prompt=`Summarize the following text in bullet points (with new line breaks after each bullet point). `;break;default:prompt=`Summarize the following text in paragraphs (with no numbering). `;break;}prompt+=`Have the summary be a ${summaryLength} in length (using a scale of 1 to 20 to control the length of the summary, where 1 is 1/20th the length of the original text length and 20 is a half the length of the original text): ${finalText}`;prompt+=\" \"+format;const response=await getGroqChatCompletion(prompt);const content=response||\"\";const cleanedContent=content.replace(/&nbsp;/g,\" \");setIsEssayGenerated(true);return cleanedContent;};const labelStyleTemp={marginTop:\"8px\",marginBottom:\"8px\",fontWeight:\"bold\",fontSize:\"14px\",display:\"block\",whiteSpace:\"nowrap\"};return /*#__PURE__*/_jsx(TextInputFramework2Inputs,{toolTitle:\"AI Summarizer\",functionality:\"for AI summarization\",generateButtonTitle:\"Summarize\",inputs:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",alignItems:\"end\",justifyContent:\"space-between\",gap:\"20px\",width:\"100%\",marginTop:\"8px\"},children:[/*#__PURE__*/_jsx(\"label\",{htmlFor:\"summarizeStyle\",style:labelStyleTemp,children:\"Summary Style:\"}),/*#__PURE__*/_jsxs(\"div\",{style:selectWrapperStyleTextInput,children:[/*#__PURE__*/_jsxs(\"select\",{id:\"summarizeStyle\",value:summarizeStyle,onChange:e=>setSummarizeStyle(e.target.value),disabled:isEssayGenerated,style:paraInputStyle,children:[/*#__PURE__*/_jsx(\"option\",{value:\"Paragraph\",children:\"Paragraph\"}),/*#__PURE__*/_jsx(\"option\",{value:\"Bullet\",children:\"Bullet Points\"})]}),/*#__PURE__*/_jsx(\"div\",{style:chevronStyle}),\" \"]})]}),/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"column\",alignItems:\"center\",width:\"100%\"},children:/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",alignItems:\"center\",justifyContent:\"space-between\",width:\"100%\"},children:[/*#__PURE__*/_jsx(\"label\",{htmlFor:\"summarizeStyle\",style:{...labelStyle,marginRight:\"5px\"},children:\"Summary Length:\"}),/*#__PURE__*/_jsx(\"span\",{style:{marginRight:\"2px\",fontSize:\"12px\"},children:\"Short\"}),/*#__PURE__*/_jsx(\"input\",{type:\"range\",min:\"1\",max:\"20\",value:summaryLength,className:\"slider\",id:\"myRange\",onChange:handleSliderChange,style:{flex:\"1\",margin:\"0 5px\",background:\"#323DD6\",accentColor:\"#323DD6\"},disabled:isEssayGenerated}),/*#__PURE__*/_jsx(\"span\",{style:{marginRight:\"2px\",fontSize:\"12px\"},children:\"Long\"})]})})],isGenerated:isEssayGenerated,onClearInputs:clearInputs,onGenerate:handleSubmit,minWordCount:0,maxWordCount:MAX_SUMMARIZED_TEXT_LENGTH});};export default function Form(props){return /*#__PURE__*/_jsx(SummarizerForm,{});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Form\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (64bdc4e)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={bhZzOQAvn:new LazyValue(()=>import(\"./Vm_ReiJT7-9.js\")),lNenXvjMN:new LazyValue(()=>import(\"./Vm_ReiJT7-5.js\")),mCddKGAFx:new LazyValue(()=>import(\"./Vm_ReiJT7-4.js\")),mhnbIMnYi:new LazyValue(()=>import(\"./Vm_ReiJT7-2.js\")),Q01ZMxdCc:new LazyValue(()=>import(\"./Vm_ReiJT7-8.js\")),utlBQmjLC:new LazyValue(()=>import(\"./Vm_ReiJT7-6.js\")),v78XQ1Dbu:new LazyValue(()=>import(\"./Vm_ReiJT7-3.js\")),Vr0VZAjl_:new LazyValue(()=>import(\"./Vm_ReiJT7-7.js\")),xsGjLRxDN:new LazyValue(()=>import(\"./Vm_ReiJT7-1.js\")),YK5OpH8AV:new LazyValue(()=>import(\"./Vm_ReiJT7-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (64bdc4e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import Navbar from\"#framer/local/canvasComponent/fxukFy9qH/fxukFy9qH.js\";import LovedBySocialProof from\"#framer/local/canvasComponent/kAQTH90bG/kAQTH90bG.js\";import Footer from\"#framer/local/canvasComponent/mg201gHDw/mg201gHDw.js\";import ElementsAccordionCopy16 from\"#framer/local/canvasComponent/oIYXMoO2J/oIYXMoO2J.js\";import ElementsAccordionCopy15 from\"#framer/local/canvasComponent/paPYK2X58/paPYK2X58.js\";import FeatureBadge from\"#framer/local/canvasComponent/Rx11D77X9/Rx11D77X9.js\";import PrimaryCTA from\"#framer/local/canvasComponent/tO06mN869/tO06mN869.js\";import FAQItem from\"#framer/local/canvasComponent/w8tNl30LD/w8tNl30LD.js\";import Ticker from\"#framer/local/canvasComponent/X2s2_ZThv/X2s2_ZThv.js\";import Form from\"#framer/local/codeFile/NigHIbm/AiSummarizerFromFramework.js\";import*as sharedStyle7 from\"#framer/local/css/Cefnan2V_/Cefnan2V_.js\";import*as sharedStyle3 from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle6 from\"#framer/local/css/gjvC20EbM/gjvC20EbM.js\";import*as sharedStyle4 from\"#framer/local/css/mTnUhWLEM/mTnUhWLEM.js\";import*as sharedStyle5 from\"#framer/local/css/wfak7Jfo9/wfak7Jfo9.js\";import*as sharedStyle1 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import*as sharedStyle2 from\"#framer/local/css/YckFIlg3V/YckFIlg3V.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/Vm_ReiJT7/Vm_ReiJT7.js\";import metadataProvider from\"#framer/local/webPageMetadata/Vm_ReiJT7/Vm_ReiJT7.js\";const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const FormFonts=getFonts(Form);const PrimaryCTAFonts=getFonts(PrimaryCTA);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const LovedBySocialProofFonts=getFonts(LovedBySocialProof);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const TickerFonts=getFonts(Ticker);const FeatureBadgeFonts=getFonts(FeatureBadge);const NavbarFonts=getFonts(Navbar);const PhosphorFonts=getFonts(Phosphor);const FAQItemFonts=getFonts(FAQItem);const ElementsAccordionCopy15Fonts=getFonts(ElementsAccordionCopy15);const ElementsAccordionCopy16Fonts=getFonts(ElementsAccordionCopy16);const FooterFonts=getFonts(Footer);const breakpoints={OLdI5SHg6:\"(min-width: 1200px)\",TqLOxlnPa:\"(min-width: 810px) and (max-width: 1199px)\",zouHhA73u:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-SOco6\";const variantClassNames={OLdI5SHg6:\"framer-v-1ooeqcn\",TqLOxlnPa:\"framer-v-6ryx29\",zouHhA73u:\"framer-v-1axca03\"};const transition1={delay:0,duration:.5,ease:[.47,.06,.51,.92],type:\"tween\"};const animation={opacity:1,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:.3,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={delay:.4,duration:.7,ease:[.01,.5,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={delay:.7,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"OLdI5SHg6\",Phone:\"zouHhA73u\",Tablet:\"TqLOxlnPa\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"OLdI5SHg6\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,F7ScVOwlmbtE696lin,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const visible=equals(F7ScVOwlmbtE696lin,true);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"zouHhA73u\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"OLdI5SHg6\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1ooeqcn\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a11t8t\",\"data-framer-name\":\"above the fold\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17i6qki\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sgxsqm\",\"data-framer-name\":\"header text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r16aus\",\"data-framer-name\":\"H1 block\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\"},children:\"AI Summarizer & Summary Generator\"})}),className:\"framer-ke2nnb\",\"data-framer-appear-id\":\"ke2nnb\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7wskat-container\",isAuthoredByUser:true,nodeId:\"SvHZMC_WK\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(Form,{height:\"100%\",id:\"SvHZMC_WK\",layoutId:\"SvHZMC_WK\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Jenni AI stands as a comprehensive academic writing assistant, encompassing an AI summarizer and summary generator among its key features. This specialized functionality is meticulously crafted to facilitate the creation of concise summaries, effectively condensing extensive research papers, articles, or essays. Jenni AI simplifies the process, enabling you to focus more on your analysis and less on summarization. Our tool is built with the ethos of promoting authentic academic endeavors, not replacing them.\"})}),className:\"framer-1we560h\",\"data-framer-appear-id\":\"1we560h\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cahewx\",\"data-framer-name\":\"subtext and CTA\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hyjmik\",\"data-framer-name\":\"button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{y:(componentViewport?.y||0)+0+0+0+0+120+0+20+507.8+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation3,className:\"framer-4aix20-container\",\"data-framer-appear-id\":\"4aix20\",initial:animation1,nodeId:\"dZSe2Jgv3\",optimized:true,rendersWithMotion:true,scopeId:\"Vm_ReiJT7\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PrimaryCTA,{CV8sFPeBO:\"https://app.jenni.ai/register\",height:\"100%\",id:\"dZSe2Jgv3\",IKRIASMk7:false,layoutId:\"dZSe2Jgv3\",LXSVjyMyN:\"arrow-up-right\",RHB74vpG5:getLocalizedValue(\"v2\",activeLocale)??\"Start writing\",uyknrRpWc:false,variant:\"PobB7xwtM\",width:\"100%\",wM7gB0Gyl:getLocalizedValue(\"v3\",activeLocale)??\"\u2013 it's free\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{y:(componentViewport?.y||0)+0+0+0+0+120+0+20+602.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bh45ul-container\",nodeId:\"cA8RENUyH\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(LovedBySocialProof,{height:\"100%\",id:\"cA8RENUyH\",layoutId:\"cA8RENUyH\",style:{height:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,animate:animation4,className:\"framer-kfcn75\",\"data-framer-appear-id\":\"kfcn75\",\"data-framer-name\":\"peer review image\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y9vqjn\",\"data-framer-name\":\"opacity layer\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lncbbp\",\"data-framer-name\":\"image frame\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1960,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+120+713.8+20),pixelHeight:1960,pixelWidth:3024,src:\"https://framerusercontent.com/images/hLMmCvJbPXkFEIE4mv1EyOXzFcs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1960,intrinsicWidth:3024,pixelHeight:1960,pixelWidth:3024,src:\"https://framerusercontent.com/images/hLMmCvJbPXkFEIE4mv1EyOXzFcs.png\"},className:\"framer-1wb9j06\",\"data-border\":true,transformTemplate:transformTemplate1})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l1htg9\",\"data-framer-name\":\"Social Proof\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3ydnsr\",\"data-framer-name\":\"header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kfo1cl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\"},children:\"Trusted By Academics Worldwide\"})}),className:\"framer-yarcp1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"Academics from leading institutions rely on Jenni AI for efficient summary generation\"})}),className:\"framer-daehps\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vata2b\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{y:(componentViewport?.y||0)+0+0+0+1001.8+32+212.3+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"1280px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-13velsv-container\",nodeId:\"IL7RQ_VSl\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(Ticker,{height:\"100%\",id:\"IL7RQ_VSl\",layoutId:\"IL7RQ_VSl\",style:{maxWidth:\"100%\"},width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lah8oz\",\"data-framer-name\":\"Features Large\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13l9w5e\",\"data-framer-name\":\"header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1awb1cr\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{y:(componentViewport?.y||0)+0+1378.1+60+0+0+0+20+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,children:/*#__PURE__*/_jsx(Container,{className:\"framer-adun26-container\",nodeId:\"jlDrwY21S\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(FeatureBadge,{height:\"100%\",id:\"jlDrwY21S\",layoutId:\"jlDrwY21S\",style:{height:\"100%\"},variant:\"xx2X_R8KN\",width:\"100%\",X_lLmeBIL:getLocalizedValue(\"v6\",activeLocale)??\"key FEATURES\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Crafting Quality Academic Writing Solutions with Our Text Summarizer\"})}),className:\"framer-owffbq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"Discover how Jenni AI stands out as the solution for your summarization needs\"})}),className:\"framer-5fx2vd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ignmom\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yi84n4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sbbj48\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Effortless Summarization\"})}),className:\"framer-1sq4jh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Jenni AI takes the hassle out of summarization. Just paste your text, and watch as Jenni AI distills the core ideas into a clear, concise summary.\"})}),className:\"framer-1mt8ozy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r4e1ro\",\"data-styles-preset\":\"mTnUhWLEM\",children:/*#__PURE__*/_jsx(Link,{href:\"https://app.jenni.ai/register?_gl=1*vdbrmg*_ga*ODI2OTIyMTk1LjE2NTk3MjQ2OTE.*_ga_SSCNFQSTWK*MTY5NTEzMjU0NC4xMjAyLjEuMTY5NTEzNDI3OC42MC4wLjA.\",motionChild:true,nodeId:\"nzwcrt7G5\",openInNewTab:true,relValues:[],scopeId:\"Vm_ReiJT7\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mct1tk\",\"data-styles-preset\":\"wfak7Jfo9\",children:\"Get started\"})})})}),className:\"framer-dlmljo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TqLOxlnPa:{background:{alt:getLocalizedValue(\"v12\",activeLocale)??\"concise free ai summarizing tool\",fit:\"fill\",intrinsicHeight:912,intrinsicWidth:2366,pixelHeight:912,pixelWidth:2366,sizes:`min(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px), 1040px)`,src:\"https://framerusercontent.com/images/SlU1UliqgdyaDk810fbJRz9nYcM.webp\",srcSet:\"https://framerusercontent.com/images/SlU1UliqgdyaDk810fbJRz9nYcM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/SlU1UliqgdyaDk810fbJRz9nYcM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/SlU1UliqgdyaDk810fbJRz9nYcM.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/SlU1UliqgdyaDk810fbJRz9nYcM.webp 2366w\"}},zouHhA73u:{background:{alt:getLocalizedValue(\"v12\",activeLocale)??\"concise free ai summarizing tool\",fit:\"fill\",intrinsicHeight:912,intrinsicWidth:2366,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1378.1+60+337.8+0+0+0+0),pixelHeight:912,pixelWidth:2366,sizes:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 1040px)`,src:\"https://framerusercontent.com/images/SlU1UliqgdyaDk810fbJRz9nYcM.webp\",srcSet:\"https://framerusercontent.com/images/SlU1UliqgdyaDk810fbJRz9nYcM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/SlU1UliqgdyaDk810fbJRz9nYcM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/SlU1UliqgdyaDk810fbJRz9nYcM.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/SlU1UliqgdyaDk810fbJRz9nYcM.webp 2366w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v12\",activeLocale)??\"concise free ai summarizing tool\",fit:\"fill\",intrinsicHeight:912,intrinsicWidth:2366,pixelHeight:912,pixelWidth:2366,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1000px), 1040px)`,src:\"https://framerusercontent.com/images/SlU1UliqgdyaDk810fbJRz9nYcM.webp\",srcSet:\"https://framerusercontent.com/images/SlU1UliqgdyaDk810fbJRz9nYcM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/SlU1UliqgdyaDk810fbJRz9nYcM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/SlU1UliqgdyaDk810fbJRz9nYcM.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/SlU1UliqgdyaDk810fbJRz9nYcM.webp 2366w\"},className:\"framer-n5dv3c\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g6swpe\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TqLOxlnPa:{background:{alt:getLocalizedValue(\"v13\",activeLocale)??\"text and article summarizer\",fit:\"fill\",intrinsicHeight:1132,intrinsicWidth:1914,pixelHeight:1132,pixelWidth:1914,sizes:`min(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px), 1040px)`,src:\"https://framerusercontent.com/images/St7GIq59VMza1823lQXbwIGkNV0.webp\",srcSet:\"https://framerusercontent.com/images/St7GIq59VMza1823lQXbwIGkNV0.webp?scale-down-to=512 512w,https://framerusercontent.com/images/St7GIq59VMza1823lQXbwIGkNV0.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/St7GIq59VMza1823lQXbwIGkNV0.webp 1914w\"}},zouHhA73u:{background:{alt:getLocalizedValue(\"v13\",activeLocale)??\"text and article summarizer\",fit:\"fill\",intrinsicHeight:1132,intrinsicWidth:1914,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1378.1+60+337.8+0+851.3+0+0),pixelHeight:1132,pixelWidth:1914,sizes:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 1040px)`,src:\"https://framerusercontent.com/images/St7GIq59VMza1823lQXbwIGkNV0.webp\",srcSet:\"https://framerusercontent.com/images/St7GIq59VMza1823lQXbwIGkNV0.webp?scale-down-to=512 512w,https://framerusercontent.com/images/St7GIq59VMza1823lQXbwIGkNV0.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/St7GIq59VMza1823lQXbwIGkNV0.webp 1914w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v13\",activeLocale)??\"text and article summarizer\",fit:\"fill\",intrinsicHeight:1132,intrinsicWidth:1914,pixelHeight:1132,pixelWidth:1914,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1000px), 1040px)`,src:\"https://framerusercontent.com/images/St7GIq59VMza1823lQXbwIGkNV0.webp\",srcSet:\"https://framerusercontent.com/images/St7GIq59VMza1823lQXbwIGkNV0.webp?scale-down-to=512 512w,https://framerusercontent.com/images/St7GIq59VMza1823lQXbwIGkNV0.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/St7GIq59VMza1823lQXbwIGkNV0.webp 1914w\"},className:\"framer-1sr07vk\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g5wbd8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Interactive Editing\"})}),className:\"framer-zkpvvl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Don\u2019t just settle for the first draft. Interact with the summary, tweak, and refine it to meet your specific requirements, ensuring that every summary is precisely what you need.\"})}),className:\"framer-151rfu1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r4e1ro\",\"data-styles-preset\":\"mTnUhWLEM\",children:/*#__PURE__*/_jsx(Link,{href:\"https://app.jenni.ai/register?_gl=1*vdbrmg*_ga*ODI2OTIyMTk1LjE2NTk3MjQ2OTE.*_ga_SSCNFQSTWK*MTY5NTEzMjU0NC4xMjAyLjEuMTY5NTEzNDI3OC42MC4wLjA.\",motionChild:true,nodeId:\"zuZDeoRp_\",openInNewTab:true,relValues:[],scopeId:\"Vm_ReiJT7\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mct1tk\",\"data-styles-preset\":\"wfak7Jfo9\",children:\"Get started\"})})})}),className:\"framer-1hv7e05\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a3gdt9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-51bxuo\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Learning and Improvement\"})}),className:\"framer-1mfnnat\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Jenni AI is not just a tool, but a companion in your academic journey. Learn from the summarization process and improve your writing skills with every interaction.\"})}),className:\"framer-x2q9s4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r4e1ro\",\"data-styles-preset\":\"mTnUhWLEM\",children:/*#__PURE__*/_jsx(Link,{href:\"https://app.jenni.ai/register?_gl=1*vdbrmg*_ga*ODI2OTIyMTk1LjE2NTk3MjQ2OTE.*_ga_SSCNFQSTWK*MTY5NTEzMjU0NC4xMjAyLjEuMTY5NTEzNDI3OC42MC4wLjA.\",motionChild:true,nodeId:\"hFXd50XXd\",openInNewTab:true,relValues:[],scopeId:\"Vm_ReiJT7\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mct1tk\",\"data-styles-preset\":\"wfak7Jfo9\",children:\"Get started \"})})})}),className:\"framer-15v5hm6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TqLOxlnPa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1800,pixelHeight:1200,pixelWidth:1800,sizes:`min(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px), 1040px)`,src:\"https://framerusercontent.com/images/ASgil40G5oS47Dk7Dipw9rb1so.png\",srcSet:\"https://framerusercontent.com/images/ASgil40G5oS47Dk7Dipw9rb1so.png?scale-down-to=512 512w,https://framerusercontent.com/images/ASgil40G5oS47Dk7Dipw9rb1so.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ASgil40G5oS47Dk7Dipw9rb1so.png 1800w\"}},zouHhA73u:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1378.1+60+337.8+0+1685.6+0+0),pixelHeight:1200,pixelWidth:1800,sizes:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 1040px)`,src:\"https://framerusercontent.com/images/ASgil40G5oS47Dk7Dipw9rb1so.png\",srcSet:\"https://framerusercontent.com/images/ASgil40G5oS47Dk7Dipw9rb1so.png?scale-down-to=512 512w,https://framerusercontent.com/images/ASgil40G5oS47Dk7Dipw9rb1so.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ASgil40G5oS47Dk7Dipw9rb1so.png 1800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1800,pixelHeight:1200,pixelWidth:1800,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1000px), 1040px)`,src:\"https://framerusercontent.com/images/ASgil40G5oS47Dk7Dipw9rb1so.png\",srcSet:\"https://framerusercontent.com/images/ASgil40G5oS47Dk7Dipw9rb1so.png?scale-down-to=512 512w,https://framerusercontent.com/images/ASgil40G5oS47Dk7Dipw9rb1so.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ASgil40G5oS47Dk7Dipw9rb1so.png 1800w\"},className:\"framer-748ojn\",\"data-framer-name\":\"Image\"})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yqxb67\",\"data-framer-name\":\"header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dhmt8p\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{y:(componentViewport?.y||0)+0+4292.8+60+0+20+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d3fm9a-container\",nodeId:\"DUGp7cz5E\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(FeatureBadge,{height:\"100%\",id:\"DUGp7cz5E\",layoutId:\"DUGp7cz5E\",style:{height:\"100%\"},variant:\"xx2X_R8KN\",width:\"100%\",X_lLmeBIL:getLocalizedValue(\"v20\",activeLocale)??\"OUR MISSION\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our Commitment to Academic Integrity\"})}),className:\"framer-mm4bl4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"At Jenni AI, we uphold the principle of academic integrity with the utmost regard. Our tool is devised to assist, not to replace your original work. \"})}),className:\"framer-uei6y6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{y:(componentViewport?.y||0)+0+4292.8+60+337.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zqgsqi-container\",nodeId:\"PSrDblMu3\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(PrimaryCTA,{CV8sFPeBO:\"https://app.jenni.ai/register\",height:\"100%\",id:\"PSrDblMu3\",IKRIASMk7:false,layoutId:\"PSrDblMu3\",LXSVjyMyN:\"arrow-up-right\",RHB74vpG5:getLocalizedValue(\"v2\",activeLocale)??\"Start writing\",uyknrRpWc:false,variant:\"PobB7xwtM\",width:\"100%\",wM7gB0Gyl:getLocalizedValue(\"v3\",activeLocale)??\"\u2013 it's free\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15tskks-container\",layoutScroll:true,nodeId:\"ET4WoYeFM\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TqLOxlnPa:{variant:\"ollhRRlDM\"},zouHhA73u:{variant:\"ARZXWpRc0\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"ET4WoYeFM\",layoutId:\"ET4WoYeFM\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"tfty_7X13\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hhd4ff\",\"data-framer-name\":\"use case section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u5r02s\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{y:(componentViewport?.y||0)+0+4805.6+60+0+20+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,children:/*#__PURE__*/_jsx(Container,{className:\"framer-diorj6-container\",nodeId:\"EpMwNmRtF\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(FeatureBadge,{height:\"100%\",id:\"EpMwNmRtF\",layoutId:\"EpMwNmRtF\",style:{height:\"100%\"},variant:\"DE0pX9tlT\",width:\"100%\",X_lLmeBIL:getLocalizedValue(\"v23\",activeLocale)??\"GUIDE\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"How Does Jenni AI Summarizing Tool Work?\"})}),className:\"framer-1b99jm8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Navigating the Realm of Academic Writing Has Never Been Easier\"})}),className:\"framer-jl9gex\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hj0adn\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tesk3o\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-tai1pi\",\"data-border\":true,\"data-framer-name\":\"Use case card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18o3qnf\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ubromw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FzHqWIBPu\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(83, 92, 234)\",height:\"100%\",iconSearch:getLocalizedValue(\"v26\",activeLocale)??\"House\",iconSelection:\"CheckCircle\",id:\"FzHqWIBPu\",layoutId:\"FzHqWIBPu\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(178, 148, 255)\"},children:\"10x\"})}),className:\"framer-1kaus4z\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Create Your Account\"})}),className:\"framer-364jck\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r4e1ro\",\"data-styles-preset\":\"mTnUhWLEM\",children:\"Sign up for a free Jenni AI account to embark on a simplified summarization journey.\"})}),className:\"framer-1ff8knv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-efukch\",\"data-border\":true,\"data-framer-name\":\"Use case card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11hkdiu\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k4a9es-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Mn_FS8ERJ\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(83, 92, 234)\",height:\"100%\",iconSearch:getLocalizedValue(\"v26\",activeLocale)??\"House\",iconSelection:\"NotePencil\",id:\"Mn_FS8ERJ\",layoutId:\"Mn_FS8ERJ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(178, 148, 255)\"},children:\"10x\"})}),className:\"framer-f1y92a\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Paste Your Text\"})}),className:\"framer-1j69d90\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r4e1ro\",\"data-styles-preset\":\"mTnUhWLEM\",children:\"Copy and paste the text you wish to summarize. Whether it's a research article, essay, or a complex thesis, Jenni AI is here to assist.\"})}),className:\"framer-jzhzle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-py01m6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7e7y5h\",\"data-border\":true,\"data-framer-name\":\"Use case card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hq1wa8\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q070qo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"taENAz2p0\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(83, 92, 234)\",height:\"100%\",iconSearch:getLocalizedValue(\"v26\",activeLocale)??\"House\",iconSelection:\"MagicWand\",id:\"taENAz2p0\",layoutId:\"taENAz2p0\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(178, 148, 255)\"},children:\"10x\"})}),className:\"framer-12cyng7\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Generate Your Summary\"})}),className:\"framer-jp71v3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r4e1ro\",\"data-styles-preset\":\"mTnUhWLEM\",children:\"Ask Jenni to summarize and watch as it employs advanced algorithms to distill the core essence of your text, presenting a coherent and concise summary.\"})}),className:\"framer-1sun4oc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yhs9bb\",\"data-border\":true,\"data-framer-name\":\"Use case card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-177g9mp\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uz9e2b-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wpgF0kb5z\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(83, 92, 234)\",height:\"100%\",iconSearch:getLocalizedValue(\"v26\",activeLocale)??\"House\",iconSelection:\"Lightbulb\",id:\"wpgF0kb5z\",layoutId:\"wpgF0kb5z\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(178, 148, 255)\"},children:\"10x\"})}),className:\"framer-12o59wj\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Interactive Editing\"})}),className:\"framer-ffqoqz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r4e1ro\",\"data-styles-preset\":\"mTnUhWLEM\",children:\"Review and edit your summary. Jenni AI's interactive platform allows you to tweak and refine the summary to align perfectly with your academic objectives.\"})}),className:\"framer-1nzoygi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{y:(componentViewport?.y||0)+0+4805.6+60+1491}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xq3bew-container\",nodeId:\"upjmzAIcS\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(PrimaryCTA,{CV8sFPeBO:\"https://app.jenni.ai/register\",height:\"100%\",id:\"upjmzAIcS\",IKRIASMk7:false,layoutId:\"upjmzAIcS\",LXSVjyMyN:\"arrow-up-right\",RHB74vpG5:getLocalizedValue(\"v2\",activeLocale)??\"Start writing\",uyknrRpWc:false,variant:\"PobB7xwtM\",width:\"100%\",wM7gB0Gyl:getLocalizedValue(\"v3\",activeLocale)??\"\u2013 it's free\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mfd5uz\",\"data-framer-name\":\"testimonials\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TqLOxlnPa:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:666,intrinsicWidth:1011,pixelHeight:666,pixelWidth:1011,positionX:\"center\",positionY:\"center\",sizes:\"877px\",src:\"https://framerusercontent.com/images/Ecq4clyjh5UNr8wxgxE69buYU.svg\",srcSet:\"https://framerusercontent.com/images/Ecq4clyjh5UNr8wxgxE69buYU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Ecq4clyjh5UNr8wxgxE69buYU.svg 1011w\"}},zouHhA73u:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:666,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6471.6+0),pixelHeight:666,pixelWidth:1011,positionX:\"center\",positionY:\"center\",sizes:\"734px\",src:\"https://framerusercontent.com/images/Ecq4clyjh5UNr8wxgxE69buYU.svg\",srcSet:\"https://framerusercontent.com/images/Ecq4clyjh5UNr8wxgxE69buYU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Ecq4clyjh5UNr8wxgxE69buYU.svg 1011w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:666,intrinsicWidth:1011,pixelHeight:666,pixelWidth:1011,positionX:\"center\",positionY:\"center\",sizes:\"1200px\",src:\"https://framerusercontent.com/images/Ecq4clyjh5UNr8wxgxE69buYU.svg\",srcSet:\"https://framerusercontent.com/images/Ecq4clyjh5UNr8wxgxE69buYU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Ecq4clyjh5UNr8wxgxE69buYU.svg 1011w\"},className:\"framer-1uv2sj\",\"data-framer-name\":\"map\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ha7pm7\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{y:(componentViewport?.y||0)+0+6471.6+60+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1krox9c-container\",nodeId:\"l9pECEqYn\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(FeatureBadge,{height:\"100%\",id:\"l9pECEqYn\",layoutId:\"l9pECEqYn\",style:{height:\"100%\"},variant:\"xx2X_R8KN\",width:\"100%\",X_lLmeBIL:getLocalizedValue(\"v35\",activeLocale)??\"CUSTOMER LOVE\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v36\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"What Scholars Are Saying\"})}),className:\"framer-11rdh35\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"Hear from our satisfied users and elevate your writing to the next level\"})}),className:\"framer-abzuyc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lb719a\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uofcyu\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/hasantoxr/status/1695425301583741123?s=20\",motionChild:true,nodeId:\"lWzEfCntt\",openInNewTab:true,scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-z654o1 framer-1e1vmqu\",\"data-border\":true,\"data-framer-name\":\"Card/Testimonial\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-79ko1p\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6471.6+60+297.8+0+0+0+0+16+0+0),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/YgJXeDnPv1T6G3YfzUFglONgtvg.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/YgJXeDnPv1T6G3YfzUFglONgtvg.png\"},className:\"framer-1laqwuq\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n6il8k\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-48y8d7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uvduez\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\"},children:\"Hasan Toor \"})}),className:\"framer-1bqzvgw\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v39\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(171, 171, 171)\"},children:\"@hasantoxr\"})}),className:\"framer-9mhute\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v40\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(171, 171, 171)\"},children:\"\\xb7 Aug 26\"})}),className:\"framer-1wm3tg0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xqda7o-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DRBPIWxzg\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(17, 153, 238)\",height:\"100%\",iconSearch:getLocalizedValue(\"v26\",activeLocale)??\"House\",iconSelection:\"TwitterLogo\",id:\"DRBPIWxzg\",layoutId:\"DRBPIWxzg\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v41\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8jskgy\",\"data-styles-preset\":\"gjvC20EbM\",children:\"I thought AI writing was useless.  Then I found Jenni AI, the AI-powered assistant for academic writing.  It turned out to be much more advanced than I ever could have imagined.  Jenni AI = ChatGPT x 10.\"})}),className:\"framer-qrfof0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/CharlieCuddy/status/1668717195369521155?s=20\",motionChild:true,nodeId:\"cxrAo9vHg\",openInNewTab:true,scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-5culus framer-1e1vmqu\",\"data-border\":true,\"data-framer-name\":\"Card/Testimonial\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r6iuak\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:399,intrinsicWidth:399,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6471.6+60+297.8+0+0+0+171+16+0+0),pixelHeight:399,pixelWidth:399,src:\"https://framerusercontent.com/images/QggzllZ1kuq6jybTsj3mMpwZM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:399,intrinsicWidth:399,pixelHeight:399,pixelWidth:399,src:\"https://framerusercontent.com/images/QggzllZ1kuq6jybTsj3mMpwZM.png\"},className:\"framer-1i84o8o\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tba7hw\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qbrxp9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c91orl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v42\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\"},children:\"Charlie Cuddy\"})}),className:\"framer-1yn8qb6\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v43\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(171, 171, 171)\"},children:\"@sonofgorkhali \"})}),className:\"framer-i7cec7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(171, 171, 171)\"},children:\"\\xb7 23 Aug\"})}),className:\"framer-75hhv9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ht37p3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Etubx4kLM\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(17, 153, 238)\",height:\"100%\",iconSearch:getLocalizedValue(\"v26\",activeLocale)??\"House\",iconSelection:\"TwitterLogo\",id:\"Etubx4kLM\",layoutId:\"Etubx4kLM\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v45\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8jskgy\",\"data-styles-preset\":\"gjvC20EbM\",children:\"Love this use of AI to assist with, not replace, writing!   Keep crushing it  @Davidjpark96  \uD83D\uDCAA\"})}),className:\"framer-16f12p2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/waqaryofficial/status/1643990217337221121?s=20%5C\",motionChild:true,nodeId:\"g_nhO0UbO\",openInNewTab:true,scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-4scne9 framer-1e1vmqu\",\"data-border\":true,\"data-framer-name\":\"Card/Testimonial\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14pgkvq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6471.6+60+297.8+0+0+0+344+16+0+0),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/D6JbVPefLI5JYPowCUA6N7oDOPk.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/D6JbVPefLI5JYPowCUA6N7oDOPk.png\"},className:\"framer-3w36wt\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11r771x\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1397bmh\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-td7vto\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v46\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\"},children:\"Waqar Younas, PhD \"})}),className:\"framer-jbqki2\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v47\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(171, 171, 171)\"},children:\"@waqaryofficial\"})}),className:\"framer-17bhmir\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v48\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(171, 171, 171)\"},children:\" \\xb7 6 Apr\"})}),className:\"framer-h215w3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vg4ky-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"OVHyZltyd\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(17, 153, 238)\",height:\"100%\",iconSearch:getLocalizedValue(\"v26\",activeLocale)??\"House\",iconSelection:\"TwitterLogo\",id:\"OVHyZltyd\",layoutId:\"OVHyZltyd\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v49\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-8jskgy\",\"data-styles-preset\":\"gjvC20EbM\",children:[\"4/9 Jenni AI's Outline Builder is a game-changer for organizing your thoughts and structuring your content. Create detailed outlines effortlessly, ensuring your writing is clear and coherent. \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(17, 153, 238)\"},children:\"#OutlineBuilder #WritingTools #JenniAI\"})]})}),className:\"framer-1cfh593\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hzekea\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/sonofgorkhali/status/1562104751264862211?s=20\",motionChild:true,nodeId:\"bwmR8Y3b_\",openInNewTab:true,scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1r4vn2v framer-1e1vmqu\",\"data-border\":true,\"data-framer-name\":\"Card/Testimonial\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-111p1vz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:212,intrinsicWidth:212,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6471.6+60+297.8+0+517+0+0+16+0+0),pixelHeight:212,pixelWidth:212,src:\"https://framerusercontent.com/images/4FWEkn10pvOKyoGuUBD1bHOb7sA.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:212,intrinsicWidth:212,pixelHeight:212,pixelWidth:212,src:\"https://framerusercontent.com/images/4FWEkn10pvOKyoGuUBD1bHOb7sA.png\"},className:\"framer-1yqv6bf\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gcajue\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u2u13a\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17nn7sz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v50\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\"},children:\"Rosh \"})}),className:\"framer-1l9m284\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v51\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(171, 171, 171)\"},children:\"@sonofgorkhali\"})}),className:\"framer-1xwe211\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(171, 171, 171)\"},children:\"\\xb7 23 Aug\"})}),className:\"framer-1qat24d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3e14qc-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZVGzKoWyV\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(17, 153, 238)\",height:\"100%\",iconSearch:getLocalizedValue(\"v26\",activeLocale)??\"House\",iconSelection:\"TwitterLogo\",id:\"ZVGzKoWyV\",layoutId:\"ZVGzKoWyV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v52\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8jskgy\",\"data-styles-preset\":\"gjvC20EbM\",children:\"I started with Jenni-who & Jenni-what.  But now I can't write without Jenni. I love Jenni AI and am amazed to see how far Jenni has come. Kudos to http://Jenni.AI team.\"})}),className:\"framer-1l661u4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/sairahul1/status/1684911399082840064\",motionChild:true,nodeId:\"M35ESNh2s\",openInNewTab:true,scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-17il42y framer-1e1vmqu\",\"data-border\":true,\"data-framer-name\":\"Card/Testimonial\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ggtzrz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6471.6+60+297.8+0+517+0+173+16+0+0),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/2W1KXz9SQJXSsIVxaOGqkDdRecc.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/2W1KXz9SQJXSsIVxaOGqkDdRecc.jpg\"},className:\"framer-1gd881u\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e74anz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jwjeto\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bj03rc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v53\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\"},children:\"Sai Rahul \"})}),className:\"framer-1c7ek5h\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v54\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(171, 171, 171)\"},children:\"@sairahul1\"})}),className:\"framer-ds1pb2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v55\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(171, 171, 171)\"},children:\"\\xb7 28 Jul\"})}),className:\"framer-bfl0ux\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uwqizg-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"rsGdZXo0a\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(17, 153, 238)\",height:\"100%\",iconSearch:getLocalizedValue(\"v26\",activeLocale)??\"House\",iconSelection:\"TwitterLogo\",id:\"rsGdZXo0a\",layoutId:\"rsGdZXo0a\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v56\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8jskgy\",\"data-styles-preset\":\"gjvC20EbM\",children:\"Jenni is perfect for writing research docs, SOPs, study projects presentations \uD83D\uDC4C\uD83C\uDFFD\"})}),className:\"framer-ho2dk6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://x.com/stepru/status/1708112668979081337?s=20\",motionChild:true,nodeId:\"C6ZCsjY_8\",openInNewTab:true,scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-mb1zg9 framer-1e1vmqu\",\"data-border\":true,\"data-framer-name\":\"Card/Testimonial\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4wyo90\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6471.6+60+297.8+0+517+0+344+16+0+0),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/zzgBU8CHBbaBCOqxTjSGGNFboiY.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/zzgBU8CHBbaBCOqxTjSGGNFboiY.png\"},className:\"framer-1vm9yyl\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gjw0ag\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rpdtw2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d0l644\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v57\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\"},children:\"St\\xe9phane Prud'homme \"})}),className:\"framer-1d9bd5k\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v58\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(171, 171, 171)\"},children:\"@stepru \"})}),className:\"framer-1pi1vr8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v59\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(171, 171, 171)\"},children:\"30 Sept\"})}),className:\"framer-of8oqm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m77y7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"iELZQCeJ5\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(17, 153, 238)\",height:\"100%\",iconSearch:getLocalizedValue(\"v26\",activeLocale)??\"House\",iconSelection:\"TwitterLogo\",id:\"iELZQCeJ5\",layoutId:\"iELZQCeJ5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v60\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-8jskgy\",\"data-styles-preset\":\"gjvC20EbM\",children:[\"http://jenni.ai is awesome and super useful! thanks to @Davidjpark96 \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(15, 20, 25)\"},children:\"and \"}),\"@whoisjenniai \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(15, 20, 25)\"},children:\"fyi \"}),\"@Phd_jeu @DoctoralStories @WriteThatPhD\"]})}),className:\"framer-15rmcwe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q8oeax\",\"data-framer-name\":\"FAQ Accordion\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15o3a0q\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{y:(componentViewport?.y||0)+0+7901.4+60+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y101q4-container\",nodeId:\"WTRuw7AeP\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(FeatureBadge,{height:\"100%\",id:\"WTRuw7AeP\",layoutId:\"WTRuw7AeP\",style:{height:\"100%\"},variant:\"xx2X_R8KN\",width:\"100%\",X_lLmeBIL:getLocalizedValue(\"v61\",activeLocale)??\"SUPPORT\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v62\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Frequently asked questions\"})}),className:\"framer-1esvg99\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j6x6ue\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1040px)`,y:(componentViewport?.y||0)+0+7901.4+60+161.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:69,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1040px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m0wyvb-container\",nodeId:\"grGVmTyVr\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(FAQItem,{AWSjGYVqE:getLocalizedValue(\"v63\",activeLocale)??\"How does Jenni AI generate summaries?\",height:\"100%\",id:\"grGVmTyVr\",layoutId:\"grGVmTyVr\",style:{width:\"100%\"},variant:\"auB4OQqLA\",width:\"100%\",ycUUKKf_G:getLocalizedValue(\"v64\",activeLocale)??\"Jenni AI utilizes advanced machine learning algorithms to analyze and understand the text you provide. It identifies key points, central ideas, and important details to create a coherent and concise summary that reflects the essence of the original text.\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1040px)`,y:(componentViewport?.y||0)+0+7901.4+60+161.8+0+79}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1040px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mcpsib-container\",nodeId:\"A45dS55Ey\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(ElementsAccordionCopy15,{AWSjGYVqE:getLocalizedValue(\"v65\",activeLocale)??\"Is Jenni AI suitable for all academic fields?\",height:\"100%\",id:\"A45dS55Ey\",layoutId:\"A45dS55Ey\",style:{width:\"100%\"},variant:\"QPlBsGs6y\",width:\"100%\",ycUUKKf_G:getLocalizedValue(\"v66\",activeLocale)??\"Yes, Jenni AI is designed to cater to a wide range of academic fields. Whether you are in humanities, social sciences, natural sciences, or engineering, Jenni AI can assist you in summarizing and enhancing your academic writing.\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1040px)`,y:(componentViewport?.y||0)+0+7901.4+60+161.8+0+156}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:69,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1040px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lz849-container\",nodeId:\"HpGYdckJW\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(ElementsAccordionCopy16,{AWSjGYVqE:getLocalizedValue(\"v67\",activeLocale)??\"How does the citation helper work?\",height:\"100%\",id:\"HpGYdckJW\",layoutId:\"HpGYdckJW\",style:{width:\"100%\"},variant:\"LlPEaAAme\",width:\"100%\",ycUUKKf_G:getLocalizedValue(\"v68\",activeLocale)??\"The citation helper in Jenni AI automates the process of generating and formatting citations. You simply input the necessary details about the source, and Jenni AI will provide correctly formatted citations in various styles such as APA, MLA, Chicago, etc.\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1040px)`,y:(componentViewport?.y||0)+0+7901.4+60+161.8+0+235}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:69,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1040px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cok9f-container\",nodeId:\"hB9Ty9lXP\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(ElementsAccordionCopy16,{AWSjGYVqE:getLocalizedValue(\"v69\",activeLocale)??\"Can I use Jenni AI for professional or non-academic writing?\",height:\"100%\",id:\"hB9Ty9lXP\",layoutId:\"hB9Ty9lXP\",style:{width:\"100%\"},variant:\"LlPEaAAme\",width:\"100%\",ycUUKKf_G:getLocalizedValue(\"v70\",activeLocale)??\"Definitely! While Jenni AI is tailored for academic writing, its features are versatile and can be beneficial for professional or non-academic writing tasks as well.\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1040px)`,y:(componentViewport?.y||0)+0+7901.4+60+161.8+0+314}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:69,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1040px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12lc4z1-container\",nodeId:\"zm7p1kn1t\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(ElementsAccordionCopy16,{AWSjGYVqE:getLocalizedValue(\"v71\",activeLocale)??\"How does Jenni AI help with writer\u2019s block?\",height:\"100%\",id:\"zm7p1kn1t\",layoutId:\"zm7p1kn1t\",style:{width:\"100%\"},variant:\"LlPEaAAme\",width:\"100%\",ycUUKKf_G:getLocalizedValue(\"v72\",activeLocale)??\"Jenni AI offers prompts and suggestions to help overcome writer's block. By providing a structured summary of your text, it can help organize your thoughts and provide a clear direction for your writing, making it easier to move forward.\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1040px)`,y:(componentViewport?.y||0)+0+7901.4+60+161.8+0+393}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:69,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1040px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vb6xrp-container\",nodeId:\"zhgMxsv7Q\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(ElementsAccordionCopy16,{AWSjGYVqE:getLocalizedValue(\"v73\",activeLocale)??\"How does Jenni AI compare to other summarization tools?\",height:\"100%\",id:\"zhgMxsv7Q\",layoutId:\"zhgMxsv7Q\",style:{width:\"100%\"},variant:\"LlPEaAAme\",width:\"100%\",ycUUKKf_G:getLocalizedValue(\"v74\",activeLocale)??\"Jenni AI stands out due to its commitment to academic integrity, interactive editing, and a suite of features like plagiarism checking and citation helping. Unlike many competitors, Jenni AI is designed with a focus on aiding the academic writing process while promoting genuine scholarship and learning.\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w46ewg\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eonou8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{y:(componentViewport?.y||0)+0+8645.2+60+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,children:/*#__PURE__*/_jsx(Container,{className:\"framer-32qj5i-container\",nodeId:\"GvQhDHU2z\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(FeatureBadge,{height:\"100%\",id:\"GvQhDHU2z\",layoutId:\"GvQhDHU2z\",style:{height:\"100%\"},variant:\"xx2X_R8KN\",width:\"100%\",X_lLmeBIL:getLocalizedValue(\"v75\",activeLocale)??\"COMPARISON\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v76\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Choosing the Right Academic Writing Companion\"})}),className:\"framer-mjsl8s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v77\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"Get ready to make an informed decision and uncover the key reasons why Jenni AI is your ultimate tool for academic excellence.\"})}),className:\"framer-yty2u8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hy8dj5\",\"data-border\":true,\"data-framer-name\":\"Elements / Table Copy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f990pt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qdhjka\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{children:getLocalizedValue(\"v79\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tMzAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"rgba(10, 0, 31, 0.63)\"},children:\"Feature Featire\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v78\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tMzAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"rgba(10, 0, 31, 0.63)\"},children:\"Feature\"})}),className:\"framer-1gv0rjq\",fonts:[\"GF;Be Vietnam Pro-300\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-163rd7x\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v80\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fn056g\",\"data-styles-preset\":\"Cefnan2V_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(10, 0, 31)\"},children:\"Jenni.ai\"})}),className:\"framer-1hlkb06\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ofpvlk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v81\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fn056g\",\"data-styles-preset\":\"Cefnan2V_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(10, 0, 31)\"},children:\"COMPETITORS\"})}),className:\"framer-e4luhy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1edi8a3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hf3peb\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v82\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(10, 0, 31)\"},children:\"Academic Orientation\"})}),className:\"framer-jl95cs\",fonts:[\"GF;Be Vietnam Pro-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-flnl7y\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ohv8t8\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eov0n5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JIbBi9vcs\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(11, 157, 11)\",height:\"100%\",iconSearch:getLocalizedValue(\"v26\",activeLocale)??\"House\",iconSelection:\"CheckCircle\",id:\"JIbBi9vcs\",layoutId:\"JIbBi9vcs\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v83\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r4e1ro\",\"data-styles-preset\":\"mTnUhWLEM\",children:\"Designed with academic rigor in mind, ensuring your summaries uphold scholarly standards.\"})}),className:\"framer-1a7d416 hidden-1axca03\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18xoe64\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ngmovp-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jRjHdKovZ\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(238, 68, 68)\",height:\"100%\",iconSearch:getLocalizedValue(\"v26\",activeLocale)??\"House\",iconSelection:\"XCircle\",id:\"jRjHdKovZ\",layoutId:\"jRjHdKovZ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v84\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r4e1ro\",\"data-styles-preset\":\"mTnUhWLEM\",children:\"Often lack academic focus, potentially diluting the essence of scholarly texts.\"})}),className:\"framer-15qr6vl hidden-1axca03\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qvfcza\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bty5do\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v85\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(10, 0, 31)\"},children:\"Contextual Understanding\"})}),className:\"framer-glavka\",fonts:[\"GF;Be Vietnam Pro-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8efm1q\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9n5prk\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-156t0hx-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Psy8aoAZ6\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(11, 157, 11)\",height:\"100%\",iconSearch:getLocalizedValue(\"v26\",activeLocale)??\"House\",iconSelection:\"CheckCircle\",id:\"Psy8aoAZ6\",layoutId:\"Psy8aoAZ6\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v86\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r4e1ro\",\"data-styles-preset\":\"mTnUhWLEM\",children:\"Employs advanced AI to grasp the context, ensuring summaries are meaningful and coherent.\"})}),className:\"framer-1stbvwk hidden-1axca03\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l2r80v\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yb08eo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"E5OA1Xn4G\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(238, 68, 68)\",height:\"100%\",iconSearch:getLocalizedValue(\"v26\",activeLocale)??\"House\",iconSelection:\"XCircle\",id:\"E5OA1Xn4G\",layoutId:\"E5OA1Xn4G\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v87\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r4e1ro\",\"data-styles-preset\":\"mTnUhWLEM\",children:\"May struggle with contextual understanding, leading to disjointed or misleading summaries.\"})}),className:\"framer-k7w0su hidden-1axca03\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a8s2x1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dte7yv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v88\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(10, 0, 31)\"},children:\"Customization\"})}),className:\"framer-cgnky2\",fonts:[\"GF;Be Vietnam Pro-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cewwpr\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ncz1ig\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b8836-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PhrxjFXMn\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(11, 157, 11)\",height:\"100%\",iconSearch:getLocalizedValue(\"v26\",activeLocale)??\"House\",iconSelection:\"CheckCircle\",id:\"PhrxjFXMn\",layoutId:\"PhrxjFXMn\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v89\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r4e1ro\",\"data-styles-preset\":\"mTnUhWLEM\",children:\"Offers customization options to tailor summaries according to your specific needs and preferences.\"})}),className:\"framer-1nkkb10 hidden-1axca03\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uob0bl\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-k1ka61-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"b6gUjalzt\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(238, 68, 68)\",height:\"100%\",iconSearch:getLocalizedValue(\"v26\",activeLocale)??\"House\",iconSelection:\"XCircle\",id:\"b6gUjalzt\",layoutId:\"b6gUjalzt\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v90\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r4e1ro\",\"data-styles-preset\":\"mTnUhWLEM\",children:\"Generic summarization often with limited customization, risking loss of critical information.\"})}),className:\"framer-jexga4 hidden-1axca03\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13fvm5g\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-btk4ei\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v91\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(10, 0, 31)\"},children:\"User-Friendly Interface\"})}),className:\"framer-1t97f3r\",fonts:[\"GF;Be Vietnam Pro-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6kmmux\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r42nqu\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u19r08-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qpmBEos_7\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(11, 157, 11)\",height:\"100%\",iconSearch:getLocalizedValue(\"v26\",activeLocale)??\"House\",iconSelection:\"CheckCircle\",id:\"qpmBEos_7\",layoutId:\"qpmBEos_7\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v92\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r4e1ro\",\"data-styles-preset\":\"mTnUhWLEM\",children:\"Intuitive interface makes summarization a breeze, enhancing the user experience.\"})}),className:\"framer-uinkqp hidden-1axca03\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16fyzwv\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-irpj9d-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gd9DZZrK1\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(238, 68, 68)\",height:\"100%\",iconSearch:getLocalizedValue(\"v26\",activeLocale)??\"House\",iconSelection:\"XCircle\",id:\"gd9DZZrK1\",layoutId:\"gd9DZZrK1\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v93\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r4e1ro\",\"data-styles-preset\":\"mTnUhWLEM\",children:\"Clunky interfaces can hinder the summarization process, making it less user-friendly.\"})}),className:\"framer-10czds0 hidden-1axca03\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sy17xc\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-109bcj0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v94\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(10, 0, 31)\"},children:\"Learning and Improvement\"})}),className:\"framer-1trvcfg\",fonts:[\"GF;Be Vietnam Pro-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4mz44y\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b0qwss\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tyhqjx-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Mz6TxCkhw\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(11, 157, 11)\",height:\"100%\",iconSearch:getLocalizedValue(\"v26\",activeLocale)??\"House\",iconSelection:\"CheckCircle\",id:\"Mz6TxCkhw\",layoutId:\"Mz6TxCkhw\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v95\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r4e1ro\",\"data-styles-preset\":\"mTnUhWLEM\",children:\"Promotes an interactive learning environment, aiding in improving your summarization skills over time.\"})}),className:\"framer-1ddaca0 hidden-1axca03\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a36b0t\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gnnb97-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LHpIAoSlw\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(238, 68, 68)\",height:\"100%\",iconSearch:getLocalizedValue(\"v26\",activeLocale)??\"House\",iconSelection:\"XCircle\",id:\"LHpIAoSlw\",layoutId:\"LHpIAoSlw\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v96\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r4e1ro\",\"data-styles-preset\":\"mTnUhWLEM\",children:\"Merely provide summarization with no added value in terms of learning or skill enhancement.\"})}),className:\"framer-2ls4pp hidden-1axca03\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-162k2o1\",\"data-framer-name\":\"final CTA\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tp0yjy\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v97\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Ready to Elevate Your Academic Writing?\"})}),className:\"framer-796nst\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v98\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"Create your free Jenni AI account today and discover a new horizon of academic excellence!\"})}),className:\"framer-1rrxrd2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{y:(componentViewport?.y||0)+0+9824.5+60+260.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9htnk7-container\",nodeId:\"eIN5MNx2E\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(PrimaryCTA,{CV8sFPeBO:\"https://app.jenni.ai/register\",height:\"100%\",id:\"eIN5MNx2E\",IKRIASMk7:false,layoutId:\"eIN5MNx2E\",LXSVjyMyN:\"arrow-up-right\",RHB74vpG5:getLocalizedValue(\"v2\",activeLocale)??\"Start writing\",uyknrRpWc:false,variant:\"PobB7xwtM\",width:\"100%\",wM7gB0Gyl:getLocalizedValue(\"v3\",activeLocale)??\"\u2013 it's free\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{y:(componentViewport?.y||0)+0+10260.3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:537,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-sj0iug-container\",nodeId:\"kDjJ1Q3Y8\",scopeId:\"Vm_ReiJT7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zouHhA73u:{variant:\"YIYDUllyu\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"kDjJ1Q3Y8\",layoutId:\"kDjJ1Q3Y8\",style:{width:\"100%\"},variant:\"EtfXoh_Gr\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SOco6.framer-1e1vmqu, .framer-SOco6 .framer-1e1vmqu { display: block; }\",\".framer-SOco6.framer-1ooeqcn { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-SOco6 .framer-1a11t8t { 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-SOco6 .framer-17i6qki { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 140px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-1sgxsqm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1040px; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-1r16aus { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 90%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-ke2nnb, .framer-SOco6 .framer-1we560h { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-SOco6 .framer-7wskat-container, .framer-SOco6 .framer-m0wyvb-container, .framer-SOco6 .framer-1mcpsib-container, .framer-SOco6 .framer-1lz849-container, .framer-SOco6 .framer-1cok9f-container, .framer-SOco6 .framer-12lc4z1-container, .framer-SOco6 .framer-1vb6xrp-container, .framer-SOco6 .framer-sj0iug-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-SOco6 .framer-cahewx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 666px; }\",\".framer-SOco6 .framer-1hyjmik { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-SOco6 .framer-4aix20-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SOco6 .framer-1bh45ul-container { flex: none; height: 31px; position: relative; width: auto; }\",\".framer-SOco6 .framer-kfcn75 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SOco6 .framer-y9vqjn { background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%); bottom: -47px; flex: none; height: 247px; left: -36px; overflow: hidden; position: absolute; right: -60px; z-index: 2; }\",\".framer-SOco6 .framer-lncbbp { flex: none; height: 400px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-1wb9j06 { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.05); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.536 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: -376px; box-shadow: 0px 1px 18px 2px rgba(10, 0, 31, 0.08); flex: none; height: var(--framer-aspect-ratio-supported, 729px); left: 50%; position: absolute; top: 28px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-SOco6 .framer-1l1htg9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-3ydnsr, .framer-SOco6 .framer-13l9w5e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 1040px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-1kfo1cl, .framer-SOco6 .framer-1awb1cr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 80%; }\",\".framer-SOco6 .framer-yarcp1, .framer-SOco6 .framer-daehps, .framer-SOco6 .framer-owffbq, .framer-SOco6 .framer-5fx2vd, .framer-SOco6 .framer-mm4bl4, .framer-SOco6 .framer-1kaus4z, .framer-SOco6 .framer-364jck, .framer-SOco6 .framer-1ff8knv, .framer-SOco6 .framer-f1y92a, .framer-SOco6 .framer-1j69d90, .framer-SOco6 .framer-jzhzle, .framer-SOco6 .framer-12cyng7, .framer-SOco6 .framer-jp71v3, .framer-SOco6 .framer-1sun4oc, .framer-SOco6 .framer-12o59wj, .framer-SOco6 .framer-ffqoqz, .framer-SOco6 .framer-1nzoygi, .framer-SOco6 .framer-11rdh35, .framer-SOco6 .framer-qrfof0, .framer-SOco6 .framer-16f12p2, .framer-SOco6 .framer-1cfh593, .framer-SOco6 .framer-1l661u4, .framer-SOco6 .framer-ho2dk6, .framer-SOco6 .framer-15rmcwe, .framer-SOco6 .framer-1esvg99, .framer-SOco6 .framer-mjsl8s, .framer-SOco6 .framer-1a7d416, .framer-SOco6 .framer-15qr6vl, .framer-SOco6 .framer-1stbvwk, .framer-SOco6 .framer-k7w0su, .framer-SOco6 .framer-1nkkb10, .framer-SOco6 .framer-jexga4, .framer-SOco6 .framer-uinkqp, .framer-SOco6 .framer-10czds0, .framer-SOco6 .framer-1ddaca0, .framer-SOco6 .framer-2ls4pp { --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-SOco6 .framer-1vata2b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 1200px; z-index: 1; }\",\".framer-SOco6 .framer-13velsv-container { flex: none; height: auto; max-width: 1280px; position: relative; width: auto; }\",\".framer-SOco6 .framer-lah8oz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-adun26-container, .framer-SOco6 .framer-1d3fm9a-container, .framer-SOco6 .framer-diorj6-container, .framer-SOco6 .framer-1krox9c-container, .framer-SOco6 .framer-1y101q4-container, .framer-SOco6 .framer-32qj5i-container { flex: none; height: 21px; position: relative; width: auto; }\",\".framer-SOco6 .framer-ignmom { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-1yi84n4, .framer-SOco6 .framer-1g6swpe, .framer-SOco6 .framer-1a3gdt9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: center; max-width: 1040px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-sbbj48, .framer-SOco6 .framer-g5wbd8, .framer-SOco6 .framer-51bxuo { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-SOco6 .framer-1sq4jh, .framer-SOco6 .framer-zkpvvl, .framer-SOco6 .framer-1mfnnat { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SOco6 .framer-1mt8ozy, .framer-SOco6 .framer-151rfu1, .framer-SOco6 .framer-x2q9s4 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SOco6 .framer-dlmljo, .framer-SOco6 .framer-1hv7e05, .framer-SOco6 .framer-15v5hm6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SOco6 .framer-n5dv3c, .framer-SOco6 .framer-748ojn { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 400px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-SOco6 .framer-1sr07vk { align-content: center; align-items: center; aspect-ratio: 1.2010443864229765 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 400px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-SOco6 .framer-yqxb67 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 80px 20px 80px 20px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-1dhmt8p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1040px; overflow: hidden; padding: 0px; position: relative; width: 80%; }\",\".framer-SOco6 .framer-uei6y6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-SOco6 .framer-zqgsqi-container, .framer-SOco6 .framer-xq3bew-container, .framer-SOco6 .framer-9htnk7-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-SOco6 .framer-15tskks-container { flex: none; height: auto; left: 0px; max-width: 100%; position: fixed; right: 0px; top: 0px; z-index: 3; }\",\".framer-SOco6 .framer-hhd4ff { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 20px 80px 20px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-1u5r02s, .framer-SOco6 .framer-tp0yjy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1040px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-1b99jm8, .framer-SOco6 .framer-jl9gex, .framer-SOco6 .framer-1bqzvgw, .framer-SOco6 .framer-9mhute, .framer-SOco6 .framer-1wm3tg0, .framer-SOco6 .framer-1yn8qb6, .framer-SOco6 .framer-i7cec7, .framer-SOco6 .framer-75hhv9, .framer-SOco6 .framer-jbqki2, .framer-SOco6 .framer-17bhmir, .framer-SOco6 .framer-h215w3, .framer-SOco6 .framer-1l9m284, .framer-SOco6 .framer-1xwe211, .framer-SOco6 .framer-1qat24d, .framer-SOco6 .framer-1c7ek5h, .framer-SOco6 .framer-ds1pb2, .framer-SOco6 .framer-bfl0ux, .framer-SOco6 .framer-1d9bd5k, .framer-SOco6 .framer-1pi1vr8, .framer-SOco6 .framer-of8oqm, .framer-SOco6 .framer-glavka, .framer-SOco6 .framer-1trvcfg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SOco6 .framer-hj0adn { display: grid; flex: none; gap: 16px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(3, min-content); height: min-content; justify-content: center; max-width: 1040px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-tesk3o, .framer-SOco6 .framer-py01m6 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; grid-column: span 2; height: min-content; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-tai1pi, .framer-SOco6 .framer-1yhs9bb { --border-bottom-width: 1px; --border-color: rgba(10, 0, 31, 0.05); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 1px 12px 2px rgba(10, 0, 31, 0.05); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: auto; justify-content: flex-start; overflow: hidden; padding: 24px 32px 24px 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-SOco6 .framer-18o3qnf, .framer-SOco6 .framer-11hkdiu, .framer-SOco6 .framer-hq1wa8, .framer-SOco6 .framer-177g9mp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-1ubromw-container, .framer-SOco6 .framer-1k4a9es-container, .framer-SOco6 .framer-1q070qo-container, .framer-SOco6 .framer-1uz9e2b-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); position: relative; width: 32px; }\",\".framer-SOco6 .framer-efukch, .framer-SOco6 .framer-7e7y5h { --border-bottom-width: 1px; --border-color: rgba(10, 0, 31, 0.05); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 1px 12px 2px rgba(10, 0, 31, 0.05); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px 32px 24px 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-SOco6 .framer-mfd5uz { align-content: center; align-items: center; background-color: #fafafc; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 20px 80px 20px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-1uv2sj { flex: none; height: 752px; left: calc(50.00000000000002% - 1200px / 2); opacity: 0.7; overflow: visible; position: absolute; top: 20px; width: 1200px; z-index: 0; }\",\".framer-SOco6 .framer-1ha7pm7 { 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: 1040px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-abzuyc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 68%; word-break: break-word; word-wrap: break-word; }\",\".framer-SOco6 .framer-lb719a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1040px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-1uofcyu, .framer-SOco6 .framer-1hzekea { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-SOco6 .framer-z654o1, .framer-SOco6 .framer-5culus, .framer-SOco6 .framer-4scne9, .framer-SOco6 .framer-1r4vn2v, .framer-SOco6 .framer-17il42y, .framer-SOco6 .framer-mb1zg9 { --border-bottom-width: 1px; --border-color: rgba(10, 0, 31, 0.05); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 1px 12px 2px rgba(10, 0, 31, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 24px 16px 24px; position: relative; text-decoration: none; width: 100%; }\",\".framer-SOco6 .framer-79ko1p, .framer-SOco6 .framer-r6iuak, .framer-SOco6 .framer-14pgkvq, .framer-SOco6 .framer-111p1vz, .framer-SOco6 .framer-1ggtzrz, .framer-SOco6 .framer-4wyo90 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-1laqwuq, .framer-SOco6 .framer-1i84o8o, .framer-SOco6 .framer-3w36wt, .framer-SOco6 .framer-1yqv6bf, .framer-SOco6 .framer-1gd881u, .framer-SOco6 .framer-1vm9yyl { aspect-ratio: 1 / 1; border-bottom-left-radius: 1000px; border-bottom-right-radius: 1000px; border-top-left-radius: 1000px; border-top-right-radius: 1000px; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 40px; }\",\".framer-SOco6 .framer-1n6il8k, .framer-SOco6 .framer-1tba7hw, .framer-SOco6 .framer-11r771x, .framer-SOco6 .framer-gcajue, .framer-SOco6 .framer-e74anz, .framer-SOco6 .framer-1gjw0ag { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-SOco6 .framer-48y8d7, .framer-SOco6 .framer-1qbrxp9, .framer-SOco6 .framer-1397bmh, .framer-SOco6 .framer-1u2u13a, .framer-SOco6 .framer-1jwjeto, .framer-SOco6 .framer-1rpdtw2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-1uvduez, .framer-SOco6 .framer-bj03rc, .framer-SOco6 .framer-1d0l644 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 17px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-SOco6 .framer-xqda7o-container, .framer-SOco6 .framer-1ht37p3-container, .framer-SOco6 .framer-1vg4ky-container, .framer-SOco6 .framer-3e14qc-container, .framer-SOco6 .framer-1uwqizg-container, .framer-SOco6 .framer-m77y7-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); position: relative; width: 16px; }\",\".framer-SOco6 .framer-c91orl, .framer-SOco6 .framer-td7vto, .framer-SOco6 .framer-17nn7sz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 17px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-SOco6 .framer-q8oeax { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-15o3a0q { 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: 1040%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-j6x6ue { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1040px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-w46ewg { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-1eonou8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; max-width: 1040px; overflow: visible; padding: 0px; position: relative; width: 80%; }\",\".framer-SOco6 .framer-yty2u8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-SOco6 .framer-1hy8dj5 { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.05); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; box-shadow: 0px 0.5419685715969536px 0.5419685715969536px -1.25px rgba(0, 0, 0, 0.1), 0px 2.0596799729191115px 2.0596799729191115px -2.5px rgba(0, 0, 0, 0.09), 0px 9px 9px -3.75px rgba(0, 0, 0, 0.04); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1040px; overflow: hidden; padding: 0px; position: relative; width: 90%; will-change: var(--framer-will-change-override, transform); }\",\".framer-SOco6 .framer-1f990pt { align-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.05); box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-1qdhjka, .framer-SOco6 .framer-hf3peb, .framer-SOco6 .framer-bty5do, .framer-SOco6 .framer-dte7yv, .framer-SOco6 .framer-btk4ei, .framer-SOco6 .framer-109bcj0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-SOco6 .framer-1gv0rjq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0; position: relative; white-space: pre; width: auto; }\",\".framer-SOco6 .framer-163rd7x, .framer-SOco6 .framer-1ofpvlk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-SOco6 .framer-1hlkb06, .framer-SOco6 .framer-e4luhy, .framer-SOco6 .framer-jl95cs, .framer-SOco6 .framer-cgnky2, .framer-SOco6 .framer-1t97f3r { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-SOco6 .framer-1edi8a3, .framer-SOco6 .framer-a8s2x1, .framer-SOco6 .framer-13fvm5g { align-content: center; align-items: center; background-color: #ffffff; box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-flnl7y, .framer-SOco6 .framer-8efm1q { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-SOco6 .framer-ohv8t8, .framer-SOco6 .framer-9n5prk, .framer-SOco6 .framer-ncz1ig, .framer-SOco6 .framer-r42nqu, .framer-SOco6 .framer-1b0qwss { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-SOco6 .framer-1eov0n5-container, .framer-SOco6 .framer-ngmovp-container, .framer-SOco6 .framer-156t0hx-container, .framer-SOco6 .framer-1yb08eo-container, .framer-SOco6 .framer-b8836-container, .framer-SOco6 .framer-k1ka61-container, .framer-SOco6 .framer-1u19r08-container, .framer-SOco6 .framer-irpj9d-container, .framer-SOco6 .framer-tyhqjx-container, .framer-SOco6 .framer-gnnb97-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); position: relative; width: 24px; }\",\".framer-SOco6 .framer-18xoe64, .framer-SOco6 .framer-1l2r80v, .framer-SOco6 .framer-1uob0bl, .framer-SOco6 .framer-16fyzwv, .framer-SOco6 .framer-1a36b0t { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-SOco6 .framer-1qvfcza, .framer-SOco6 .framer-1sy17xc { --border-bottom-width: 0px; --border-color: rgba(0, 0, 0, 0.05); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.02); box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-cewwpr, .framer-SOco6 .framer-6kmmux, .framer-SOco6 .framer-4mz44y { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-SOco6 .framer-162k2o1 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1520px; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-SOco6 .framer-796nst, .framer-SOco6 .framer-1rrxrd2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 60%; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-SOco6[data-border=\"true\"]::after, .framer-SOco6 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-SOco6.framer-1ooeqcn { width: 810px; } .framer-SOco6 .framer-17i6qki { padding: 80px 40px 40px 40px; } .framer-SOco6 .framer-1sgxsqm { padding: 40px 40px 0px 40px; } .framer-SOco6 .framer-1r16aus { overflow: visible; } .framer-SOco6 .framer-cahewx { width: 575px; } .framer-SOco6 .framer-lncbbp { height: 280px; } .framer-SOco6 .framer-1wb9j06 { bottom: -215px; height: var(--framer-aspect-ratio-supported, 476px); } .framer-SOco6 .framer-1l1htg9 { padding: 32px 0px 32px 0px; } .framer-SOco6 .framer-lah8oz, .framer-SOco6 .framer-q8oeax, .framer-SOco6 .framer-162k2o1 { padding: 60px 40px 60px 40px; } .framer-SOco6 .framer-1awb1cr, .framer-SOco6 .framer-1dhmt8p { width: 90%; } .framer-SOco6 .framer-ignmom { gap: 100px; } .framer-SOco6 .framer-n5dv3c, .framer-SOco6 .framer-1sr07vk, .framer-SOco6 .framer-748ojn { height: var(--framer-aspect-ratio-supported, 288px); } .framer-SOco6 .framer-yqxb67, .framer-SOco6 .framer-hhd4ff { padding: 60px 20px 60px 20px; } .framer-SOco6 .framer-uei6y6, .framer-SOco6 .framer-1eonou8 { width: 100%; } .framer-SOco6 .framer-1u5r02s, .framer-SOco6 .framer-1ha7pm7 { width: 80%; } .framer-SOco6 .framer-1b99jm8, .framer-SOco6 .framer-jl9gex { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-SOco6 .framer-hj0adn { gap: 20px; max-width: 900px; } .framer-SOco6 .framer-mfd5uz { gap: 40px; padding: 60px 20px 60px 20px; } .framer-SOco6 .framer-1uv2sj { height: 707px; left: calc(48.51851851851854% - 877px / 2); top: 0px; width: 877px; } .framer-SOco6 .framer-w46ewg { gap: 40px; padding: 60px 40px 60px 40px; } .framer-SOco6 .framer-yty2u8, .framer-SOco6 .framer-1rrxrd2 { width: 65%; } .framer-SOco6 .framer-1f990pt, .framer-SOco6 .framer-1edi8a3, .framer-SOco6 .framer-1qvfcza, .framer-SOco6 .framer-a8s2x1, .framer-SOco6 .framer-13fvm5g, .framer-SOco6 .framer-1sy17xc { gap: 8px; } .framer-SOco6 .framer-flnl7y { justify-content: flex-start; } .framer-SOco6 .framer-tp0yjy { width: 805px; } .framer-SOco6 .framer-796nst { width: 70%; }}\",\"@media (max-width: 809px) { .framer-SOco6.framer-1ooeqcn { width: 390px; } .framer-SOco6 .framer-17i6qki { padding: 120px 20px 40px 20px; } .framer-SOco6 .framer-1sgxsqm { padding: 20px 0px 0px 0px; } .framer-SOco6 .framer-1r16aus { max-width: unset; } .framer-SOco6 .framer-cahewx { padding: 0px 20px 0px 20px; width: 100%; } .framer-SOco6 .framer-y9vqjn { height: 118px; } .framer-SOco6 .framer-lncbbp { height: 128px; } .framer-SOco6 .framer-1wb9j06 { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; bottom: -143px; box-shadow: 0px 1px 10px 2px rgba(10, 0, 31, 0.08); height: var(--framer-aspect-ratio-supported, 228px); top: 20px; } .framer-SOco6 .framer-1l1htg9 { padding: 32px 0px 32px 0px; } .framer-SOco6 .framer-1kfo1cl { width: 90%; } .framer-SOco6 .framer-lah8oz, .framer-SOco6 .framer-mfd5uz { gap: 40px; padding: 60px 20px 60px 20px; } .framer-SOco6 .framer-1awb1cr, .framer-SOco6 .framer-1dhmt8p { padding: 20px; width: 100%; } .framer-SOco6 .framer-ignmom { gap: 80px; } .framer-SOco6 .framer-1yi84n4, .framer-SOco6 .framer-1g6swpe, .framer-SOco6 .framer-1a3gdt9 { flex-direction: column; } .framer-SOco6 .framer-sbbj48, .framer-SOco6 .framer-g5wbd8, .framer-SOco6 .framer-51bxuo { flex: none; order: 1; width: 100%; } .framer-SOco6 .framer-n5dv3c, .framer-SOco6 .framer-1sr07vk, .framer-SOco6 .framer-748ojn { flex: none; height: var(--framer-aspect-ratio-supported, 292px); order: 0; width: 100%; } .framer-SOco6 .framer-yqxb67, .framer-SOco6 .framer-q8oeax, .framer-SOco6 .framer-w46ewg, .framer-SOco6 .framer-162k2o1 { padding: 60px 20px 60px 20px; } .framer-SOco6 .framer-uei6y6, .framer-SOco6 .framer-1eonou8, .framer-SOco6 .framer-yty2u8, .framer-SOco6 .framer-1hy8dj5, .framer-SOco6 .framer-796nst, .framer-SOco6 .framer-1rrxrd2 { width: 100%; } .framer-SOco6 .framer-hhd4ff { padding: 60px 0px 60px 0px; } .framer-SOco6 .framer-1u5r02s { padding: 20px; } .framer-SOco6 .framer-1b99jm8, .framer-SOco6 .framer-jl9gex { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-SOco6 .framer-hj0adn { gap: 10px; grid-template-columns: repeat(1, minmax(200px, 1fr)); max-width: 500px; padding: 20px; } .framer-SOco6 .framer-tesk3o, .framer-SOco6 .framer-py01m6 { flex-direction: column; grid-column: span 1; } .framer-SOco6 .framer-tai1pi, .framer-SOco6 .framer-1yhs9bb { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-SOco6 .framer-efukch, .framer-SOco6 .framer-7e7y5h, .framer-SOco6 .framer-1uofcyu, .framer-SOco6 .framer-1hzekea { flex: none; width: 100%; } .framer-SOco6 .framer-1uv2sj { left: calc(53.84615384615387% - 734px / 2); top: 0px; width: 734px; } .framer-SOco6 .framer-abzuyc { width: 80%; } .framer-SOco6 .framer-lb719a { align-content: center; align-items: center; flex-direction: column; gap: 20px; } .framer-SOco6 .framer-1f990pt, .framer-SOco6 .framer-1edi8a3, .framer-SOco6 .framer-1qvfcza, .framer-SOco6 .framer-a8s2x1, .framer-SOco6 .framer-13fvm5g, .framer-SOco6 .framer-1sy17xc { gap: 8px; } .framer-SOco6 .framer-1qdhjka { flex: none; max-width: 140px; width: min-content; } .framer-SOco6 .framer-1gv0rjq { white-space: pre-wrap; width: 104px; word-break: break-word; word-wrap: break-word; } .framer-SOco6 .framer-hf3peb, .framer-SOco6 .framer-bty5do, .framer-SOco6 .framer-dte7yv, .framer-SOco6 .framer-btk4ei, .framer-SOco6 .framer-109bcj0 { max-width: 120px; } .framer-SOco6 .framer-glavka, .framer-SOco6 .framer-1trvcfg { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8976\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TqLOxlnPa\":{\"layout\":[\"fixed\",\"auto\"]},\"zouHhA73u\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerVm_ReiJT7=withCSS(Component,css,\"framer-SOco6\");export default FramerVm_ReiJT7;FramerVm_ReiJT7.displayName=\"Summarizer\";FramerVm_ReiJT7.defaultProps={height:8976,width:1200};addFonts(FramerVm_ReiJT7,[{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/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/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\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Be Vietnam Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HScJ183T7wrcwap.woff2\",weight:\"300\"},{family:\"Be Vietnam Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl83T7wrcwap.woff2\",weight:\"500\"}]},...FormFonts,...PrimaryCTAFonts,...LovedBySocialProofFonts,...TickerFonts,...FeatureBadgeFonts,...NavbarFonts,...PhosphorFonts,...FAQItemFonts,...ElementsAccordionCopy15Fonts,...ElementsAccordionCopy16Fonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVm_ReiJT7\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TqLOxlnPa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zouHhA73u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"8976\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["loadPDFJsLibrary", "script", "TextInputFramework2Inputs", "toolTitle", "functionality", "generateButtonTitle", "inputs", "isGenerated", "onClearInputs", "onGenerate", "maxWordCount", "minWordCount", "isEssayGenerating", "setIsEssayGenerating", "ye", "isEssayGenerated", "setIsEssayGenerated", "wordIndex", "setWordIndex", "displayedText", "setDisplayedText", "isCopied", "setIsCopied", "isPressed", "setIsPressed", "inputText", "setInputText", "fileName", "setFileName", "error", "setError", "wordCount", "setWordCount", "chatCompletion", "setChatCompletion", "fileInputRef", "pe", "extractTextFromPDF", "file", "window", "showToastError", "resolve", "reject", "reader", "typedarray", "pdf", "totalPages", "extractedText", "pagePromises", "pageNumber", "pagePromise", "page", "textContent", "pageText", "item", "ue", "clearAllInputs", "fullOnGenerate", "generatedText", "handleTextChange", "e", "text", "handleFileUpload", "handleMouseDown", "handleMouseUp", "handleCopy", "navigator", "onPasteButton", "clipboardText", "n", "textInputStyle", "placeholderStyle", "buttonContainerStyle", "leftPanelContainerStyle2Inputs", "rightPanelContainerStyle2Inputs", "uploadButtonStyle", "inputComponentsContainerStyle", "getInputComponentsContainerStyle", "inputCount", "parentContainerStyleTemp", "navbarStyleTemp", "newInfoStyle", "interval", "prev", "getWordCount", "u", "parentContainerStyle", "p", "Ie", "headerStyle", "titleStyle", "headerTextStyle", "gapDivStyle", "inputComponent", "index", "navbarStyle", "disabledClearButtonStyle", "clearButtonStyle", "disabledButtonStyle", "buttonStyle", "altHeaderStyle", "copyButtonStyle", "disabledCopyButtonStyle", "copyIconStyle", "copyButtonTextStyle", "disabledCopyButtonTextStyle", "outputContainerStyle", "infoHiddenStyle", "infoContentsStyle", "textStyle", "TextInputFramework2Inputs_default", "MAX_SUMMARIZED_TEXT_LENGTH", "format", "SummarizerForm", "prompt", "setPrompt", "ye", "isEssayGenerated", "setIsEssayGenerated", "summarizeStyle", "setSummarizeStyle", "summaryLength", "setSummaryLength", "handleSliderChange", "e", "clearInputs", "handleSubmit", "inputText", "finalText", "cleanedContent", "getGroqChatCompletion", "p", "TextInputFramework2Inputs_default", "u", "selectWrapperStyleTextInput", "paraInputStyle", "chevronStyle", "labelStyle", "MAX_SUMMARIZED_TEXT_LENGTH", "Form", "props", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText", "FormFonts", "getFonts", "Form", "PrimaryCTAFonts", "tO06mN869_default", "ContainerWithOptimizedAppearEffect", "Container", "LovedBySocialProofFonts", "kAQTH90bG_default", "MotionDivWithFXWithOptimizedAppearEffect", "withFX", "motion", "TickerFonts", "X2s2_ZThv_default", "FeatureBadgeFonts", "Rx11D77X9_default", "NavbarFonts", "fxukFy9qH_default", "PhosphorFonts", "Icon", "FAQItemFonts", "w8tNl30LD_default", "ElementsAccordionCopy15Fonts", "paPYK2X58_default", "ElementsAccordionCopy16Fonts", "oIYXMoO2J_default", "FooterFonts", "mg201gHDw_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "transformTemplate1", "_", "t", "equals", "a", "b", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "F7ScVOwlmbtE696lin", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "usePreloadLocalizedValues", "visible", "isDisplayed", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "getLocalizedValue", "x", "ComponentViewportProvider", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "Link", "css", "FramerVm_ReiJT7", "withCSS", "Vm_ReiJT7_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
