{"version":3,"file":"lV8udjLyV.BK851w6D.mjs","names":["x","Reorder"],"sources":["https:/framerusercontent.com/modules/58DdVaEUjt9WM5roHQbr/cOa9fSCbaNg4agO9tH9d/PipelineSnapshot.js","https:/framerusercontent.com/modules/wvORSsjsWELKpC1z9zHw/up8hrTjlRv6uEoB7wMJx/lV8udjLyV.js"],"sourcesContent":["// PipelineSnapshot: Card with animated progress bar and draggable people feed\n// Drag interaction is disabled on tablet/mobile devices\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useRef,useEffect,useCallback,startTransition}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion,useMotionValue,useSpring,useTransform,Reorder,useInView}from\"framer-motion\";const defaultItems=[{id:\"1\",avatar:{src:\"https://randomuser.me/api/portraits/men/32.jpg\",alt:\"Alex Johnson\"},name:\"Alex Johnson\",note:\"Follow-up sent\"},{id:\"2\",avatar:{src:\"https://randomuser.me/api/portraits/women/44.jpg\",alt:\"Maria Lee\"},name:\"Maria Lee\",note:\"Demo scheduled\"},{id:\"3\",avatar:{src:\"https://randomuser.me/api/portraits/men/65.jpg\",alt:\"Chris Smith\"},name:\"Chris Smith\",note:\"Awaiting reply\"},{id:\"4\",avatar:{src:\"https://randomuser.me/api/portraits/women/68.jpg\",alt:\"Sophie Turner\"},name:\"Sophie Turner\",note:\"Qualified\"}];const PRIMARY=\"#6D5CFF\";const BG=\"#fff\";const SHADOW=\"0 4px 24px rgba(40,32,72,0.10)\";const TRACK=\"#F5F5F5\";const NOTE=\"#888\";const NAME=\"#222\";/**\n * PipelineSnapshot\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function PipelineSnapshot(props){const{progress=68,count=112,items=defaultItems,style}=props;// Card tilt\nconst cardRef=useRef(null);const[isHover,setIsHover]=useState(false);const rotateX=useMotionValue(0);const rotateY=useMotionValue(0);const handlePointerMove=useCallback(e=>{if(!cardRef.current)return;const rect=cardRef.current.getBoundingClientRect();const x=e.clientX-rect.left;const y=e.clientY-rect.top;const px=x/rect.width;const py=y/rect.height;// -4deg to 4deg\nstartTransition(()=>{rotateY.set((px-.5)*8);rotateX.set((.5-py)*8);});},[rotateX,rotateY]);const handlePointerLeave=useCallback(()=>{startTransition(()=>{rotateX.set(0);rotateY.set(0);});},[rotateX,rotateY]);// Progress bar animation (dynamic from 30% to progress, triggers in view)\nconst initialProgress=30;const progressMotion=useMotionValue(initialProgress);const progressSpring=useSpring(progressMotion,{type:\"spring\",stiffness:60,damping:18,mass:1.2});const progressWidth=useTransform(progressSpring,v=>`${v}%`);const progressBarRef=useRef(null);const isInView=useInView(progressBarRef,{once:true,margin:\"-20% 0px -20% 0px\"});useEffect(()=>{if(isInView){const timeout=setTimeout(()=>{startTransition(()=>progressMotion.set(progress));},300);return()=>clearTimeout(timeout);}},[isInView,progress]);// Draggable list\nconst[order,setOrder]=useState(items);useEffect(()=>{setOrder(items);},[items]);// Card drag constraint\nconst constraintRef=useRef(null);// Detect if device is touch (tab/mobile)\nconst[isTouch,setIsTouch]=useState(false);useEffect(()=>{if(typeof window!==\"undefined\"){const check=()=>{if(\"ontouchstart\"in window||window.matchMedia&&window.matchMedia(\"(pointer: coarse)\").matches){setIsTouch(true);}else{setIsTouch(false);}};check();window.addEventListener(\"resize\",check);return()=>window.removeEventListener(\"resize\",check);}},[]);return /*#__PURE__*/_jsxs(motion.div,{ref:cardRef,style:{...style,background:BG,borderRadius:16,boxShadow:SHADOW,padding:24,width:\"100%\",minWidth:320,maxWidth:480,minHeight:340,fontFamily:\"system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif\",userSelect:\"none\",perspective:800,display:\"flex\",flexDirection:\"column\",gap:0,position:\"relative\"},onPointerMove:e=>{setIsHover(true);handlePointerMove(e);},onPointerLeave:()=>{setIsHover(false);handlePointerLeave();},animate:{rotateX:isHover?rotateX.get():0,rotateY:isHover?rotateY.get():0},transition:{type:\"spring\",stiffness:120,damping:16},tabIndex:0,\"aria-label\":\"Pipeline Snapshot\",children:[/*#__PURE__*/_jsx(\"div\",{style:{...props.headlineFont,color:NAME,marginBottom:2},children:\"Pipeline Snapshot\"}),/*#__PURE__*/_jsx(\"div\",{style:{...props.subheadlineFont,color:NOTE,marginBottom:20},children:\"MQL Goal (30-day)\"}),/*#__PURE__*/_jsxs(\"div\",{style:{width:\"100%\",marginBottom:12},ref:progressBarRef,children:[/*#__PURE__*/_jsxs(\"div\",{style:{width:\"100%\",height:6,background:TRACK,borderRadius:3,position:\"relative\",overflow:\"hidden\"},children:[/*#__PURE__*/_jsx(motion.div,{style:{position:\"absolute\",left:0,top:0,height:6,borderRadius:3,background:PRIMARY,width:progressWidth},\"aria-valuenow\":progress,\"aria-valuemin\":0,\"aria-valuemax\":100,role:\"progressbar\",\"aria-label\":\"Progress\"}),/*#__PURE__*/_jsxs(\"span\",{style:{position:\"absolute\",left:-9999,width:1,height:1,overflow:\"hidden\"},\"aria-live\":\"polite\",children:[\"Progress: \",Math.round(progress),\" percent\"]})]}),/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",justifyContent:\"space-between\",marginTop:6},children:[/*#__PURE__*/_jsxs(\"span\",{style:{fontWeight:500,fontSize:14,color:NAME},children:[Math.round(progress),\"%\"]}),/*#__PURE__*/_jsx(\"span\",{style:{fontWeight:500,fontSize:14,color:NAME},children:count})]})]}),/*#__PURE__*/_jsx(\"div\",{ref:constraintRef,style:{flex:1,minHeight:120,marginTop:8,display:\"flex\",flexDirection:\"column\"},children:/*#__PURE__*/_jsx(Reorder.Group,{axis:\"y\",values:order,onReorder:isTouch?undefined:setOrder,style:{display:\"flex\",flexDirection:\"column\",gap:20},children:order.map(item=>/*#__PURE__*/_jsxs(Reorder.Item,{value:item,dragConstraints:constraintRef,drag:isTouch?false:true,whileDrag:isTouch?{}:{scale:1.03,zIndex:2},style:{display:\"flex\",alignItems:\"center\",gap:16,background:\"none\",border:\"none\",borderRadius:8,padding:0,minHeight:56,cursor:isTouch?\"default\":\"grab\",boxShadow:\"none\",userSelect:\"none\",outline:\"none\"},tabIndex:0,\"aria-label\":item.name,children:[/*#__PURE__*/_jsx(\"img\",{src:typeof item.avatar===\"object\"&&item.avatar!==null?item.avatar.src:item.avatar,alt:typeof item.avatar===\"object\"&&item.avatar!==null?item.avatar.alt||item.name:item.name,style:{width:40,height:40,borderRadius:\"50%\",objectFit:\"cover\",background:TRACK,flexShrink:0}}),/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:2},children:[/*#__PURE__*/_jsx(\"span\",{style:{...props.avatarNameFont,color:NAME,lineHeight:1.2},children:item.name}),/*#__PURE__*/_jsx(\"span\",{style:{...props.avatarNoteFont,color:NOTE,lineHeight:1.2},children:item.note})]})]},item.id))})})]});}addPropertyControls(PipelineSnapshot,{headlineFont:{type:ControlType.Font,title:\"Headline Font\",defaultValue:{fontSize:20,variant:\"Bold\",letterSpacing:\"-0.01em\",lineHeight:\"1.1em\"},controls:\"extended\",defaultFontType:\"sans-serif\"},subheadlineFont:{type:ControlType.Font,title:\"Subheadline Font\",defaultValue:{fontSize:15,variant:\"Regular\",letterSpacing:\"-0.01em\",lineHeight:\"1.2em\"},controls:\"extended\",defaultFontType:\"sans-serif\"},avatarNameFont:{type:ControlType.Font,title:\"Avatar Name Font\",defaultValue:{fontSize:16,variant:\"Semibold\",letterSpacing:\"-0.01em\",lineHeight:\"1.2em\"},controls:\"extended\",defaultFontType:\"sans-serif\"},avatarNoteFont:{type:ControlType.Font,title:\"Avatar Note Font\",defaultValue:{fontSize:14,variant:\"Regular\",letterSpacing:\"-0.01em\",lineHeight:\"1.2em\"},controls:\"extended\",defaultFontType:\"sans-serif\"},progress:{type:ControlType.Number,title:\"Progress %\",defaultValue:68,min:0,max:100,unit:\"%\",step:1},count:{type:ControlType.Number,title:\"Count\",defaultValue:112,min:0,max:1e4,step:1},items:{type:ControlType.Array,title:\"People\",control:{type:ControlType.Object,controls:{id:{type:ControlType.String,defaultValue:\"1\"},avatar:{type:ControlType.ResponsiveImage},name:{type:ControlType.String,defaultValue:\"Alex Johnson\"},note:{type:ControlType.String,defaultValue:\"Follow-up sent\"}}},defaultValue:defaultItems,maxCount:8}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"PipelineSnapshot\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PipelineSnapshot.map","// Generated by Framer (8ebf084)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import PipelineSnapshot from\"https://framerusercontent.com/modules/58DdVaEUjt9WM5roHQbr/cOa9fSCbaNg4agO9tH9d/PipelineSnapshot.js\";const PipelineSnapshotFonts=getFonts(PipelineSnapshot);const serializationHash=\"framer-gWyhc\";const variantClassNames={DaEbndx3Z:\"framer-v-nb2axr\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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 getProps=({height,id,width,...props})=>{return{...props};};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({defaultVariant:\"DaEbndx3Z\",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-nb2axr\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"DaEbndx3Z\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-q643w7-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"r5AXBOzzJ-container\",nodeId:\"r5AXBOzzJ\",rendersWithMotion:true,scopeId:\"lV8udjLyV\",children:/*#__PURE__*/_jsx(PipelineSnapshot,{avatarNameFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"-0.01em\",lineHeight:\"1.2em\"},avatarNoteFont:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"-0.01em\",lineHeight:\"1.2em\"},count:112,headlineFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"20px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"-0.01em\",lineHeight:\"1.1em\"},height:\"100%\",id:\"r5AXBOzzJ\",items:[{avatar:addImageAlt({pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/kx4xhM9KZ13t6tZVO25Z17Brck8.png\",srcSet:\"https://framerusercontent.com/images/kx4xhM9KZ13t6tZVO25Z17Brck8.png?scale-down-to=512 512w,https://framerusercontent.com/images/kx4xhM9KZ13t6tZVO25Z17Brck8.png 1024w\"},\"\"),id:\"1\",name:\"Alex Johnson\",note:\"Follow-up sent\"},{avatar:addImageAlt({pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/wW2WHUztggTxjaw767zYA7IuIs.png\",srcSet:\"https://framerusercontent.com/images/wW2WHUztggTxjaw767zYA7IuIs.png?scale-down-to=512 512w,https://framerusercontent.com/images/wW2WHUztggTxjaw767zYA7IuIs.png 1024w\"},\"\"),id:\"2\",name:\"Maria Lee\",note:\"Demo scheduled\"},{avatar:addImageAlt({pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/ZGcZv3WRke50i95QHP9dJsOPoQI.png\",srcSet:\"https://framerusercontent.com/images/ZGcZv3WRke50i95QHP9dJsOPoQI.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZGcZv3WRke50i95QHP9dJsOPoQI.png 1024w\"},\"\"),id:\"3\",name:\"Chris Smith\",note:\"Awaiting reply\"},{avatar:addImageAlt({pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/fFxxJVek52YQG2sMw9DEbCeXGY8.png\",srcSet:\"https://framerusercontent.com/images/fFxxJVek52YQG2sMw9DEbCeXGY8.png?scale-down-to=512 512w,https://framerusercontent.com/images/fFxxJVek52YQG2sMw9DEbCeXGY8.png 1024w\"},\"\"),id:\"4\",name:\"Nadia Partama\",note:\"Qualified\"}],layoutId:\"r5AXBOzzJ\",progress:68,style:{height:\"100%\",width:\"100%\"},subheadlineFont:{fontFamily:'\"Inter\", sans-serif',fontSize:\"15px\",fontStyle:\"normal\",letterSpacing:\"-0.01em\",lineHeight:\"1.2em\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gWyhc.framer-12ru6tn, .framer-gWyhc .framer-12ru6tn { display: block; }\",\".framer-gWyhc.framer-nb2axr { height: 498px; overflow: hidden; position: relative; width: 400px; }\",\".framer-gWyhc .framer-q643w7-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 498\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerlV8udjLyV=withCSS(Component,css,\"framer-gWyhc\");export default FramerlV8udjLyV;FramerlV8udjLyV.displayName=\"Pipeline Card\";FramerlV8udjLyV.defaultProps={height:498,width:400};addFonts(FramerlV8udjLyV,[{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/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/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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...PipelineSnapshotFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlV8udjLyV\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"498\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./lV8udjLyV.map"],"mappings":"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"}