{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@emotion/hash@0.8.0/dist/hash.browser.esm.js", "ssg:https://framerusercontent.com/modules/4S4SnR1GdEzX95H1h5mT/TDb0qbFhtN7SkrM58svb/Arc.js", "ssg:https://framerusercontent.com/modules/ZFyDTuzE04Wdwmm0qjJj/bMpzwdDZSkS5ZcE8pbOk/e3REAk7za.js", "ssg:https://framerusercontent.com/modules/gj8J1a6KQmHQHIueGbGO/qenkQd7ZV79AlVcv5Paj/fr2HqDBSg.js", "ssg:https://framerusercontent.com/modules/yKuWuaZgGzMkv5fg7a7n/wriduSMmxoA7SkJtjE2y/K2JTrQuDk.js", "ssg:https://framerusercontent.com/modules/21WOUlF8YX5tqKoI0lhu/GgHqh6dCpwS5cdZpv8Lv/Ojn714o1I.js", "ssg:https://framerusercontent.com/modules/BqhSFbkTTayKXHvYrGRH/GvFa6keHWAf93CqOV3Vt/VYTtDgtvi.js", "ssg:https://framerusercontent.com/modules/0fDAIEc5DiOTX8o9wN5c/XuatybgKHrKwqvXfsEow/Zf6b1zgc6.js"],
  "sourcesContent": ["function murmur2(r){var t=0;var a,e=0,c=r.length;for(;c>=4;++e,c-=4){a=255&r.charCodeAt(e)|(255&r.charCodeAt(++e))<<8|(255&r.charCodeAt(++e))<<16|(255&r.charCodeAt(++e))<<24;a=1540483477*(65535&a)+(59797*(a>>>16)<<16);a^=a>>>24;t=1540483477*(65535&a)+(59797*(a>>>16)<<16)^1540483477*(65535&t)+(59797*(t>>>16)<<16)}switch(c){case 3:t^=(255&r.charCodeAt(e+2))<<16;case 2:t^=(255&r.charCodeAt(e+1))<<8;case 1:t^=255&r.charCodeAt(e);t=1540483477*(65535&t)+(59797*(t>>>16)<<16)}t^=t>>>13;t=1540483477*(65535&t)+(59797*(t>>>16)<<16);return((t^t>>>15)>>>0).toString(36)}export{murmur2 as default};\n\n//# sourceMappingURL=hash.browser.esm.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children}from\"react\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{motion}from\"framer-motion\";import hash from\"@emotion/hash\";import{renderToString}from\"react-dom/server\";/**\n * ARC TEXT\n * By Adam and Benjamin\n *\n * @framerIntrinsicWidth 150\n * @framerIntrinsicHeight 150\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ const Arc=withCSS(function Arc(props){// Checks\nconst hasChildren=Children.count(props.slots)>0;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const showCustomPath=hasChildren&&props.type===\"graphic\";// For Ellipse\nconst isCircle=props.type===\"circle\";const isEllipse=props.type===\"ellipse\";const cylinder=isEllipse?props.cylinderHeight/2:0;// Base arc path\nlet path=createPath(props.flip,cylinder);let childPath;let viewBox;// If graphic is connected\nif(showCustomPath){const firstChild=getFirstChild(props.slots);const svgChild=getFirstChild(firstChild.props.svg);const svgChildCanvas=getFirstChild(firstChild.props.children);// Show placeholder on canvas if connected layer isn\u2019t a graphic\nif(isCanvas&&!svgChildCanvas.props.frame){return /*#__PURE__*/ _jsxs(\"div\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\uD83D\uDC8E\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Please connect to Graphic\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"You can only connect the Arc to a Graphic with a single path.\"})]});}// Grab the react element from the canvas and turn it into SVG\nif(isCanvas&&svgChildCanvas){const svgString=renderToString(svgChildCanvas);// Canvas does not give us viewBox within the string\nconst canvasFrame=svgChildCanvas.props.frame;viewBox=`0 0 ${canvasFrame.width} ${canvasFrame.height}`;let attributes=svgString.match(/[\\w-]+=\"[^\"]*\"/g);for(const element of attributes){if(element.includes(\"d=\")){childPath=splitAndReplace(element);}}}// On the preview/deploy we already get the SVG string\nif(!isCanvas&&svgChild){let attributes1=svgChild.match(/[\\w-]+=\"[^\"]*\"/g);viewBox=svgChild.split(\"viewBox=\")[1];viewBox=viewBox.split(\">\")[0];viewBox=viewBox.replace(/^\"(.+(?=\"$))\"$/,\"$1\");for(const element1 of attributes1){if(element1.includes(\"d=\")){childPath=splitAndReplace(element1);}}}}// Unique IDs to avoid multiple instances on the canvas sharing a single path\nconst id=`curve-${hash(childPath||path)}`;// Alignment icon conversion\nlet alignmentValue;if(props.alignmentBaseline===\"top\")alignmentValue=\"Text Top\";if(props.alignmentBaseline===\"center\")alignmentValue=\"Central\";if(props.alignmentBaseline===\"bottom\")alignmentValue=\"Hanging\";return /*#__PURE__*/ _jsx(motion.div,{style:{width:\"100%\",height:\"100%\",// userSelect: \"none\",\n// pointerEvents: \"none\",\nposition:\"relative\"},draggable:\"false\",children:/*#__PURE__*/ _jsxs(motion.svg,{className:\"transform-origin-center-center\",style:{width:\"100%\",height:\"100%\",position:\"absolute\",inset:0,transformOrigin:\"center\",willChange:props.rotate&&\"transform\"},viewBox:showCustomPath?viewBox:`0 0 100 100`,overflow:\"visible\",animate:isCircle&&props.rotate&&{rotate:360},transition:isCircle&&props.rotate&&{duration:100/props.rotateSpeed,repeat:Infinity,ease:\"linear\"},children:[/*#__PURE__*/ _jsx(\"path\",{id:id,d:showCustomPath?childPath:path,strokeWidth:\"none\",fill:\"transparent\"}),/*#__PURE__*/ _jsx(\"text\",{children:/*#__PURE__*/ _jsxs(\"textPath\",{href:`#${id}`,startOffset:props.startOffset,dominantBaseline:alignmentValue,style:{fontSize:props.font.fontSize,fontFamily:props.font.font,fontWeight:props.font.fontWeight,wordSpacing:props.font.wordSpacing,letterSpacing:props.font.letterSpacing,fill:props.color},children:[props.text,!isCanvas&&props.animate&&/*#__PURE__*/ _jsx(\"animate\",{attributeName:\"startOffset\",from:`${props.animateStart}%`,to:`${props.animateEnd}%`,begin:\"0s\",dur:`${props.animateDuration}s`,repeatCount:\"indefinite\"})]})})]})});},// Work around a bug with framer-motion that calculates a px origin when animating SVG elements.\n[\".transform-origin-center-center { transform-origin: center center !important; }\",]);export default Arc;Arc.defaultProps={height:50,width:50};addPropertyControls(Arc,{text:{title:\"Content\",type:ControlType.String,defaultValue:\"\u2726 THANK YOU \u2726 FOR VISITING\",displayTextArea:true},type:{title:\"Type\",type:ControlType.Enum,options:[\"circle\",\"ellipse\",\"graphic\"],optionTitles:[\"Circle\",\"Ellipse\",\"Graphic\"],defaultValue:true},cylinderHeight:{title:\"Height\",type:ControlType.Number,unit:\"px\",min:0,max:1e3,hidden:({type})=>type!==\"ellipse\"},rotate:{type:ControlType.Boolean,title:\"Rotate\",defaultValue:false,hidden:({type})=>type!==\"circle\"},rotateSpeed:{type:ControlType.Number,title:\"Speed\",min:0,max:50,defaultValue:5,displayStepper:true,step:1,hidden:({type,rotate})=>type!==\"circle\"||!rotate},slots:{type:ControlType.ComponentInstance,title:\"Graphic\",hidden:({type})=>type!==\"graphic\"},alignmentBaseline:{title:\"Align\",type:ControlType.Enum,options:[\"top\",\"center\",\"bottom\"],optionIcons:[\"align-top\",\"align-middle\",\"align-bottom\"],defaultValue:\"bottom\",displaySegmentedControl:true},flip:{type:ControlType.Boolean,defaultValue:false,title:\"Direction\",enabledTitle:\"CW\",disabledTitle:\"CCW\",hidden:({type})=>type===\"graphic\"},startOffset:{title:\"Offset\",type:ControlType.Number,defaultValue:0,max:360,unit:\"\\xb0\",step:.5},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#999\"},font:{type:ControlType.Object,controls:{font:{type:ControlType.String,placeholder:\"Inter\",defaultValue:\"Inter\"},fontSize:{title:\"Size\",type:ControlType.Number,min:0,max:100,step:.5,defaultValue:12},fontWeight:{type:ControlType.Enum,options:[100,200,300,400,500,600,700,800,900],defaultValue:600,title:\"Weight\"},wordSpacing:{title:\"Word\",type:ControlType.Number,defaultValue:4,step:.1,displayStepper:true},letterSpacing:{title:\"Letter\",type:ControlType.Number,defaultValue:4,step:.1,displayStepper:true}}},animate:{type:ControlType.Boolean,defaultValue:false,title:\"Animate\"},animateStart:{type:ControlType.Number,min:-200,max:200,step:.1,defaultValue:-50,title:\"From\",unit:\"%\",hidden:props=>!props.animate},animateEnd:{type:ControlType.Number,min:-200,max:200,step:.1,defaultValue:150,title:\"To\",unit:\"%\",hidden:props=>!props.animate},animateDuration:{type:ControlType.Number,min:0,max:50,defaultValue:5,title:\"Time\",unit:\"s\",displayStepper:true,hidden:props=>!props.animate}});/* Method to get the first child */ function getFirstChild(slots){let firstChild;Children.map(slots,child=>{if(firstChild===undefined){firstChild=child;}});return firstChild;}/* Method to get stringless attributes */ const splitAndReplace=string=>{return string.split(\"=\")[1].replace(/['\"]+/g,\"\");};/* Path creation method */ const createPath=(flip,cylinder)=>{const cylinderTop=50-cylinder;const cylinderBottom=50+cylinder;return!flip?`M 0 50 L 0 ${cylinderTop} A 1 1 0 0 1 100 ${cylinderTop} L 100 50 L 100 ${cylinderBottom} A 1 1 0 0 1 0 ${cylinderBottom} L 0 ${cylinderTop}`:`M 0 50 L 0 ${cylinderBottom} A 1 1 0 1 0 100 ${cylinderBottom} L 100 ${cylinderTop} A 1 1 0 1 0 0 ${cylinderTop} L 0 50`;};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:160,lineHeight:1.5,textAlign:\"center\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Arc\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"150\",\"framerIntrinsicWidth\":\"150\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Arc.map", "// Generated by Framer (f866232)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,getPropertyControls,Image,Link,RichText,useActiveVariantCallback,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/7AsotxreWPtTSr3wq57B/w7yv5sNwV0CnR0BiONd0/CGYkX_UvS.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/eelY7HUUwD3FcHv4t7x2/lfAzh9ZPUp6TK4jYbqvF/GcZ7FEO9D.js\";import Tool from\"https://framerusercontent.com/modules/fx2znABOqZRSw7Zlciok/bRuJ4rwg1hzrlq2Zxs30/IGjrqV4mz.js\";import Tag from\"https://framerusercontent.com/modules/i99s7LNeL53QN8JepuRU/KRgZWknMKd0ENNffW5kh/sMQlNKlsE.js\";const TagFonts=getFonts(Tag);const ToolControls=getPropertyControls(Tool);const enabledGestures={gXEZJMakQ:{hover:true}};const cycleOrder=[\"gXEZJMakQ\",\"BGpW6kyeE\",\"Wp3R8HTLO\",\"K5gcWJMOF\"];const variantClassNames={BGpW6kyeE:\"framer-v-1c7y0y7\",gXEZJMakQ:\"framer-v-lg3ksq\",K5gcWJMOF:\"framer-v-1agxlca\",Wp3R8HTLO:\"framer-v-1ao0ymh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={Desktop:\"gXEZJMakQ\",Laptop:\"K5gcWJMOF\",Mobile:\"Wp3R8HTLO\",Tablet:\"BGpW6kyeE\"};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const isSet=value=>{return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"gXEZJMakQ\",link:ye1EiZoAJ,title:bU7L0536W=\"Project Title or Name\",year:p4rZq6uQz=\"2023\",tag1:YCKmhdmPr=\"Product Design\",tag2:RXcVXRQ4s=\"\",tag3:diVRPUgeu=\"\",tag4:N2HzhBq84=\"\",heroImage:pzloCY8iX,tool1:y6aNHM_xQ=\"hA1xvU08x\",tool2:dsM1rCK7x=\"OTV7PWx4f\",tool3:uakrRrTrY=\"hA1xvU08x\",tap:qRFI8uRTK,...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"gXEZJMakQ\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapyeyk2g=activeVariantCallback(async(...args)=>{if(qRFI8uRTK){const res=await qRFI8uRTK(...args);if(res===false)return false;}});const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-KV5wu\",sharedStyle.className,sharedStyle1.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Link,{href:ye1EiZoAJ,openInNewTab:false,children:/*#__PURE__*/ _jsx(motion.a,{...restProps,className:`${cx(\"framer-lg3ksq\",className)} framer-rnlv3p`,\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"gXEZJMakQ\",onTap:onTapyeyk2g,ref:ref,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-fb25cd35-d54b-498f-b9c7-20b6ec55d755, rgb(17, 18, 18))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},transition:transition,variants:{\"gXEZJMakQ-hover\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(191, 255, 0, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"}},...addPropertyOverrides({\"gXEZJMakQ-hover\":{\"data-border\":true,\"data-framer-name\":undefined},BGpW6kyeE:{\"data-framer-name\":\"Tablet\"},K5gcWJMOF:{\"data-framer-name\":\"Laptop\"},Wp3R8HTLO:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-w7cbiy\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"jABuZog0g\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},transition:transition,children:[/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-sxmaka\",\"data-border\":true,\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"K_32WjgGh\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b67dbc96-773c-40cc-97ca-3ff88e88d0a3, rgb(8, 8, 8))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",boxShadow:\"inset 0px -2px 0px 0px rgba(242, 243, 246, 0.04)\"},transition:transition,children:[/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h2,{className:\"framer-styles-preset-14qy4ht\",\"data-styles-preset\":\"GcZ7FEO9D\",children:\"Title\"})}),className:\"framer-1ib0yjc\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"Os_dRmtgE\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:bU7L0536W,transition:transition,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-1jzn1n3\",\"data-styles-preset\":\"CGYkX_UvS\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"2023\"})}),className:\"framer-1ephu3u\",\"data-framer-name\":\"Year\",layoutDependency:layoutDependency,layoutId:\"alk1kKVM1\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\",\"--framer-paragraph-spacing\":\"0px\"},text:p4rZq6uQz,transition:transition,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-uuj0s\",\"data-framer-name\":\"Tags and Stack\",layoutDependency:layoutDependency,layoutId:\"L5Gzv0KhO\",transition:transition,children:[/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-lt0e52\",\"data-framer-name\":\"Tags\",layoutDependency:layoutDependency,layoutId:\"w5xnLnkrT\",transition:transition,children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-14kz5tc-container\",layoutDependency:layoutDependency,layoutId:\"y3Gd3UNci-container\",transition:transition,children:/*#__PURE__*/ _jsx(Tag,{hasTag:isSet(YCKmhdmPr),height:\"100%\",id:\"y3Gd3UNci\",layoutId:\"y3Gd3UNci\",style:{height:\"100%\"},title:YCKmhdmPr,width:\"100%\"})}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1os584g-container\",layoutDependency:layoutDependency,layoutId:\"yhv38OESx-container\",transition:transition,children:/*#__PURE__*/ _jsx(Tag,{hasTag:isSet(RXcVXRQ4s),height:\"100%\",id:\"yhv38OESx\",layoutId:\"yhv38OESx\",style:{height:\"100%\"},title:RXcVXRQ4s,width:\"100%\"})}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1qtscif-container\",layoutDependency:layoutDependency,layoutId:\"QA9fDvd7k-container\",transition:transition,children:/*#__PURE__*/ _jsx(Tag,{hasTag:isSet(diVRPUgeu),height:\"100%\",id:\"QA9fDvd7k\",layoutId:\"QA9fDvd7k\",style:{height:\"100%\"},title:diVRPUgeu,width:\"100%\"})}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-t5q1no-container\",layoutDependency:layoutDependency,layoutId:\"rU21eLs48-container\",transition:transition,children:/*#__PURE__*/ _jsx(Tag,{hasTag:isSet(N2HzhBq84),height:\"100%\",id:\"rU21eLs48\",layoutId:\"rU21eLs48\",style:{height:\"100%\"},title:N2HzhBq84,width:\"100%\"})})]}),/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-1vvhftc\",\"data-framer-name\":\"Tech Stack\",layoutDependency:layoutDependency,layoutId:\"NXesKIsv8\",transition:transition,children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1htanq3\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"iNZ3yMoCz\",transition:transition}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1j9a8z3\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"DKykGTFTk\",transition:transition}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-8doth1\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"InGqLUctc\",transition:transition})]})]}),/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(pzloCY8iX)},className:\"framer-x7f30v\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"wEQgMEfYS\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16},transition:transition})]})})})})});});const css=['.framer-KV5wu [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KV5wu .framer-rnlv3p { display: block; }\",\".framer-KV5wu .framer-lg3ksq { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 748px; }\",\".framer-KV5wu .framer-w7cbiy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-KV5wu .framer-sxmaka { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 74px; justify-content: space-between; overflow: visible; padding: 20px 20px 20px 20px; position: relative; width: 100%; }\",\".framer-KV5wu .framer-1ib0yjc { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-KV5wu .framer-1ephu3u { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KV5wu .framer-uuj0s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 4px 20px 4px 20px; position: relative; width: 100%; }\",\".framer-KV5wu .framer-lt0e52 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-KV5wu .framer-14kz5tc-container, .framer-KV5wu .framer-1os584g-container, .framer-KV5wu .framer-1qtscif-container, .framer-KV5wu .framer-t5q1no-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-KV5wu .framer-1vvhftc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-KV5wu .framer-1htanq3, .framer-KV5wu .framer-1j9a8z3, .framer-KV5wu .framer-8doth1 { flex: none; height: 32px; overflow: visible; position: relative; width: 20px; }\",\".framer-KV5wu .framer-1vzohtb-container, .framer-KV5wu .framer-uwsqqg-container, .framer-KV5wu .framer-wfztg5-container { flex: none; height: auto; left: -8px; position: absolute; right: -4px; top: 0px; }\",\".framer-KV5wu .framer-x7f30v { flex: none; height: 421px; position: relative; width: 100%; }\",\".framer-KV5wu .framer-v-lg3ksq .framer-lg3ksq { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KV5wu .framer-lg3ksq, .framer-KV5wu .framer-w7cbiy, .framer-KV5wu .framer-lt0e52, .framer-KV5wu .framer-1vvhftc { gap: 0px; } .framer-KV5wu .framer-lg3ksq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-KV5wu .framer-lg3ksq > :first-child, .framer-KV5wu .framer-w7cbiy > :first-child { margin-top: 0px; } .framer-KV5wu .framer-lg3ksq > :last-child, .framer-KV5wu .framer-w7cbiy > :last-child { margin-bottom: 0px; } .framer-KV5wu .framer-w7cbiy > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-KV5wu .framer-lt0e52 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-KV5wu .framer-lt0e52 > :first-child, .framer-KV5wu .framer-1vvhftc > :first-child { margin-left: 0px; } .framer-KV5wu .framer-lt0e52 > :last-child, .framer-KV5wu .framer-1vvhftc > :last-child { margin-right: 0px; } .framer-KV5wu .framer-1vvhftc > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-KV5wu.framer-v-1c7y0y7 .framer-lg3ksq { width: 730px; }\",\".framer-KV5wu.framer-v-1c7y0y7 .framer-x7f30v { height: 410px; }\",\".framer-KV5wu.framer-v-1ao0ymh .framer-lg3ksq { width: 390px; }\",\".framer-KV5wu.framer-v-1ao0ymh .framer-x7f30v { height: 219px; }\",\".framer-KV5wu.framer-v-1agxlca .framer-lg3ksq { width: 610px; }\",\".framer-KV5wu.framer-v-1agxlca .framer-x7f30v { height: 343px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 575\n * @framerIntrinsicWidth 748\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"BGpW6kyeE\":{\"layout\":[\"fixed\",\"auto\"]},\"Wp3R8HTLO\":{\"layout\":[\"fixed\",\"auto\"]},\"K5gcWJMOF\":{\"layout\":[\"fixed\",\"auto\"]},\"ZXwRZGvIv\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ye1EiZoAJ\":\"link\",\"bU7L0536W\":\"title\",\"p4rZq6uQz\":\"year\",\"YCKmhdmPr\":\"tag1\",\"RXcVXRQ4s\":\"tag2\",\"diVRPUgeu\":\"tag3\",\"N2HzhBq84\":\"tag4\",\"pzloCY8iX\":\"heroImage\",\"y6aNHM_xQ\":\"tool1\",\"dsM1rCK7x\":\"tool2\",\"uakrRrTrY\":\"tool3\",\"qRFI8uRTK\":\"tap\"}\n */ const Framere3REAk7za=withCSS(Component,css,\"framer-KV5wu\");export default Framere3REAk7za;Framere3REAk7za.displayName=\"CMS Project Card\";Framere3REAk7za.defaultProps={height:575,width:748};addPropertyControls(Framere3REAk7za,{variant:{options:[\"gXEZJMakQ\",\"BGpW6kyeE\",\"Wp3R8HTLO\",\"K5gcWJMOF\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\",\"Laptop\"],title:\"Variant\",type:ControlType.Enum},ye1EiZoAJ:{title:\"Link\",type:ControlType.Link},bU7L0536W:{defaultValue:\"Project Title or Name\",placeholder:\"Title\",title:\"Title\",type:ControlType.String},p4rZq6uQz:{defaultValue:\"2023\",title:\"Year\",type:ControlType.String},YCKmhdmPr:{defaultValue:\"Product Design\",displayTextArea:false,placeholder:\"Enter a Tag Name\",title:\"Tag 1\",type:ControlType.String},RXcVXRQ4s:{defaultValue:\"\",displayTextArea:false,placeholder:\"Enter Another Tag Name\",title:\"Tag 2\",type:ControlType.String},diVRPUgeu:{defaultValue:\"\",title:\"Tag 3\",type:ControlType.String},N2HzhBq84:{defaultValue:\"\",title:\"Tag 4\",type:ControlType.String},pzloCY8iX:{title:\"Hero Image\",type:ControlType.ResponsiveImage},y6aNHM_xQ:(ToolControls===null||ToolControls===void 0?void 0:ToolControls[\"variant\"])&&{...ToolControls[\"variant\"],defaultValue:\"hA1xvU08x\",hidden:undefined,title:\"Tool 1\"},dsM1rCK7x:(ToolControls===null||ToolControls===void 0?void 0:ToolControls[\"variant\"])&&{...ToolControls[\"variant\"],defaultValue:\"OTV7PWx4f\",hidden:undefined,title:\"Tool 2\"},uakrRrTrY:(ToolControls===null||ToolControls===void 0?void 0:ToolControls[\"variant\"])&&{...ToolControls[\"variant\"],defaultValue:\"hA1xvU08x\",hidden:undefined,title:\"Tool 3\"},qRFI8uRTK:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(Framere3REAk7za,[...TagFonts,...sharedStyle.fonts,...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framere3REAk7za\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"575\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BGpW6kyeE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Wp3R8HTLO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"K5gcWJMOF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZXwRZGvIv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"ye1EiZoAJ\\\":\\\"link\\\",\\\"bU7L0536W\\\":\\\"title\\\",\\\"p4rZq6uQz\\\":\\\"year\\\",\\\"YCKmhdmPr\\\":\\\"tag1\\\",\\\"RXcVXRQ4s\\\":\\\"tag2\\\",\\\"diVRPUgeu\\\":\\\"tag3\\\",\\\"N2HzhBq84\\\":\\\"tag4\\\",\\\"pzloCY8iX\\\":\\\"heroImage\\\",\\\"y6aNHM_xQ\\\":\\\"tool1\\\",\\\"dsM1rCK7x\\\":\\\"tool2\\\",\\\"uakrRrTrY\\\":\\\"tool3\\\",\\\"qRFI8uRTK\\\":\\\"tap\\\"}\",\"framerIntrinsicWidth\":\"748\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./e3REAk7za.map", "// Generated by Framer (461de17)\nimport{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,PathVariablesContext,ResolveLinks,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Project from\"https://framerusercontent.com/modules/qgPEvL0eqESy91PTOgxb/JiWUK30JND4DSf1Ezt7z/Egf8zv24F.js\";import CMSProjectCard from\"https://framerusercontent.com/modules/ZFyDTuzE04Wdwmm0qjJj/bMpzwdDZSkS5ZcE8pbOk/e3REAk7za.js\";const CMSProjectCardFonts=getFonts(CMSProjectCard);const MotionDivWithFX=withFX(motion.div);const CMSProjectCardControls=getPropertyControls(CMSProjectCard);const cycleOrder=[\"h5Z3uSxdF\"];const serializationHash=\"framer-LCLK0\";const variantClassNames={h5Z3uSxdF:\"framer-v-19s017z\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:100,y:0};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableEnumMap={Desktop:\"gXEZJMakQ\",Laptop:\"K5gcWJMOF\",Mobile:\"Wp3R8HTLO\",Tablet:\"BGpW6kyeE\"};const getProps=({breakpoint,height,id,tap,width,...props})=>{var _humanReadableEnumMap_breakpoint,_ref,_ref1;return{...props,gOfsDo1lu:tap!==null&&tap!==void 0?tap:props.gOfsDo1lu,kkGkq0EuJ:(_ref1=(_ref=(_humanReadableEnumMap_breakpoint=humanReadableEnumMap[breakpoint])!==null&&_humanReadableEnumMap_breakpoint!==void 0?_humanReadableEnumMap_breakpoint:breakpoint)!==null&&_ref!==void 0?_ref:props.kkGkq0EuJ)!==null&&_ref1!==void 0?_ref1:\"gXEZJMakQ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,gOfsDo1lu,kkGkq0EuJ,oF2BzFZaOgGnlWtp7v,bYZi6LXHngGnlWtp7v,RQZLa5liagGnlWtp7v,AqDPD_4vvgGnlWtp7v,jAD26vPGfgGnlWtp7v,PZ75C08SlgGnlWtp7v,idgGnlWtp7v,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"h5Z3uSxdF\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const tap1x9pr88=activeVariantCallback(async(...args)=>{if(gOfsDo1lu){const res=await gOfsDo1lu(...args);if(res===false)return false;}});const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?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(serializationHash,...sharedStyleClassNames,\"framer-19s017z\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"h5Z3uSxdF\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gokdx0\",layoutDependency:layoutDependency,layoutId:\"gGnlWtp7v\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Project,type:\"Collection\"},select:[{name:\"oF2BzFZaO\",type:\"Identifier\"},{name:\"bYZi6LXHn\",type:\"Identifier\"},{name:\"RQZLa5lia\",type:\"Identifier\"},{name:\"AqDPD_4vv\",type:\"Identifier\"},{name:\"jAD26vPGf\",type:\"Identifier\"},{name:\"PZ75C08Sl\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{name:\"ha1t72Lne\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"3\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({oF2BzFZaO:oF2BzFZaOgGnlWtp7v,bYZi6LXHn:bYZi6LXHngGnlWtp7v,RQZLa5lia:RQZLa5liagGnlWtp7v,AqDPD_4vv:AqDPD_4vvgGnlWtp7v,jAD26vPGf:jAD26vPGfgGnlWtp7v,PZ75C08Sl:PZ75C08SlgGnlWtp7v,id:idgGnlWtp7v},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`gGnlWtp7v-${idgGnlWtp7v}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oF2BzFZaO:oF2BzFZaOgGnlWtp7v},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oF2BzFZaO:\"ennabl-dashboard\"},unresolvedPathSlugs:{oF2BzFZaO:{collectionId:\"Egf8zv24F\",collectionItemId:\"l5IOYfgZG\"}},webPageId:\"H5HYMhBD0\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-ps9q9f-container\",\"data-framer-name\":\"CMS Project Card\",layoutDependency:layoutDependency,layoutId:\"wWsxzf7d2-container\",name:\"CMS Project Card\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CMSProjectCard,{height:\"100%\",heroImage:toResponsiveImage(PZ75C08SlgGnlWtp7v),id:\"wWsxzf7d2\",layoutId:\"wWsxzf7d2\",link:resolvedLinks[0],name:\"CMS Project Card\",style:{width:\"100%\"},tag1:AqDPD_4vvgGnlWtp7v,tag2:jAD26vPGfgGnlWtp7v,tag3:\"\",tag4:\"\",tap:tap1x9pr88,title:bYZi6LXHngGnlWtp7v,tool1:\"hA1xvU08x\",tool2:\"OTV7PWx4f\",tool3:\"hA1xvU08x\",variant:kkGkq0EuJ,width:\"100%\",year:RQZLa5liagGnlWtp7v})})})})})},idgGnlWtp7v);})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LCLK0.framer-12ees4g, .framer-LCLK0 .framer-12ees4g { display: block; }\",\".framer-LCLK0.framer-19s017z { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 748px; }\",\".framer-LCLK0 .framer-1gokdx0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-LCLK0 .framer-ps9q9f-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LCLK0.framer-19s017z, .framer-LCLK0 .framer-1gokdx0 { gap: 0px; } .framer-LCLK0.framer-19s017z > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-LCLK0.framer-19s017z > :first-child, .framer-LCLK0 .framer-1gokdx0 > :first-child { margin-top: 0px; } .framer-LCLK0.framer-19s017z > :last-child, .framer-LCLK0 .framer-1gokdx0 > :last-child { margin-bottom: 0px; } .framer-LCLK0 .framer-1gokdx0 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 575\n * @framerIntrinsicWidth 748\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"gOfsDo1lu\":\"tap\",\"kkGkq0EuJ\":\"breakpoint\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerfr2HqDBSg=withCSS(Component,css,\"framer-LCLK0\");export default Framerfr2HqDBSg;Framerfr2HqDBSg.displayName=\"Project 3\";Framerfr2HqDBSg.defaultProps={height:575,width:748};addPropertyControls(Framerfr2HqDBSg,{gOfsDo1lu:{title:\"Tap\",type:ControlType.EventHandler},kkGkq0EuJ:(CMSProjectCardControls===null||CMSProjectCardControls===void 0?void 0:CMSProjectCardControls[\"variant\"])&&{...CMSProjectCardControls[\"variant\"],defaultValue:\"gXEZJMakQ\",description:undefined,hidden:undefined,title:\"Breakpoint\"}});addFonts(Framerfr2HqDBSg,[{explicitInter:true,fonts:[]},...CMSProjectCardFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerfr2HqDBSg\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"748\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"575\",\"framerVariables\":\"{\\\"gOfsDo1lu\\\":\\\"tap\\\",\\\"kkGkq0EuJ\\\":\\\"breakpoint\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (461de17)\nimport{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,PathVariablesContext,ResolveLinks,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Project from\"https://framerusercontent.com/modules/qgPEvL0eqESy91PTOgxb/JiWUK30JND4DSf1Ezt7z/Egf8zv24F.js\";import CMSProjectCard from\"https://framerusercontent.com/modules/ZFyDTuzE04Wdwmm0qjJj/bMpzwdDZSkS5ZcE8pbOk/e3REAk7za.js\";const CMSProjectCardFonts=getFonts(CMSProjectCard);const MotionDivWithFX=withFX(motion.div);const CMSProjectCardControls=getPropertyControls(CMSProjectCard);const cycleOrder=[\"NIYzGdsLe\"];const serializationHash=\"framer-3hz8y\";const variantClassNames={NIYzGdsLe:\"framer-v-wv634t\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:100,y:0};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableEnumMap={Desktop:\"gXEZJMakQ\",Laptop:\"K5gcWJMOF\",Mobile:\"Wp3R8HTLO\",Tablet:\"BGpW6kyeE\"};const getProps=({breakpoint,height,id,tap,width,...props})=>{var _humanReadableEnumMap_breakpoint,_ref,_ref1;return{...props,gOfsDo1lu:tap!==null&&tap!==void 0?tap:props.gOfsDo1lu,Lk2lUdnKX:(_ref1=(_ref=(_humanReadableEnumMap_breakpoint=humanReadableEnumMap[breakpoint])!==null&&_humanReadableEnumMap_breakpoint!==void 0?_humanReadableEnumMap_breakpoint:breakpoint)!==null&&_ref!==void 0?_ref:props.Lk2lUdnKX)!==null&&_ref1!==void 0?_ref1:\"gXEZJMakQ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,gOfsDo1lu,Lk2lUdnKX,oF2BzFZaOJnpMLhqE0,bYZi6LXHnJnpMLhqE0,RQZLa5liaJnpMLhqE0,AqDPD_4vvJnpMLhqE0,jAD26vPGfJnpMLhqE0,PZ75C08SlJnpMLhqE0,idJnpMLhqE0,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NIYzGdsLe\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const tap1x9pr88=activeVariantCallback(async(...args)=>{if(gOfsDo1lu){const res=await gOfsDo1lu(...args);if(res===false)return false;}});const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?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(serializationHash,...sharedStyleClassNames,\"framer-wv634t\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"NIYzGdsLe\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qlg7l0\",layoutDependency:layoutDependency,layoutId:\"JnpMLhqE0\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Project,type:\"Collection\"},select:[{name:\"oF2BzFZaO\",type:\"Identifier\"},{name:\"bYZi6LXHn\",type:\"Identifier\"},{name:\"RQZLa5lia\",type:\"Identifier\"},{name:\"AqDPD_4vv\",type:\"Identifier\"},{name:\"jAD26vPGf\",type:\"Identifier\"},{name:\"PZ75C08Sl\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{name:\"ha1t72Lne\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"5\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({oF2BzFZaO:oF2BzFZaOJnpMLhqE0,bYZi6LXHn:bYZi6LXHnJnpMLhqE0,RQZLa5lia:RQZLa5liaJnpMLhqE0,AqDPD_4vv:AqDPD_4vvJnpMLhqE0,jAD26vPGf:jAD26vPGfJnpMLhqE0,PZ75C08Sl:PZ75C08SlJnpMLhqE0,id:idJnpMLhqE0},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`JnpMLhqE0-${idJnpMLhqE0}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oF2BzFZaO:oF2BzFZaOJnpMLhqE0},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oF2BzFZaO:\"vz-mobile-app\"},unresolvedPathSlugs:{oF2BzFZaO:{collectionId:\"Egf8zv24F\",collectionItemId:\"ll4OLCOof\"}},webPageId:\"H5HYMhBD0\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-utff6c-container\",\"data-framer-name\":\"CMS Project Card\",layoutDependency:layoutDependency,layoutId:\"qNocOcYpH-container\",name:\"CMS Project Card\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CMSProjectCard,{height:\"100%\",heroImage:toResponsiveImage(PZ75C08SlJnpMLhqE0),id:\"qNocOcYpH\",layoutId:\"qNocOcYpH\",link:resolvedLinks[0],name:\"CMS Project Card\",style:{width:\"100%\"},tag1:AqDPD_4vvJnpMLhqE0,tag2:jAD26vPGfJnpMLhqE0,tag3:\"\",tag4:\"\",tap:tap1x9pr88,title:bYZi6LXHnJnpMLhqE0,tool1:\"hA1xvU08x\",tool2:\"OTV7PWx4f\",tool3:\"hA1xvU08x\",variant:Lk2lUdnKX,width:\"100%\",year:RQZLa5liaJnpMLhqE0})})})})})},idJnpMLhqE0);})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3hz8y.framer-pu0gfi, .framer-3hz8y .framer-pu0gfi { display: block; }\",\".framer-3hz8y.framer-wv634t { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 748px; }\",\".framer-3hz8y .framer-1qlg7l0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-3hz8y .framer-utff6c-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3hz8y.framer-wv634t, .framer-3hz8y .framer-1qlg7l0 { gap: 0px; } .framer-3hz8y.framer-wv634t > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-3hz8y.framer-wv634t > :first-child, .framer-3hz8y .framer-1qlg7l0 > :first-child { margin-top: 0px; } .framer-3hz8y.framer-wv634t > :last-child, .framer-3hz8y .framer-1qlg7l0 > :last-child { margin-bottom: 0px; } .framer-3hz8y .framer-1qlg7l0 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 575\n * @framerIntrinsicWidth 748\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"gOfsDo1lu\":\"tap\",\"Lk2lUdnKX\":\"breakpoint\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerK2JTrQuDk=withCSS(Component,css,\"framer-3hz8y\");export default FramerK2JTrQuDk;FramerK2JTrQuDk.displayName=\"Project 5\";FramerK2JTrQuDk.defaultProps={height:575,width:748};addPropertyControls(FramerK2JTrQuDk,{gOfsDo1lu:{title:\"Tap\",type:ControlType.EventHandler},Lk2lUdnKX:(CMSProjectCardControls===null||CMSProjectCardControls===void 0?void 0:CMSProjectCardControls[\"variant\"])&&{...CMSProjectCardControls[\"variant\"],defaultValue:\"gXEZJMakQ\",description:undefined,hidden:undefined,title:\"Breakpoint\"}});addFonts(FramerK2JTrQuDk,[{explicitInter:true,fonts:[]},...CMSProjectCardFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerK2JTrQuDk\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"575\",\"framerIntrinsicWidth\":\"748\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"gOfsDo1lu\\\":\\\"tap\\\",\\\"Lk2lUdnKX\\\":\\\"breakpoint\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f866232)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Link,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";const FeatherFonts=getFonts(Feather);const enabledGestures={IcQepg94z:{hover:true},SAbGYxbJU:{hover:true}};const cycleOrder=[\"IcQepg94z\",\"SAbGYxbJU\"];const variantClassNames={IcQepg94z:\"framer-v-1bstyjt\",SAbGYxbJU:\"framer-v-1q9eh2w\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={Behance:\"IcQepg94z\",Instagram:\"SAbGYxbJU\"};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"IcQepg94z\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"IcQepg94z\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-JuMzo\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Link,{href:\"https://www.behance.net/kevingsalinas\",openInNewTab:true,...addPropertyOverrides({SAbGYxbJU:{href:\"https://www.instagram.com/sevinkalinas\"}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsx(motion.a,{...restProps,\"aria-label\":\"Nav Item\",className:`${cx(\"framer-1bstyjt\",className)} framer-1h1nx20`,\"data-framer-name\":\"Behance\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"IcQepg94z\",ref:ref,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},transition:transition,variants:{\"IcQepg94z-hover\":{backgroundColor:\"var(--token-fb25cd35-d54b-498f-b9c7-20b6ec55d755, rgb(17, 18, 18))\"},\"SAbGYxbJU-hover\":{backgroundColor:\"var(--token-fb25cd35-d54b-498f-b9c7-20b6ec55d755, rgb(17, 18, 18))\"}},...addPropertyOverrides({\"IcQepg94z-hover\":{\"data-framer-name\":undefined},\"SAbGYxbJU-hover\":{\"data-framer-name\":undefined},SAbGYxbJU:{\"data-framer-name\":\"Instagram\"}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-1eoh76q\",\"data-framer-name\":\"Stack\",layoutDependency:layoutDependency,layoutId:\"jNPcSgHhY\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},transition:transition,variants:{\"IcQepg94z-hover\":{backgroundColor:\"var(--token-fb25cd35-d54b-498f-b9c7-20b6ec55d755, rgb(17, 18, 18))\"},\"SAbGYxbJU-hover\":{backgroundColor:\"var(--token-fb25cd35-d54b-498f-b9c7-20b6ec55d755, rgb(17, 18, 18))\"}},children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1f00656-container\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"KHTl7nUt9-container\",name:\"1\",transition:transition,children:/*#__PURE__*/ _jsx(Feather,{color:'var(--token-82f2047a-329b-4415-bb5d-4db97f53d284, rgb(115, 123, 135)) /* {\"name\":\"Icons\"} */',height:\"100%\",iconSearch:\"link\",iconSelection:\"home\",id:\"KHTl7nUt9\",layoutId:\"KHTl7nUt9\",mirrored:false,name:\"1\",selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({SAbGYxbJU:{iconSearch:\"instagram\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1bm6ugo-container\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"Gk5i6cA1p-container\",name:\"2\",transition:transition,children:/*#__PURE__*/ _jsx(Feather,{color:'var(--token-82f2047a-329b-4415-bb5d-4db97f53d284, rgb(115, 123, 135)) /* {\"name\":\"Icons\"} */',height:\"100%\",iconSearch:\"twitter\",iconSelection:\"home\",id:\"Gk5i6cA1p\",layoutId:\"Gk5i6cA1p\",mirrored:false,name:\"2\",selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"IcQepg94z-hover\":{color:'var(--token-74581527-1177-4af8-b7db-02f8d1bfc374, rgb(242, 243, 246)) /* {\"name\":\"Base White\"} */',iconSearch:\"link\"},\"SAbGYxbJU-hover\":{color:'var(--token-74581527-1177-4af8-b7db-02f8d1bfc374, rgb(242, 243, 246)) /* {\"name\":\"Base White\"} */'},SAbGYxbJU:{iconSearch:\"instagram\"}},baseVariant,gestureVariant)})})]})})})})});});const css=['.framer-JuMzo [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JuMzo .framer-1h1nx20 { display: block; }\",\".framer-JuMzo .framer-1bstyjt { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 12px 12px 12px 12px; position: relative; text-decoration: none; width: min-content; }\",\".framer-JuMzo .framer-1eoh76q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 20px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-JuMzo .framer-1f00656-container, .framer-JuMzo .framer-1bm6ugo-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-JuMzo .framer-v-1bstyjt .framer-1bstyjt, .framer-JuMzo .framer-v-1q9eh2w .framer-1bstyjt { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-JuMzo .framer-1bstyjt, .framer-JuMzo .framer-1eoh76q { gap: 0px; } .framer-JuMzo .framer-1bstyjt > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-JuMzo .framer-1bstyjt > :first-child { margin-left: 0px; } .framer-JuMzo .framer-1bstyjt > :last-child { margin-right: 0px; } .framer-JuMzo .framer-1eoh76q > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-JuMzo .framer-1eoh76q > :first-child { margin-top: 0px; } .framer-JuMzo .framer-1eoh76q > :last-child { margin-bottom: 0px; } }\",\".framer-JuMzo.framer-v-1bstyjt.hover .framer-1eoh76q, .framer-JuMzo.framer-v-1q9eh2w.hover .framer-1eoh76q { justify-content: flex-end; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 44\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"SAbGYxbJU\":{\"layout\":[\"auto\",\"auto\"]},\"K4dOIi_jg\":{\"layout\":[\"auto\",\"auto\"]},\"sATGY7aqv\":{\"layout\":[\"auto\",\"auto\"]}}}\n */ const FramerOjn714o1I=withCSS(Component,css,\"framer-JuMzo\");export default FramerOjn714o1I;FramerOjn714o1I.displayName=\"Social Icon\";FramerOjn714o1I.defaultProps={height:44,width:44};addPropertyControls(FramerOjn714o1I,{variant:{options:[\"IcQepg94z\",\"SAbGYxbJU\"],optionTitles:[\"Behance\",\"Instagram\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerOjn714o1I,[...FeatherFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOjn714o1I\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"44\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SAbGYxbJU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"K4dOIi_jg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"sATGY7aqv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"44\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ojn714o1I.map", "// Generated by Framer (461de17)\nimport{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,PathVariablesContext,ResolveLinks,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Project from\"https://framerusercontent.com/modules/qgPEvL0eqESy91PTOgxb/JiWUK30JND4DSf1Ezt7z/Egf8zv24F.js\";import CMSProjectCard from\"https://framerusercontent.com/modules/ZFyDTuzE04Wdwmm0qjJj/bMpzwdDZSkS5ZcE8pbOk/e3REAk7za.js\";const CMSProjectCardFonts=getFonts(CMSProjectCard);const MotionDivWithFX=withFX(motion.div);const CMSProjectCardControls=getPropertyControls(CMSProjectCard);const cycleOrder=[\"RTGYAeymH\"];const serializationHash=\"framer-8R2pT\";const variantClassNames={RTGYAeymH:\"framer-v-11pxqjl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:100,y:0};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableEnumMap={Desktop:\"gXEZJMakQ\",Laptop:\"K5gcWJMOF\",Mobile:\"Wp3R8HTLO\",Tablet:\"BGpW6kyeE\"};const getProps=({breakpoint,height,id,tap,width,...props})=>{var _humanReadableEnumMap_breakpoint,_ref,_ref1;return{...props,aRwFd9dp3:(_ref1=(_ref=(_humanReadableEnumMap_breakpoint=humanReadableEnumMap[breakpoint])!==null&&_humanReadableEnumMap_breakpoint!==void 0?_humanReadableEnumMap_breakpoint:breakpoint)!==null&&_ref!==void 0?_ref:props.aRwFd9dp3)!==null&&_ref1!==void 0?_ref1:\"gXEZJMakQ\",gOfsDo1lu:tap!==null&&tap!==void 0?tap:props.gOfsDo1lu};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,gOfsDo1lu,aRwFd9dp3,oF2BzFZaOOcXy_8kNe,bYZi6LXHnOcXy_8kNe,RQZLa5liaOcXy_8kNe,AqDPD_4vvOcXy_8kNe,jAD26vPGfOcXy_8kNe,PZ75C08SlOcXy_8kNe,idOcXy_8kNe,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"RTGYAeymH\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const tap1x9pr88=activeVariantCallback(async(...args)=>{if(gOfsDo1lu){const res=await gOfsDo1lu(...args);if(res===false)return false;}});const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?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(serializationHash,...sharedStyleClassNames,\"framer-11pxqjl\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"RTGYAeymH\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1as03v0\",layoutDependency:layoutDependency,layoutId:\"OcXy_8kNe\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Project,type:\"Collection\"},select:[{name:\"oF2BzFZaO\",type:\"Identifier\"},{name:\"bYZi6LXHn\",type:\"Identifier\"},{name:\"RQZLa5lia\",type:\"Identifier\"},{name:\"AqDPD_4vv\",type:\"Identifier\"},{name:\"jAD26vPGf\",type:\"Identifier\"},{name:\"PZ75C08Sl\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{name:\"ha1t72Lne\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"6\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({oF2BzFZaO:oF2BzFZaOOcXy_8kNe,bYZi6LXHn:bYZi6LXHnOcXy_8kNe,RQZLa5lia:RQZLa5liaOcXy_8kNe,AqDPD_4vv:AqDPD_4vvOcXy_8kNe,jAD26vPGf:jAD26vPGfOcXy_8kNe,PZ75C08Sl:PZ75C08SlOcXy_8kNe,id:idOcXy_8kNe},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`OcXy_8kNe-${idOcXy_8kNe}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oF2BzFZaO:oF2BzFZaOOcXy_8kNe},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oF2BzFZaO:\"marriott\"},unresolvedPathSlugs:{oF2BzFZaO:{collectionId:\"Egf8zv24F\",collectionItemId:\"m1KZmkl_Y\"}},webPageId:\"H5HYMhBD0\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-14ga1iu-container\",\"data-framer-name\":\"CMS Project Card\",layoutDependency:layoutDependency,layoutId:\"UBKBQ0zdk-container\",name:\"CMS Project Card\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CMSProjectCard,{height:\"100%\",heroImage:toResponsiveImage(PZ75C08SlOcXy_8kNe),id:\"UBKBQ0zdk\",layoutId:\"UBKBQ0zdk\",link:resolvedLinks[0],name:\"CMS Project Card\",style:{width:\"100%\"},tag1:AqDPD_4vvOcXy_8kNe,tag2:jAD26vPGfOcXy_8kNe,tag3:\"\",tag4:\"\",tap:tap1x9pr88,title:bYZi6LXHnOcXy_8kNe,tool1:\"OTV7PWx4f\",tool2:\"OTV7PWx4f\",tool3:\"OTV7PWx4f\",variant:aRwFd9dp3,width:\"100%\",year:RQZLa5liaOcXy_8kNe})})})})})},idOcXy_8kNe);})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8R2pT.framer-1oqczmp, .framer-8R2pT .framer-1oqczmp { display: block; }\",\".framer-8R2pT.framer-11pxqjl { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 748px; }\",\".framer-8R2pT .framer-1as03v0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-8R2pT .framer-14ga1iu-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8R2pT.framer-11pxqjl, .framer-8R2pT .framer-1as03v0 { gap: 0px; } .framer-8R2pT.framer-11pxqjl > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-8R2pT.framer-11pxqjl > :first-child, .framer-8R2pT .framer-1as03v0 > :first-child { margin-top: 0px; } .framer-8R2pT.framer-11pxqjl > :last-child, .framer-8R2pT .framer-1as03v0 > :last-child { margin-bottom: 0px; } .framer-8R2pT .framer-1as03v0 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 575\n * @framerIntrinsicWidth 748\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"gOfsDo1lu\":\"tap\",\"aRwFd9dp3\":\"breakpoint\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVYTtDgtvi=withCSS(Component,css,\"framer-8R2pT\");export default FramerVYTtDgtvi;FramerVYTtDgtvi.displayName=\"Project 6\";FramerVYTtDgtvi.defaultProps={height:575,width:748};addPropertyControls(FramerVYTtDgtvi,{gOfsDo1lu:{title:\"Tap\",type:ControlType.EventHandler},aRwFd9dp3:(CMSProjectCardControls===null||CMSProjectCardControls===void 0?void 0:CMSProjectCardControls[\"variant\"])&&{...CMSProjectCardControls[\"variant\"],defaultValue:\"gXEZJMakQ\",description:undefined,hidden:undefined,title:\"Breakpoint\"}});addFonts(FramerVYTtDgtvi,[{explicitInter:true,fonts:[]},...CMSProjectCardFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVYTtDgtvi\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"748\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"gOfsDo1lu\\\":\\\"tap\\\",\\\"aRwFd9dp3\\\":\\\"breakpoint\\\"}\",\"framerIntrinsicHeight\":\"575\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (461de17)\nimport{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,PathVariablesContext,ResolveLinks,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Project from\"https://framerusercontent.com/modules/qgPEvL0eqESy91PTOgxb/JiWUK30JND4DSf1Ezt7z/Egf8zv24F.js\";import CMSProjectCard from\"https://framerusercontent.com/modules/ZFyDTuzE04Wdwmm0qjJj/bMpzwdDZSkS5ZcE8pbOk/e3REAk7za.js\";const CMSProjectCardFonts=getFonts(CMSProjectCard);const MotionDivWithFX=withFX(motion.div);const CMSProjectCardControls=getPropertyControls(CMSProjectCard);const cycleOrder=[\"c39Gf8D0d\"];const serializationHash=\"framer-LGHvF\";const variantClassNames={c39Gf8D0d:\"framer-v-1xhrwqk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:100,y:0};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableEnumMap={Desktop:\"gXEZJMakQ\",Laptop:\"K5gcWJMOF\",Mobile:\"Wp3R8HTLO\",Tablet:\"BGpW6kyeE\"};const getProps=({breakpoint,height,id,tap,width,...props})=>{var _humanReadableEnumMap_breakpoint,_ref,_ref1;return{...props,gOfsDo1lu:tap!==null&&tap!==void 0?tap:props.gOfsDo1lu,L_xKT8Q1h:(_ref1=(_ref=(_humanReadableEnumMap_breakpoint=humanReadableEnumMap[breakpoint])!==null&&_humanReadableEnumMap_breakpoint!==void 0?_humanReadableEnumMap_breakpoint:breakpoint)!==null&&_ref!==void 0?_ref:props.L_xKT8Q1h)!==null&&_ref1!==void 0?_ref1:\"gXEZJMakQ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,gOfsDo1lu,L_xKT8Q1h,oF2BzFZaOxpE2VDQji,bYZi6LXHnxpE2VDQji,RQZLa5liaxpE2VDQji,AqDPD_4vvxpE2VDQji,jAD26vPGfxpE2VDQji,bT4QHqBPOxpE2VDQji,XSckhVC0hxpE2VDQji,PZ75C08SlxpE2VDQji,idxpE2VDQji,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"c39Gf8D0d\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const tap1x9pr88=activeVariantCallback(async(...args)=>{if(gOfsDo1lu){const res=await gOfsDo1lu(...args);if(res===false)return false;}});const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?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(serializationHash,...sharedStyleClassNames,\"framer-1xhrwqk\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"c39Gf8D0d\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-z49n9o\",layoutDependency:layoutDependency,layoutId:\"xpE2VDQji\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Project,type:\"Collection\"},select:[{name:\"oF2BzFZaO\",type:\"Identifier\"},{name:\"bYZi6LXHn\",type:\"Identifier\"},{name:\"RQZLa5lia\",type:\"Identifier\"},{name:\"AqDPD_4vv\",type:\"Identifier\"},{name:\"jAD26vPGf\",type:\"Identifier\"},{name:\"bT4QHqBPO\",type:\"Identifier\"},{name:\"XSckhVC0h\",type:\"Identifier\"},{name:\"PZ75C08Sl\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{name:\"ha1t72Lne\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"4\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({oF2BzFZaO:oF2BzFZaOxpE2VDQji,bYZi6LXHn:bYZi6LXHnxpE2VDQji,RQZLa5lia:RQZLa5liaxpE2VDQji,AqDPD_4vv:AqDPD_4vvxpE2VDQji,jAD26vPGf:jAD26vPGfxpE2VDQji,bT4QHqBPO:bT4QHqBPOxpE2VDQji,XSckhVC0h:XSckhVC0hxpE2VDQji,PZ75C08Sl:PZ75C08SlxpE2VDQji,id:idxpE2VDQji},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`xpE2VDQji-${idxpE2VDQji}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oF2BzFZaO:oF2BzFZaOxpE2VDQji},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oF2BzFZaO:\"ennabl-design-system\"},unresolvedPathSlugs:{oF2BzFZaO:{collectionId:\"Egf8zv24F\",collectionItemId:\"U01qw71e5\"}},webPageId:\"H5HYMhBD0\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-5bbh55-container\",\"data-framer-name\":\"CMS Project Card\",layoutDependency:layoutDependency,layoutId:\"VePFNxotd-container\",name:\"CMS Project Card\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CMSProjectCard,{height:\"100%\",heroImage:toResponsiveImage(PZ75C08SlxpE2VDQji),id:\"VePFNxotd\",layoutId:\"VePFNxotd\",link:resolvedLinks[0],name:\"CMS Project Card\",style:{width:\"100%\"},tag1:AqDPD_4vvxpE2VDQji,tag2:jAD26vPGfxpE2VDQji,tag3:bT4QHqBPOxpE2VDQji,tag4:XSckhVC0hxpE2VDQji,tap:tap1x9pr88,title:bYZi6LXHnxpE2VDQji,tool1:\"hA1xvU08x\",tool2:\"OTV7PWx4f\",tool3:\"hA1xvU08x\",variant:L_xKT8Q1h,width:\"100%\",year:RQZLa5liaxpE2VDQji})})})})})},idxpE2VDQji);})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LGHvF.framer-16fyeju, .framer-LGHvF .framer-16fyeju { display: block; }\",\".framer-LGHvF.framer-1xhrwqk { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 748px; }\",\".framer-LGHvF .framer-z49n9o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-LGHvF .framer-5bbh55-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LGHvF.framer-1xhrwqk, .framer-LGHvF .framer-z49n9o { gap: 0px; } .framer-LGHvF.framer-1xhrwqk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-LGHvF.framer-1xhrwqk > :first-child, .framer-LGHvF .framer-z49n9o > :first-child { margin-top: 0px; } .framer-LGHvF.framer-1xhrwqk > :last-child, .framer-LGHvF .framer-z49n9o > :last-child { margin-bottom: 0px; } .framer-LGHvF .framer-z49n9o > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 575\n * @framerIntrinsicWidth 748\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"gOfsDo1lu\":\"tap\",\"L_xKT8Q1h\":\"breakpoint\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZf6b1zgc6=withCSS(Component,css,\"framer-LGHvF\");export default FramerZf6b1zgc6;FramerZf6b1zgc6.displayName=\"Project 4\";FramerZf6b1zgc6.defaultProps={height:575,width:748};addPropertyControls(FramerZf6b1zgc6,{gOfsDo1lu:{title:\"Tap\",type:ControlType.EventHandler},L_xKT8Q1h:(CMSProjectCardControls===null||CMSProjectCardControls===void 0?void 0:CMSProjectCardControls[\"variant\"])&&{...CMSProjectCardControls[\"variant\"],defaultValue:\"gXEZJMakQ\",description:undefined,hidden:undefined,title:\"Breakpoint\"}});addFonts(FramerZf6b1zgc6,[{explicitInter:true,fonts:[]},...CMSProjectCardFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZf6b1zgc6\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"575\",\"framerVariables\":\"{\\\"gOfsDo1lu\\\":\\\"tap\\\",\\\"L_xKT8Q1h\\\":\\\"breakpoint\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"748\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["murmur2", "r", "a", "e", "c", "Arc", "withCSS", "props", "hasChildren", "j", "isCanvas", "RenderTarget", "showCustomPath", "isCircle", "cylinder", "path", "createPath", "childPath", "viewBox", "firstChild", "getFirstChild", "svgChild", "svgChildCanvas", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "svgString", "Gn", "canvasFrame", "attributes", "element", "splitAndReplace", "attributes1", "element1", "id", "murmur2", "alignmentValue", "motion", "Arc_default", "addPropertyControls", "ControlType", "type", "rotate", "slots", "child", "string", "flip", "cylinderTop", "cylinderBottom", "TagFonts", "getFonts", "sMQlNKlsE_default", "ToolControls", "getPropertyControls", "IGjrqV4mz_default", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "isSet", "value", "toResponsiveImage", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "ye1EiZoAJ", "bU7L0536W", "p4rZq6uQz", "YCKmhdmPr", "RXcVXRQ4s", "diVRPUgeu", "N2HzhBq84", "pzloCY8iX", "y6aNHM_xQ", "dsM1rCK7x", "uakrRrTrY", "qRFI8uRTK", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapyeyk2g", "args", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "Link", "u", "RichText", "x", "Image2", "css", "Framere3REAk7za", "withCSS", "e3REAk7za_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "CMSProjectCardFonts", "getFonts", "e3REAk7za_default", "MotionDivWithFX", "withFX", "motion", "CMSProjectCardControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "toResponsiveImage", "value", "QueryData", "query", "children", "data", "useQueryData", "Transition", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "breakpoint", "height", "id", "tap", "width", "props", "_humanReadableEnumMap_breakpoint", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "gOfsDo1lu", "kkGkq0EuJ", "oF2BzFZaOgGnlWtp7v", "bYZi6LXHngGnlWtp7v", "RQZLa5liagGnlWtp7v", "AqDPD_4vvgGnlWtp7v", "jAD26vPGfgGnlWtp7v", "PZ75C08SlgGnlWtp7v", "idgGnlWtp7v", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "tap1x9pr88", "args", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "Egf8zv24F_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "MotionDivWithFX", "e3REAk7za_default", "css", "Framerfr2HqDBSg", "withCSS", "fr2HqDBSg_default", "addPropertyControls", "ControlType", "CMSProjectCardControls", "addFonts", "CMSProjectCardFonts", "CMSProjectCardFonts", "getFonts", "e3REAk7za_default", "MotionDivWithFX", "withFX", "motion", "CMSProjectCardControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "toResponsiveImage", "value", "QueryData", "query", "children", "data", "useQueryData", "Transition", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "breakpoint", "height", "id", "tap", "width", "props", "_humanReadableEnumMap_breakpoint", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "gOfsDo1lu", "Lk2lUdnKX", "oF2BzFZaOJnpMLhqE0", "bYZi6LXHnJnpMLhqE0", "RQZLa5liaJnpMLhqE0", "AqDPD_4vvJnpMLhqE0", "jAD26vPGfJnpMLhqE0", "PZ75C08SlJnpMLhqE0", "idJnpMLhqE0", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "tap1x9pr88", "args", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "Egf8zv24F_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "MotionDivWithFX", "e3REAk7za_default", "css", "FramerK2JTrQuDk", "withCSS", "K2JTrQuDk_default", "addPropertyControls", "ControlType", "CMSProjectCardControls", "addFonts", "CMSProjectCardFonts", "FeatherFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "Link", "u", "css", "FramerOjn714o1I", "withCSS", "Ojn714o1I_default", "addPropertyControls", "ControlType", "addFonts", "CMSProjectCardFonts", "getFonts", "e3REAk7za_default", "MotionDivWithFX", "withFX", "motion", "CMSProjectCardControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "toResponsiveImage", "value", "QueryData", "query", "children", "data", "useQueryData", "Transition", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "breakpoint", "height", "id", "tap", "width", "props", "_humanReadableEnumMap_breakpoint", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "gOfsDo1lu", "aRwFd9dp3", "oF2BzFZaOOcXy_8kNe", "bYZi6LXHnOcXy_8kNe", "RQZLa5liaOcXy_8kNe", "AqDPD_4vvOcXy_8kNe", "jAD26vPGfOcXy_8kNe", "PZ75C08SlOcXy_8kNe", "idOcXy_8kNe", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "tap1x9pr88", "args", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "Egf8zv24F_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "MotionDivWithFX", "e3REAk7za_default", "css", "FramerVYTtDgtvi", "withCSS", "VYTtDgtvi_default", "addPropertyControls", "ControlType", "CMSProjectCardControls", "addFonts", "CMSProjectCardFonts", "CMSProjectCardFonts", "getFonts", "e3REAk7za_default", "MotionDivWithFX", "withFX", "motion", "CMSProjectCardControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "toResponsiveImage", "value", "QueryData", "query", "children", "data", "useQueryData", "Transition", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "breakpoint", "height", "id", "tap", "width", "props", "_humanReadableEnumMap_breakpoint", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "gOfsDo1lu", "L_xKT8Q1h", "oF2BzFZaOxpE2VDQji", "bYZi6LXHnxpE2VDQji", "RQZLa5liaxpE2VDQji", "AqDPD_4vvxpE2VDQji", "jAD26vPGfxpE2VDQji", "bT4QHqBPOxpE2VDQji", "XSckhVC0hxpE2VDQji", "PZ75C08SlxpE2VDQji", "idxpE2VDQji", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "tap1x9pr88", "args", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "Egf8zv24F_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "MotionDivWithFX", "e3REAk7za_default", "css", "FramerZf6b1zgc6", "withCSS", "Zf6b1zgc6_default", "addPropertyControls", "ControlType", "CMSProjectCardControls", "addFonts", "CMSProjectCardFonts"]
}
