{"version":3,"file":"WuuPEsMgl9f69IH-MnowJpUZSh-Uehaag3-mdes1Gzg.Dxw8NQT1.mjs","names":["FramerControlType","addPropertyOverrides","UploadMeterFonts","SmartComponentScopedContainerWithFXWithOptimizedAppearEffect","cycleOrder","serializationHash","variantClassNames","transition1","transformTemplate1","transition2","animation","animation1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","Image","css","CopyButton","CopyButtonInfo","serializationHash","variantClassNames","transition1","transformTemplate1","transition2","animation","animation1","humanReadableVariantMap","getProps","Component","Image","css","TopBar","ProfileInfo","UploadMeter","LogoutContainer","metadata","PropertyOverrides"],"sources":["https:/framerusercontent.com/modules/wbT1Dk9LFFkRuSQBnQlW/IuKzbxrdMfHnCqVY53UG/UploadMeter.js","https:/framerusercontent.com/modules/5isOhs3vXvNS2HbSMPeZ/Lw3u8J7czzwilvKMmouU/CG7Zp7ccr.js","https:/framerusercontent.com/modules/A8S33jElXayh4lX7bOK2/Do11xpezGg2YolLw9jgT/OZmDIE9Dg.js","https:/framerusercontent.com/modules/9qETYMFWeyearZWj2Vc4/J2qUupvW5qWOgROOAOzk/FqPSK6Iib.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{motion,useAnimation,useInView}from\"framer-motion\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType,useIsStaticRenderer}from\"framer\";import{supabase}from\"https://framer.com/m/config-IqIK.js@ZgTNByyFpMAOtH9spKQi\";import{useSessionData}from\"https://framer.com/m/SupabaseManager-V5Fh.js@CsJRCAMcMbJlLi5v0Eu0\";/**\n * UploadMeter\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight fixed\n */// Format bytes to human readable format with accurate conversion\nfunction formatBytes(bytes){if(bytes===0)return\"0 B\";const k=1024;const sizes=[\"B\",\"KB\",\"MB\",\"GB\",\"TB\",\"PB\"];const i=Math.floor(Math.log(bytes)/Math.log(k));// Ensure we don't go beyond our size array\nconst sizeIndex=Math.min(i,sizes.length-1);return parseFloat((bytes/Math.pow(k,sizeIndex)).toFixed(2))+\" \"+sizes[sizeIndex];}// Fixed 50GB max limit in bytes\nconst MAX_UPLOAD_LIMIT=200*1024*1024*1024// 50GB in bytes\n;// Calculate max upload limit based on strikes\nfunction getStrikeAdjustedMaxLimit(strikes,maxNoStrikes,max1Strike,max2Strikes){if(strikes===null||strikes===0){return maxNoStrikes;}else if(strikes===1){return max1Strike;}else if(strikes===2){return max2Strikes;}else{return 0// No uploads allowed for 3 strikes\n;}}export default function UploadMeter(props){const{minValue=0,barColor,bgColor,borderColor,indicatorColor,textColor,font,barHeight,barRadius,segmentCount,style,maxSizeNoStrikesGB=200,maxSize1StrikeGB=25,maxSize2StrikesGB=5}=props;const isStatic=useIsStaticRenderer();const ref=useRef(null);const inView=useInView(ref,{once:true});const controls=useAnimation();const[sessionData]=useSessionData();const[totalUploadSize,setTotalUploadSize]=useState(0);const[userStrikes,setUserStrikes]=useState(null);// Fetch total_upload_size and strikes from users table\nuseEffect(()=>{const fetchUserData=async()=>{if(!sessionData?.session?.user?.id)return;try{const{data,error}=await supabase.from(\"users\").select(\"total_upload_size, strikes\").eq(\"id\",sessionData.session.user.id).single();if(error){console.error(\"Error fetching user data:\",error);return;}if(data){if(data.total_upload_size!==null){// Database stores in bytes\nsetTotalUploadSize(data.total_upload_size);}setUserStrikes(data.strikes||null);}}catch(err){console.error(\"Failed to fetch user upload size:\",err);}};fetchUserData();},[sessionData?.session?.user?.id]);const uploadedValue=totalUploadSize;// Calculate max limit based on strikes\nconst maxValue=getStrikeAdjustedMaxLimit(userStrikes,maxSizeNoStrikesGB*1024*1024*1024,maxSize1StrikeGB*1024*1024*1024,maxSize2StrikesGB*1024*1024*1024);// Animate indicator value from minValue to uploadedValue\nconst[animatedValue,setAnimatedValue]=useState(minValue);const clampedValue=Math.max(minValue,Math.min(uploadedValue,maxValue));const percent=(animatedValue-minValue)/(maxValue-minValue)*100;useEffect(()=>{if(!isStatic&&inView){controls.start({width:percent+\"%\"},props.indicatorTransition);}},[percent,controls,inView,isStatic,props.indicatorTransition]);// Animate the indicator value from minValue to uploadedValue\nuseEffect(()=>{if(!isStatic&&inView){let rafId;let start=null;const duration=(props.indicatorTransition?.duration||1.2)*1e3;const ease=props.indicatorTransition?.ease||(t=>t);const from=minValue;const to=clampedValue;function animate(ts){if(!start)start=ts;const elapsed=ts-start;const t=Math.min(1,elapsed/duration);const eased=typeof ease===\"function\"?ease(t):t;const value=from+(to-from)*eased;setAnimatedValue(value);if(t<1)rafId=requestAnimationFrame(animate);else setAnimatedValue(to);}setAnimatedValue(from);rafId=requestAnimationFrame(animate);return()=>rafId&&cancelAnimationFrame(rafId);}else{setAnimatedValue(clampedValue);}},[clampedValue,minValue,inView,isStatic,props.indicatorTransition]);// Segment rendering\nconst segments=[];for(let i=0;i<segmentCount;i++){const segPercent=i/(segmentCount-1)*100;const isActive=segPercent<=percent;segments.push(/*#__PURE__*/_jsx(motion.div,{initial:{opacity:.2,scaleY:.7,y:24,boxShadow:\"0 0 0 0 rgba(0,0,0,0)\"},animate:{opacity:isActive?1:.2,scaleY:isActive?1.35:.7,y:isActive?0:24,backgroundColor:isActive?barColor:borderColor,boxShadow:isActive?`0 2px 12px 0 ${barColor}33`:\"0 0 0 0 rgba(0,0,0,0)\"},transition:{duration:.5,delay:isActive?i*.018:0,type:\"spring\",stiffness:220,damping:18,mass:.7},style:{flex:1,maxWidth:3,height:barHeight-10,background:isActive?barColor:borderColor,borderRadius:2,boxShadow:\"0 0 0 0 rgba(0,0,0,0)\"}},i));}// Indicator position\nconst indicatorLeft=`calc(${percent}% - 24px)`;// No drag logic\nreturn /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...style,width:\"100%\",height:64,display:\"flex\",alignItems:\"center\",justifyContent:\"center\",background:\"transparent\"},role:\"region\",\"aria-label\":\"Uploaded data progress bar\",children:/*#__PURE__*/_jsxs(\"div\",{style:{width:\"100%\",height:barHeight+32,background:\"transparent\",borderRadius:barRadius+8,border:`2px solid ${borderColor}`,display:\"flex\",alignItems:\"center\",justifyContent:\"space-between\",position:\"relative\",boxShadow:\"0 2px 16px 0 rgba(0,0,0,0.18)\"},tabIndex:0,\"aria-valuenow\":clampedValue,\"aria-valuemin\":minValue,\"aria-valuemax\":maxValue,\"aria-valuetext\":`Uploaded ${formatBytes(clampedValue)} of ${formatBytes(maxValue)}`,\"aria-label\":\"Uploaded data progress bar\",role:\"progressbar\",children:[/*#__PURE__*/_jsx(\"div\",{style:{flex:1,display:\"flex\",alignItems:\"center\",justifyContent:\"center\",position:\"relative\",height:barHeight,margin:\"0 12px\",cursor:isStatic?\"default\":\"pointer\",userSelect:\"none\"},\"aria-label\":`Progress: ${formatBytes(clampedValue)} of ${formatBytes(maxValue)}`,children:/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:barHeight,display:\"flex\",alignItems:\"center\",justifyContent:\"space-between\",position:\"relative\",gap:\"4px\"},children:segments})}),/*#__PURE__*/_jsx(\"div\",{style:{minWidth:120,height:barHeight+16,background:bgColor,borderRadius:props.valueContainerRadius,border:`1.5px solid ${borderColor}`,display:\"flex\",alignItems:\"center\",justifyContent:\"center\",margin:props.valueContainerOuterPadding,padding:props.valueContainerPadding||\"8px 16px\",overflow:\"hidden\",position:\"relative\",boxSizing:\"border-box\"},\"aria-label\":`Uploaded value: ${formatBytes(clampedValue)}`,children:/*#__PURE__*/_jsx(\"div\",{style:{...font,color:textColor,display:\"flex\",alignItems:\"center\",height:font.lineHeight||\"1.2em\",position:\"relative\"},children:(()=>{// Get the formatted string (e.g. \"1.23 GB\")\nconst formatted=formatBytes(Math.round(animatedValue));// For each character, if it's a digit, render a rolling digit column\nreturn formatted.split(\"\").map((char,idx)=>{if(/[0-9]/.test(char)){// For rolling effect, show all digits 0-9 in a column, with the current digit centered\nconst digit=parseInt(char);const lineHeight=font.lineHeight||\"1.2em\";return /*#__PURE__*/_jsx(\"div\",{style:{display:\"inline-block\",width:\"0.6em\",height:lineHeight,overflow:\"hidden\",position:\"relative\",verticalAlign:\"top\"},\"aria-hidden\":\"true\",children:/*#__PURE__*/_jsx(motion.div,{animate:{y:`-${digit}em`},initial:false,transition:{duration:.5,ease:\"easeInOut\"},style:{position:\"absolute\",top:0,left:0,right:0},children:[...Array(10)].map((_,i)=>/*#__PURE__*/_jsx(\"div\",{style:{height:\"1em\",lineHeight:\"1em\",textAlign:\"center\"},children:i},i))},digit)},\"digit-\"+idx);}else{// Non-digit, just render as is\nreturn /*#__PURE__*/_jsx(\"span\",{style:{display:\"inline-block\",verticalAlign:\"top\"},children:char},\"char-\"+idx+char);}});})()})})]})});}import{ControlType as FramerControlType}from\"framer\";addPropertyControls(UploadMeter,{minValue:{type:ControlType.Number,title:\"Min Value (Bytes)\",defaultValue:0,min:0,max:214748364800,step:1},barColor:{type:ControlType.Color,title:\"Bar Color\",defaultValue:\"#FF4D18\"},bgColor:{type:ControlType.Color,title:\"BG Color\",defaultValue:\"#18191B\"},borderColor:{type:ControlType.Color,title:\"Border Color\",defaultValue:\"#44474A\"},indicatorColor:{type:ControlType.Color,title:\"Indicator\",defaultValue:\"#FF4D18\"},textColor:{type:ControlType.Color,title:\"Text Color\",defaultValue:\"#fff\"},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:20,variant:\"Medium\",letterSpacing:\"0.01em\",lineHeight:\"1.2em\"}},barHeight:{type:ControlType.Number,title:\"Bar Height\",defaultValue:24,min:12,max:48,step:1},barRadius:{type:ControlType.Number,title:\"Bar Radius\",defaultValue:16,min:8,max:32,step:1},valueContainerRadius:{type:ControlType.Number,title:\"Value Container Radius\",defaultValue:12,min:4,max:32,step:1},segmentCount:{type:ControlType.Number,title:\"Segments\",defaultValue:24,min:8,max:80,step:1},valueContainerPadding:{type:ControlType.Padding,title:\"Value Container Padding\",defaultValue:\"8px 20px\"},valueContainerOuterPadding:{type:ControlType.Padding,title:\"Value Container Outer Padding\",defaultValue:\"0px 12px 0px 0px\"},indicatorTransition:{type:FramerControlType.Transition,title:\"Indicator Animation\"},maxSizeNoStrikesGB:{type:ControlType.Number,title:\"Max Size No Strikes (GB)\",defaultValue:50,min:1,max:1e3,step:1,displayStepper:true},maxSize1StrikeGB:{type:ControlType.Number,title:\"Max Size 1 Strike (GB)\",defaultValue:25,min:1,max:1e3,step:1,displayStepper:true},maxSize2StrikesGB:{type:ControlType.Number,title:\"Max Size 2 Strikes (GB)\",defaultValue:5,min:1,max:1e3,step:1,displayStepper:true}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"UploadMeter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UploadMeter.map","// Generated by Framer (6464825)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import UploadMeter from\"https://framerusercontent.com/modules/wbT1Dk9LFFkRuSQBnQlW/IuKzbxrdMfHnCqVY53UG/UploadMeter.js\";const UploadMeterFonts=getFonts(UploadMeter);const SmartComponentScopedContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(SmartComponentScopedContainer));const cycleOrder=[\"LiNAFnMR4\",\"xL1woZXc1\"];const serializationHash=\"framer-o2xLr\";const variantClassNames={LiNAFnMR4:\"framer-v-1tf1x40\",xL1woZXc1:\"framer-v-1cmcdeq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition2={delay:1.5,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"LiNAFnMR4\",Mobile:\"xL1woZXc1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"LiNAFnMR4\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LiNAFnMR4\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1tf1x40\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"LiNAFnMR4\",ref:refBinding,style:{\"--border-bottom-width\":\"1.163847804069519px\",\"--border-color\":\"rgba(255, 255, 255, 0.15)\",\"--border-left-width\":\"1.163847804069519px\",\"--border-right-width\":\"1.163847804069519px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.163847804069519px\",backdropFilter:\"blur(8px)\",backgroundColor:\"rgba(255, 255, 255, 0.02)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,WebkitBackdropFilter:\"blur(8px)\",...style},...addPropertyOverrides({xL1woZXc1:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1th4xi6\",\"data-framer-name\":\"Stack\",layoutDependency:layoutDependency,layoutId:\"nnOx5FK98\",style:{background:\"linear-gradient(-1.8474111129762605e-13deg, rgb(15, 15, 15) 5%, rgb(30, 30, 30) 84%)\",borderBottomLeftRadius:18.62,borderBottomRightRadius:18.62,borderTopLeftRadius:18.62,borderTopRightRadius:18.62,boxShadow:\"inset 0px 4.073467254638672px 0px -2.327695608139038px rgba(255, 255, 255, 0.16), inset 0px 0px 0px 1.163847804069519px rgb(16, 16, 16), inset 0px 3.4915432929992676px 0.11638478189706802px -2.327695608139038px rgba(255, 255, 255, 0.22), inset 0px -3.4915432929992676px 0.6983087062835693px -2.327695608139038px rgba(255, 255, 255, 0.1), 0px 3.4915432929992676px 3.4915432929992676px -1.163847804069519px rgba(0, 0, 0, 0.05), inset 0px -3.49px 0.7px -2.33px rgba(255, 255, 255, 0.1), inset 0px 3.49px 0.12px -2.33px rgba(255, 255, 255, 0.22), inset 0px -4.07px 0px -2.33px rgba(255, 255, 255, 0.08)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wd6gna\",layoutDependency:layoutDependency,layoutId:\"P1g4umgeo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Total Upload Size\"})}),className:\"framer-1mmty3u\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"q9gggfuFj\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({xL1woZXc1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Total Upload Size\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10v5uw0\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"wtPAbYpru\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(69, 71, 74, 0.58)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.04)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.5))\"},children:\"Max: 200GB \"})}),className:\"framer-sk7r0a\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"TEIdDNQdA\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.5)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-w21srp-container\",\"data-framer-appear-id\":\"w21srp\",initial:animation1,isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"psPPA2_P0-container\",nodeId:\"psPPA2_P0\",optimized:true,rendersWithMotion:true,scopeId:\"CG7Zp7ccr\",children:/*#__PURE__*/_jsx(UploadMeter,{barColor:\"rgb(255, 255, 255)\",barHeight:30,barRadius:8,bgColor:\"rgb(24, 25, 27)\",borderColor:\"rgb(68, 71, 74)\",font:{fontFamily:'\"Geist Mono\", monospace',fontSize:\"15px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0.02em\",lineHeight:\"1em\",textAlign:\"center\"},height:\"100%\",id:\"psPPA2_P0\",indicatorColor:\"rgb(255, 77, 24)\",indicatorTransition:{delay:.8,duration:2,ease:[0,0,1,1],type:\"tween\"},layoutId:\"psPPA2_P0\",maxSize1StrikeGB:25,maxSize2StrikesGB:5,maxSizeNoStrikesGB:200,minValue:0,segmentCount:30,style:{width:\"100%\"},textColor:\"rgb(255, 255, 255)\",valueContainerOuterPadding:\"0px 5px 0px 0px\",valueContainerPadding:\"10px\",valueContainerRadius:7,width:\"100%\"})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:1,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(8+((componentViewport?.height||173.5)-16-380)/2)+0),pixelHeight:256,pixelWidth:256,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/6mcf62RlDfRfU61Yg5vb2pefpi4.png\"},className:\"framer-10w6mka\",\"data-framer-name\":\"Noise\",layoutDependency:layoutDependency,layoutId:\"AIv3jRboK\",style:{opacity:.05},...addPropertyOverrides({xL1woZXc1:{background:{alt:\"\",backgroundSize:1,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(8+((componentViewport?.height||171)-16-368)/2)+0),pixelHeight:256,pixelWidth:256,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/6mcf62RlDfRfU61Yg5vb2pefpi4.png\"}}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-o2xLr.framer-1rbnkj1, .framer-o2xLr .framer-1rbnkj1 { display: block; }\",\".framer-o2xLr.framer-1tf1x40 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: 579px; will-change: var(--framer-will-change-override, transform); }\",\".framer-o2xLr .framer-1th4xi6 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px 18.62px 24px 18.62px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-o2xLr .framer-wd6gna { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o2xLr .framer-1mmty3u { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-o2xLr .framer-10v5uw0 { align-self: stretch; flex: none; height: auto; overflow: visible; position: relative; width: 80px; }\",\".framer-o2xLr .framer-sk7r0a { flex: none; height: auto; left: 51%; position: absolute; top: 51%; white-space: pre; width: auto; }\",\".framer-o2xLr .framer-w21srp-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-o2xLr .framer-10w6mka { -webkit-user-select: none; bottom: 0px; flex: none; left: 0px; pointer-events: none; position: absolute; right: 0px; top: 0px; user-select: none; z-index: 10; }\",\".framer-o2xLr.framer-v-1cmcdeq.framer-1tf1x40 { width: 358px; }\",'.framer-o2xLr[data-border=\"true\"]::after, .framer-o2xLr [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 173.5\n * @framerIntrinsicWidth 579\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xL1woZXc1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerCG7Zp7ccr=withCSS(Component,css,\"framer-o2xLr\");export default FramerCG7Zp7ccr;FramerCG7Zp7ccr.displayName=\"Upload Meter\";FramerCG7Zp7ccr.defaultProps={height:173.5,width:579};addPropertyControls(FramerCG7Zp7ccr,{variant:{options:[\"LiNAFnMR4\",\"xL1woZXc1\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerCG7Zp7ccr,[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v3/gyBhhwUxId8gMGYQMKR3pzfaWI_RruM4mJPby1QNtA.woff2\",weight:\"500\"},{family:\"Geist Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geistmono/v3/or3yQ6H-1_WfwkMZI_qYPLs1a-t7PU0AbeEPKJ5W7ihaO_CS.woff2\",weight:\"500\"}]},...UploadMeterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCG7Zp7ccr\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"579\",\"framerIntrinsicHeight\":\"173.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xL1woZXc1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CG7Zp7ccr.map","// Generated by Framer (20dc3ed)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,ResolveLinks,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{SupabaseEmailText,SupabasePlayerIdText,SupabaseWalletAddressText}from\"https://framerusercontent.com/modules/pvMKbPm548ULAI8LRfmR/NLGkppOQHhLmPFzFpESI/SupabaseUserData.js\";import{AddWallet}from\"https://framerusercontent.com/modules/rnSh6ueE4wRgraTFgXlb/nouXOavUdxxpFPSkIWKi/WalletUpdater.js\";import{CopyWalletFullOverride}from\"https://framerusercontent.com/modules/kgMZiFi7X0llgfNgYZPj/4kmIxXZIjew6KnNn5wxC/WithCopyText.js\";import{withHideScrollbarWalletFull}from\"https://framerusercontent.com/modules/5BNaXhOtPp20W6RiDm2y/aU9cMAHxfCT773qQN7BD/WithHideScrollbar.js\";import CopyButton,*as CopyButtonInfo from\"https://framerusercontent.com/modules/D2AR02ER4QyJi186nF8X/KXD48dDy8j2fded9t4fV/iPt2BUGNx.js\";const RichTextSupabasePlayerIdText15kyorj=withCodeBoundaryForOverrides(RichText,{nodeId:\"NUm_z9elU\",override:SupabasePlayerIdText,scopeId:\"OZmDIE9Dg\"});const RichTextSupabaseEmailTextfltbqy=withCodeBoundaryForOverrides(RichText,{nodeId:\"qGTQVhND7\",override:SupabaseEmailText,scopeId:\"OZmDIE9Dg\"});const RichTextSupabaseWalletAddressText1qimql8=withCodeBoundaryForOverrides(RichText,{nodeId:\"aasvazcZs\",override:SupabaseWalletAddressText,scopeId:\"OZmDIE9Dg\"});const MotionDivWithHideScrollbarWalletFull1mzseqd=withCodeBoundaryForOverrides(motion.div,{nodeId:\"tcryjwLuP\",override:withHideScrollbarWalletFull,scopeId:\"OZmDIE9Dg\"});const CopyButtonFonts=getFonts(CopyButton);const CopyButtonCopyWalletFullOverridestyzpsWithMappedReactPropssyui8r=withMappedReactProps(withCodeBoundaryForOverrides(CopyButton,{nodeId:\"S017gdQy0\",override:CopyWalletFullOverride,scopeId:\"OZmDIE9Dg\"}),CopyButtonInfo);const SmartComponentScopedContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(SmartComponentScopedContainer));const AddWalletFonts=getFonts(AddWallet);const cycleOrder=[\"oRnaVyokW\",\"jqiGOCgxU\"];const serializationHash=\"framer-oZS2m\";const variantClassNames={jqiGOCgxU:\"framer-v-9nh4y3\",oRnaVyokW:\"framer-v-16m2aio\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition2={delay:1.2,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"oRnaVyokW\",Mobile:\"jqiGOCgxU\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"oRnaVyokW\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oRnaVyokW\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-16m2aio\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"oRnaVyokW\",ref:refBinding,style:{\"--border-bottom-width\":\"1.1638478px\",\"--border-color\":\"rgba(255, 255, 255, 0.15)\",\"--border-left-width\":\"1.1638478px\",\"--border-right-width\":\"1.1638478px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.1638478px\",backdropFilter:\"blur(8px)\",backgroundColor:\"rgba(255, 255, 255, 0.02)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,WebkitBackdropFilter:\"blur(8px)\",...style},...addPropertyOverrides({jqiGOCgxU:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e44nq\",\"data-framer-name\":\"Stack\",layoutDependency:layoutDependency,layoutId:\"ZcIPpVlFd\",style:{background:\"linear-gradient(-1.8474111129762605e-13deg, rgb(15, 15, 15) 5%, rgb(30, 30, 30) 84%)\",borderBottomLeftRadius:18.62,borderBottomRightRadius:18.62,borderTopLeftRadius:18.62,borderTopRightRadius:18.62,boxShadow:\"inset 0px 4.073467254638672px 0px -2.327695608139038px rgba(255, 255, 255, 0.16), inset 0px 0px 0px 1.163847804069519px rgb(16, 16, 16), inset 0px 3.4915432929992676px 0.11638478189706802px -2.327695608139038px rgba(255, 255, 255, 0.22), inset 0px -3.4915432929992676px 0.6983087062835693px -2.327695608139038px rgba(255, 255, 255, 0.1), 0px 3.4915432929992676px 3.4915432929992676px -1.163847804069519px rgba(0, 0, 0, 0.05), inset 0px -3.49px 0.7px -2.33px rgba(255, 255, 255, 0.1), inset 0px 3.49px 0.12px -2.33px rgba(255, 255, 255, 0.22), inset 0px -4.07px 0px -2.33px rgba(255, 255, 255, 0.08), inset 0px 0px 0px 1.163847804069519px rgb(16, 16, 16), inset 0px 3.4915432929992676px 0.11638478189706802px -2.327695608139038px rgba(255, 255, 255, 0.22), inset 0px -3.4915432929992676px 0.6983087062835693px -2.327695608139038px rgba(255, 255, 255, 0.1), 0px 3.4915432929992676px 3.4915432929992676px -1.163847804069519px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Profile Information\"})}),className:\"framer-1k54ijy\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"vUM6A4GAJ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2pspr0\",layoutDependency:layoutDependency,layoutId:\"DNRrHE9sO\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19p7ejc\",layoutDependency:layoutDependency,layoutId:\"PEx3L9Z8w\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(137, 141, 148))\"},children:\"Player ID\"})}),className:\"framer-6hdql2\",fonts:[\"GF;Geist-regular\"],layoutDependency:layoutDependency,layoutId:\"oJYipLq4V\",style:{\"--extracted-r6o4lv\":\"rgb(137, 141, 148)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jqiGOCgxU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(137, 141, 148))\"},children:\"Player ID\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17z5orh\",layoutDependency:layoutDependency,layoutId:\"dx8sJy4KF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(137, 141, 148))\"},children:\"#\"})}),className:\"framer-1lf7w63\",fonts:[\"GF;Geist-regular\"],layoutDependency:layoutDependency,layoutId:\"CNBHyLBwl\",style:{\"--extracted-r6o4lv\":\"rgb(137, 141, 148)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jqiGOCgxU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(137, 141, 148))\"},children:\"#\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextSupabasePlayerIdText15kyorj,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(137, 141, 148))\"},children:\"00\"})}),className:\"framer-15kyorj\",fonts:[\"GF;Geist-regular\"],layoutDependency:layoutDependency,layoutId:\"NUm_z9elU\",style:{\"--extracted-r6o4lv\":\"rgb(137, 141, 148)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jqiGOCgxU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(137, 141, 148))\"},children:\"00\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-syvp33\",layoutDependency:layoutDependency,layoutId:\"wweencGa7\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 512 1\" overflow=\"visible\"><path d=\"M 0 0 L 512 0\" fill=\"transparent\" stroke=\"rgba(137, 141, 148, 0.3)\" stroke-dasharray=\"4\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p62vnm\",layoutDependency:layoutDependency,layoutId:\"bsTQv1_Fs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(137, 141, 148))\"},children:\"Email\"})}),className:\"framer-ze2yg9\",fonts:[\"GF;Geist-regular\"],layoutDependency:layoutDependency,layoutId:\"EBqjps9IJ\",style:{\"--extracted-r6o4lv\":\"rgb(137, 141, 148)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jqiGOCgxU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(137, 141, 148))\"},children:\"Email\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextSupabaseEmailTextfltbqy,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"user@email.com\"})}),className:\"framer-fltbqy\",fonts:[\"GF;Geist-regular\"],layoutDependency:layoutDependency,layoutId:\"qGTQVhND7\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jqiGOCgxU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"user@email.com\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pofw70\",\"data-framer-name\":\"Stack\",layoutDependency:layoutDependency,layoutId:\"cA9O1Tkx5\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-czdxh\",\"data-framer-name\":\"container\",layoutDependency:layoutDependency,layoutId:\"ZGF9tmg6J\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(137, 141, 148))\"},children:\"Wallet Address\"})}),className:\"framer-12g3ahk\",fonts:[\"GF;Geist-regular\"],layoutDependency:layoutDependency,layoutId:\"W9blWpss4\",style:{\"--extracted-r6o4lv\":\"rgb(137, 141, 148)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jqiGOCgxU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(137, 141, 148))\"},children:\"Wallet Address\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(MotionDivWithHideScrollbarWalletFull1mzseqd,{className:\"framer-1mzseqd\",\"data-framer-name\":\"Copy Content\",layoutDependency:layoutDependency,layoutId:\"tcryjwLuP\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(RichTextSupabaseWalletAddressText1qimql8,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(137, 141, 148))\"},children:\"Copy Content\"})}),className:\"framer-1qimql8\",\"data-framer-name\":\"Copy Content\",fonts:[\"GF;Geist-regular\"],layoutDependency:layoutDependency,layoutId:\"aasvazcZs\",style:{\"--extracted-r6o4lv\":\"rgb(137, 141, 148)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"44px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-styzps-container\",\"data-framer-appear-id\":\"styzps\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"S017gdQy0-container\",nodeId:\"S017gdQy0\",optimized:true,rendersWithMotion:true,scopeId:\"OZmDIE9Dg\",children:/*#__PURE__*/_jsx(CopyButtonCopyWalletFullOverridestyzpsWithMappedReactPropssyui8r,{height:\"100%\",id:\"S017gdQy0\",layoutId:\"S017gdQy0\",style:{height:\"100%\",width:\"100%\"},variant:\"EdxvmkRIN\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FqPSK6Iib\"},implicitPathVariables:undefined},{href:{webPageId:\"FqPSK6Iib\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-12ciso1-container\",\"data-framer-appear-id\":\"12ciso1\",initial:animation1,isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"cQdneyIvI-container\",nodeId:\"cQdneyIvI\",optimized:true,rendersWithMotion:true,scopeId:\"OZmDIE9Dg\",children:/*#__PURE__*/_jsx(AddWallet,{height:\"100%\",id:\"cQdneyIvI\",layoutId:\"cQdneyIvI\",redirectUrl:resolvedLinks[0],style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({jqiGOCgxU:{redirectUrl:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:1,fit:\"tile\",pixelHeight:256,pixelWidth:256,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/6mcf62RlDfRfU61Yg5vb2pefpi4.png\"},className:\"framer-bdgkcu\",\"data-framer-name\":\"Noise\",layoutDependency:layoutDependency,layoutId:\"Uxnl9n64d\",style:{opacity:.05}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oZS2m.framer-1cu6zcg, .framer-oZS2m .framer-1cu6zcg { display: block; }\",\".framer-oZS2m.framer-16m2aio { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: 579px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZS2m .framer-1e44nq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px 18.62px 24px 18.62px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZS2m .framer-1k54ijy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-oZS2m .framer-2pspr0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oZS2m .framer-19p7ejc, .framer-oZS2m .framer-1p62vnm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 25px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oZS2m .framer-6hdql2, .framer-oZS2m .framer-1lf7w63, .framer-oZS2m .framer-15kyorj, .framer-oZS2m .framer-ze2yg9, .framer-oZS2m .framer-12g3ahk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-oZS2m .framer-17z5orh { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-oZS2m .framer-syvp33 { height: 1px; position: relative; width: 512px; }\",\".framer-oZS2m .framer-fltbqy { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-oZS2m .framer-pofw70 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oZS2m .framer-czdxh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 16px 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-oZS2m .framer-1mzseqd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: -1000px; width: min-content; }\",\".framer-oZS2m .framer-1qimql8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-oZS2m .framer-styzps-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); position: absolute; right: 4px; top: 42px; width: 44px; z-index: 1; }\",\".framer-oZS2m .framer-12ciso1-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-oZS2m .framer-bdgkcu { -webkit-user-select: none; bottom: 0px; flex: none; left: 0px; pointer-events: none; position: absolute; right: 0px; top: 0px; user-select: none; z-index: 10; }\",\".framer-oZS2m.framer-v-9nh4y3 .framer-1e44nq, .framer-oZS2m.framer-v-9nh4y3 .framer-2pspr0 { gap: 16px; }\",\".framer-oZS2m.framer-v-9nh4y3 .framer-styzps-container { top: 38px; }\",'.framer-oZS2m[data-border=\"true\"]::after, .framer-oZS2m [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 374.5\n * @framerIntrinsicWidth 579\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jqiGOCgxU\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerOZmDIE9Dg=withCSS(Component,css,\"framer-oZS2m\");export default FramerOZmDIE9Dg;FramerOZmDIE9Dg.displayName=\"Profile Info\";FramerOZmDIE9Dg.defaultProps={height:374.5,width:579};addPropertyControls(FramerOZmDIE9Dg,{variant:{options:[\"oRnaVyokW\",\"jqiGOCgxU\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerOZmDIE9Dg,[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v3/gyBhhwUxId8gMGYQMKR3pzfaWI_RruM4mJPby1QNtA.woff2\",weight:\"500\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v3/gyBhhwUxId8gMGYQMKR3pzfaWI_RnOM4mJPby1QNtA.woff2\",weight:\"400\"}]},...CopyButtonFonts,...AddWalletFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOZmDIE9Dg\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"374.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jqiGOCgxU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"579\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (2f96024)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,PropertyOverrides,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,withCodeBoundaryForOverrides,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import LogoutContainer from\"https://framerusercontent.com/modules/wGGj16hj4EIPOrCFZHKh/iJKgmIp0JxIVSg1UWJYB/g02ZI0DMt.js\";import TopBar from\"#framer/local/canvasComponent/aV0FaUtPG/aV0FaUtPG.js\";import UploadMeter from\"#framer/local/canvasComponent/CG7Zp7ccr/CG7Zp7ccr.js\";import ProfileInfo from\"#framer/local/canvasComponent/OZmDIE9Dg/OZmDIE9Dg.js\";import{SupabaseLogOutButton}from\"#framer/local/codeFile/vQJ5iUx/SupabaseUserData.js\";import UnicornStudioEmbed from\"#framer/local/codeFile/TwxcyW0/UnicornStudioEmbed.js\";import UserStrikeWarning from\"#framer/local/codeFile/LEIa7Qh/UserStrikeWarning.js\";import metadataProvider from\"#framer/local/webPageMetadata/FqPSK6Iib/FqPSK6Iib.js\";const UserStrikeWarningFonts=getFonts(UserStrikeWarning);const TopBarFonts=getFonts(TopBar);const ProfileInfoFonts=getFonts(ProfileInfo);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const UploadMeterFonts=getFonts(UploadMeter);const LogoutContainerFonts=getFonts(LogoutContainer);const MotionDivSupabaseLogOutButton46x2icWithOptimizedAppearEffect=withOptimizedAppearEffect(withCodeBoundaryForOverrides(motion.div,{nodeId:\"TAvRlN6Q_\",override:SupabaseLogOutButton,scopeId:\"FqPSK6Iib\"}));const UnicornStudioEmbedFonts=getFonts(UnicornStudioEmbed);const breakpoints={Mdufip80r:\"(min-width: 1200px)\",MN_vkhsOK:\"(min-width: 810px) and (max-width: 1199px)\",TjeIEDCmi:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-qvsZS\";const variantClassNames={Mdufip80r:\"framer-v-10nw3v1\",MN_vkhsOK:\"framer-v-e995x6\",TjeIEDCmi:\"framer-v-yuyy9o\"};const transition1={delay:.8,duration:1.2,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition2={delay:1.4,duration:2.6,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"Mdufip80r\",Phone:\"TjeIEDCmi\",Tablet:\"MN_vkhsOK\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Mdufip80r\"};};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,...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=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"MN_vkhsOK\",\"TjeIEDCmi\"].includes(baseVariant))return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Mdufip80r\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-10nw3v1\",className),ref:refBinding,style:{...style},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b51p6v\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-d352go-container\",isAuthoredByUser:true,nodeId:\"bJhyDuMs8\",scopeId:\"FqPSK6Iib\",children:/*#__PURE__*/_jsx(UserStrikeWarning,{height:\"100%\",id:\"bJhyDuMs8\",layoutId:\"bJhyDuMs8\",style:{maxWidth:\"100%\",width:\"100%\"},usersTable:\"users\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TjeIEDCmi:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1200px)`,y:(componentViewport?.y||0)+0+0+14+208}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+0+22+216,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gsls5k-container\",nodeId:\"TH4lOHG0T\",scopeId:\"FqPSK6Iib\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MN_vkhsOK:{variant:\"V7YcdAbRY\"},TjeIEDCmi:{variant:\"k6ns8lwwT\"}},children:/*#__PURE__*/_jsx(TopBar,{height:\"100%\",id:\"TH4lOHG0T\",KgcQz96Rs:\"Storage and wallet settings\",layoutId:\"TH4lOHG0T\",mEMT10YRk:\"0px 0px 24px 0px\",MgeV_4c4q:\"Account Settings\",rqLlDkMLO:{borderBottomWidth:1,borderColor:\"rgb(30, 30, 30)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},style:{maxWidth:\"100%\",width:\"100%\"},uvU4to0xR:\"0px 0px 14px 0px\",variant:\"MtYs1WTnZ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TjeIEDCmi:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+0+14+311}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:374,y:(componentViewport?.y||0)+0+0+22+327,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1xebaj5-container\",\"data-framer-appear-id\":\"1xebaj5\",\"data-framer-name\":\"Profile Info\",initial:animation1,name:\"Profile Info\",nodeId:\"R5Fbu66N5\",optimized:true,rendersWithMotion:true,scopeId:\"FqPSK6Iib\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TjeIEDCmi:{style:{width:\"100%\"},variant:\"jqiGOCgxU\"}},children:/*#__PURE__*/_jsx(ProfileInfo,{height:\"100%\",id:\"R5Fbu66N5\",layoutId:\"R5Fbu66N5\",name:\"Profile Info\",variant:\"oRnaVyokW\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TjeIEDCmi:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+0+14+693}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:173,y:(componentViewport?.y||0)+0+0+22+717,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-sl5nhr-container\",\"data-framer-appear-id\":\"sl5nhr\",initial:animation1,nodeId:\"zMLsdI03f\",optimized:true,rendersWithMotion:true,scopeId:\"FqPSK6Iib\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TjeIEDCmi:{style:{width:\"100%\"},variant:\"xL1woZXc1\"}},children:/*#__PURE__*/_jsx(UploadMeter,{height:\"100%\",id:\"zMLsdI03f\",layoutId:\"zMLsdI03f\",variant:\"LiNAFnMR4\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MN_vkhsOK:{animate:animation,initial:animation1,optimized:true},TjeIEDCmi:{animate:animation,initial:animation1,optimized:true}},children:/*#__PURE__*/_jsx(MotionDivSupabaseLogOutButton46x2icWithOptimizedAppearEffect,{className:\"framer-46x2ic hidden-10nw3v1\",\"data-framer-appear-id\":\"46x2ic\",\"data-framer-name\":\"Logout\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ccbvjh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MN_vkhsOK:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 48px, 579px) - 12px, 1px) - 38px)`,y:(componentViewport?.y||0)+0+0+22+906+6+16+0},TjeIEDCmi:{width:`calc(max(${componentViewport?.width||\"100vw\"} - 44px, 1px) - 38px)`,y:(componentViewport?.y||0)+0+0+14+874+6+16+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sjx38y-container\",isModuleExternal:true,nodeId:\"IyLcISt1y\",rendersWithMotion:true,scopeId:\"FqPSK6Iib\",children:/*#__PURE__*/_jsx(LogoutContainer,{height:\"100%\",id:\"IyLcISt1y\",layoutId:\"IyLcISt1y\",style:{width:\"100%\"},variant:\"Wjlsb461d\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-u38jfe-container\",\"data-framer-appear-id\":\"u38jfe\",initial:animation1,isAuthoredByUser:true,nodeId:\"DVi8Zfp20\",optimized:true,rendersWithMotion:true,scopeId:\"FqPSK6Iib\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(UnicornStudioEmbed,{altText:\"\",ariaLabel:\"\",dpi:2,fps:60,header:\"\",height:\"100%\",id:\"DVi8Zfp20\",layoutId:\"DVi8Zfp20\",lazyLoad:false,projectId:\"zj2hSRHi2SGr76gd1khm\",projectJSON:\"\",scale:1,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r2q480\",\"data-framer-name\":\"background overlay\"})]})}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qvsZS.framer-16kkfqk, .framer-qvsZS .framer-16kkfqk { display: block; }\",\".framer-qvsZS.framer-10nw3v1 { align-content: center; align-items: center; background-color: #000000; 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-qvsZS .framer-1b51p6v { 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; min-height: 100vh; min-width: 100%; overflow: hidden; padding: 22px 24px 64px 24px; position: relative; width: 100%; }\",\".framer-qvsZS .framer-d352go-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 100%; z-index: 10; }\",\".framer-qvsZS .framer-gsls5k-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 100%; z-index: 2; }\",\".framer-qvsZS .framer-1xebaj5-container, .framer-qvsZS .framer-sl5nhr-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-qvsZS .framer-46x2ic { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 6px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 10; }\",\".framer-qvsZS .framer-1ccbvjh { align-content: flex-start; align-items: flex-start; background: linear-gradient(-1.8474111129762605e-13deg, #0f0f0f 5%, rgb(30, 30, 30) 84%); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: inset 0px 4.073467254638672px 0px -2.327695608139038px rgba(255, 255, 255, 0.16), inset 0px 0px 0px 1.163847804069519px rgb(16, 16, 16), inset 0px 3.4915432929992676px 0.11638478189706802px -2.327695608139038px rgba(255, 255, 255, 0.22), inset 0px -3.4915432929992676px 0.6983087062835693px -2.327695608139038px rgba(255, 255, 255, 0.1), 0px 3.4915432929992676px 3.4915432929992676px -1.163847804069519px rgba(0, 0, 0, 0.05), inset 0px -3.49px 0.7px -2.33px rgba(255, 255, 255, 0.1), inset 0px 3.49px 0.12px -2.33px rgba(255, 255, 255, 0.22), inset 0px -4.07px 0px -2.33px rgba(255, 255, 255, 0.08); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qvsZS .framer-1sjx38y-container { flex: none; height: auto; pointer-events: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-qvsZS .framer-u38jfe-container { aspect-ratio: 1.1201866977829638 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 902px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 105%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-qvsZS .framer-r2q480 { background-color: #000000; bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-qvsZS.framer-10nw3v1 { width: 810px; } .framer-qvsZS .framer-1b51p6v { padding: 22px 24px 120px 24px; } .framer-qvsZS .framer-46x2ic { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; cursor: pointer; max-width: 579px; will-change: var(--framer-will-change-effect-override, transform); } .framer-qvsZS .framer-1ccbvjh { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; padding: 16px 18px 16px 20px; } .framer-qvsZS .framer-u38jfe-container { height: var(--framer-aspect-ratio-supported, 761px); left: 50%; min-width: 100%; width: 105%; }}\",\"@media (max-width: 809px) { .framer-qvsZS.framer-10nw3v1 { width: 390px; } .framer-qvsZS .framer-1b51p6v { gap: 8px; padding: 14px 16px 120px 16px; } .framer-qvsZS .framer-1xebaj5-container, .framer-qvsZS .framer-sl5nhr-container { width: 100%; } .framer-qvsZS .framer-46x2ic { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; will-change: var(--framer-will-change-effect-override, transform); } .framer-qvsZS .framer-1ccbvjh { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; cursor: pointer; padding: 16px 18px 16px 20px; } .framer-qvsZS .framer-u38jfe-container { height: var(--framer-aspect-ratio-supported, 367px); left: 50%; width: 105%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1000\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"MN_vkhsOK\":{\"layout\":[\"fixed\",\"auto\"]},\"TjeIEDCmi\":{\"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 FramerFqPSK6Iib=withCSS(Component,css,\"framer-qvsZS\");export default FramerFqPSK6Iib;FramerFqPSK6Iib.displayName=\"Home\";FramerFqPSK6Iib.defaultProps={height:1e3,width:1200};addFonts(FramerFqPSK6Iib,[{explicitInter:true,fonts:[]},...UserStrikeWarningFonts,...TopBarFonts,...ProfileInfoFonts,...UploadMeterFonts,...LogoutContainerFonts,...UnicornStudioEmbedFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFqPSK6Iib\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MN_vkhsOK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TjeIEDCmi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicHeight\":\"1000\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}