{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/wc2yUVD68wk4nq4PEOBW/fWy3jjwtIvQYameXyede/LedMatrix_Prod.js", "ssg:https://framerusercontent.com/modules/r1E29VTC4FFPNKh20jmR/iqMER8ub0KjvR5OIwQ8A/b2hXDnNIk.js", "ssg:https://framerusercontent.com/modules/tpw87DUqpfk5PJsGOMcN/WHV2Y7PULwgRIYM1p47P/fGFr0ydpW.js", "ssg:https://framerusercontent.com/modules/pyxQ7ogd2VDIawJLZOKF/gvClzljuzb507cyETuJC/jH4FtTzf2.js", "ssg:https://framerusercontent.com/modules/AeKWNmggX9Xwcq0eAxPK/0AaIKPVabyUM4Luw7v9J/ARyOuxXD6.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicHeight 300\n * @framerIntrinsicWidth 300\n */export default function LedMatrix(props){const{shapeType,size,gap,primaryColor,secondaryColor,radius,probability,animSpeed}=props;const extractRGBColorFromString=str=>{const rgbRegex=/(rgba|rgb)\\(.*?\\)/g;const match=str.match(rgbRegex);return match?match[0]:\"#ffffff\";};const formattedPrimaryColor=extractRGBColorFromString(primaryColor);const formattedSecondaryColor=extractRGBColorFromString(secondaryColor);const canvasRef=useRef(null);const getColor=()=>Math.random()<probability/100?formattedPrimaryColor:formattedSecondaryColor;// Dynamically adjust canvas size and initialize\nconst adjustCanvasSize=()=>{const canvas=canvasRef.current;if(canvas){// Adjust canvas resolution based on its displayed size for sharp rendering\ncanvas.width=canvas.offsetWidth;canvas.height=canvas.offsetHeight;}};// Initialize with dynamic positioning, delay, and duration\nconst initialize=(ctx,width,height)=>{const shapes=[];for(let y=0;y<height;y+=size+gap){for(let x=0;x<width;x+=size+gap){shapes.push({x,y,delay:Math.random()*(-99.9*animSpeed+10099.9),duration:Math.random()*(-99.9*animSpeed+10099.9),startTime:performance.now()+Math.random()*5e3,color:getColor(),shapeType,radius:size/2});}}return shapes;};// Draw squares based on their state\nconst draw=(ctx,shapes,width,height)=>{const currentTime=performance.now();shapes.forEach(shape=>{let timeElapsed=currentTime-shape.startTime;if(timeElapsed>shape.delay+shape.duration){shape.startTime=currentTime+shape.delay;shape.color=getColor();}ctx.fillStyle=shape.color;if(shape.shapeType===\"Square\"){ctx.fillRect(shape.x,shape.y,size,size);}else{ctx.beginPath();ctx.arc(shape.x+shape.radius,shape.y+shape.radius,shape.radius,0,2*Math.PI);ctx.fill();}});};useEffect(()=>{const canvas=canvasRef.current;const ctx=canvas.getContext(\"2d\");let squares=[];const render=()=>{// Clear the canvas and redraw\nctx.clearRect(0,0,canvas.width,canvas.height);draw(ctx,squares,canvas.width,canvas.height);requestAnimationFrame(render);};const resizeObserver=new ResizeObserver(entries=>{adjustCanvasSize();for(let entry of entries){squares=initialize(ctx,entry.contentRect.width,entry.contentRect.height);}});resizeObserver.observe(canvas);requestAnimationFrame(render);return()=>{resizeObserver.unobserve(canvas);};},[props]);return /*#__PURE__*/_jsx(motion.div,{...props,style:{borderRadius:`${radius}px`,...props.style},children:/*#__PURE__*/_jsx(\"canvas\",{ref:canvasRef,style:{width:\"100%\",height:\"100%\",borderRadius:\"inherit\"}})});}LedMatrix.displayName=\"LED Matrix\";addPropertyControls(LedMatrix,{shapeType:{title:\"Shape\",type:ControlType.Enum,options:[\"Square\",\"Circle\"],optionTitles:[\"Square\",\"Circle\"],defaultValue:\"Square\"},size:{title:\"Size\",type:ControlType.Number,description:\"Small sizes might impact performance in Framer, but they won't affect your live website. If you need a smaller size and Framer starts lagging, remember to hide the component by setting 'visible' to 'no', then reload the project. Set the component back to visible once you're done editing the website and ready to publish.\",defaultValue:10},gap:{title:\"Gap\",type:ControlType.Number,defaultValue:2},primaryColor:{title:\"Accent\",type:ControlType.Color,defaultValue:\"#059AFF\"},secondaryColor:{title:\"Secondary\",type:ControlType.Color,defaultValue:\"#1A1C1D\"},radius:{title:\"Radius\",type:ControlType.Number,defaultValue:0},probability:{title:\"Accent Amount\",type:ControlType.Number,description:\"The higher the number, the more accent color will be displayed.\",defaultValue:4,min:0,max:100},animSpeed:{title:\"Speed\",type:ControlType.Number,defaultValue:90,min:1,max:100,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"LedMatrix\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"300\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"300\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LedMatrix_Prod.map", "// Generated by Framer (677c5d1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-LaNQD\";const variantClassNames={c3GJlaVJS:\"framer-v-c4w7si\"};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 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:\"c3GJlaVJS\",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(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"c3GJlaVJS\",scopeId:\"b2hXDnNIk\",children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/W9rbGNEoyL4sL0BQ2PYjLCiSxPU.png\"},className:`${cx(scopingClassNames,\"framer-c4w7si\",className,classNames)} framer-1czijdk`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"c3GJlaVJS\",ref:refBinding,style:{...style}})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LaNQD.framer-1czijdk, .framer-LaNQD .framer-1czijdk { display: block; }\",\".framer-LaNQD.framer-c4w7si { height: 41px; position: relative; text-decoration: none; width: 82px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 41\n * @framerIntrinsicWidth 82\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerb2hXDnNIk=withCSS(Component,css,\"framer-LaNQD\");export default Framerb2hXDnNIk;Framerb2hXDnNIk.displayName=\"Logo\";Framerb2hXDnNIk.defaultProps={height:41,width:82};addFonts(Framerb2hXDnNIk,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerb2hXDnNIk\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"41\",\"framerIntrinsicWidth\":\"82\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./b2hXDnNIk.map", "// Generated by Framer (839a2be)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter-regular\",\"GF;Inter-700\",\"GF;Inter-700italic\",\"GF;Inter-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTcPtxhiJ-Ek-7MeA.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTc2dthiJ-Ek-7MeA.woff2\",weight:\"400\"}]}];export const css=['.framer-rRqCo .framer-styles-preset-iujzwl:not(.rich-text-wrapper), .framer-rRqCo .framer-styles-preset-iujzwl.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 1.65em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-6272639e-1f43-4ddf-9be8-ac1279ba4f62, #313336); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-rRqCo .framer-styles-preset-iujzwl:not(.rich-text-wrapper), .framer-rRqCo .framer-styles-preset-iujzwl.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 1.65em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-6272639e-1f43-4ddf-9be8-ac1279ba4f62, #313336); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-rRqCo .framer-styles-preset-iujzwl:not(.rich-text-wrapper), .framer-rRqCo .framer-styles-preset-iujzwl.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.65em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-6272639e-1f43-4ddf-9be8-ac1279ba4f62, #313336); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-rRqCo\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (839a2be)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/tpw87DUqpfk5PJsGOMcN/WHV2Y7PULwgRIYM1p47P/fGFr0ydpW.js\";const enabledGestures={D5y93RE_i:{hover:true}};const cycleOrder=[\"D5y93RE_i\",\"s9mwTfJAf\"];const serializationHash=\"framer-Ibr1I\";const variantClassNames={D5y93RE_i:\"framer-v-1p2pasr\",s9mwTfJAf:\"framer-v-bhg8rb\"};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 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.create(React.Fragment);const humanReadableVariantMap={Desktop:\"D5y93RE_i\",Mobile:\"s9mwTfJAf\"};const getProps=({height,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,hEq5HHp_B:link!==null&&link!==void 0?link:props.hEq5HHp_B,tLlJgHX5x:(_ref=title!==null&&title!==void 0?title:props.tLlJgHX5x)!==null&&_ref!==void 0?_ref:\"Resume\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"D5y93RE_i\"};};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,tLlJgHX5x,hEq5HHp_B,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"D5y93RE_i\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];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(Link,{href:hEq5HHp_B,openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1p2pasr\",className,classNames)} framer-e3a346`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"D5y93RE_i\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,...style},variants:{\"D5y93RE_i-hover\":{backgroundColor:\"rgb(237, 237, 237)\"},s9mwTfJAf:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({\"D5y93RE_i-hover\":{\"data-framer-name\":undefined},s9mwTfJAf:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.25em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-62dfa7b2-be36-402e-b261-7cb449f1a3f8, rgba(0, 0, 0, 0.6)))\"},children:\"Resume\"})}),className:\"framer-8m5tsc\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"BrBZK8y0U\",style:{\"--extracted-r6o4lv\":\"var(--token-62dfa7b2-be36-402e-b261-7cb449f1a3f8, rgba(0, 0, 0, 0.6))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:tLlJgHX5x,variants:{\"D5y93RE_i-hover\":{\"--extracted-r6o4lv\":\"var(--token-6272639e-1f43-4ddf-9be8-ac1279ba4f62, rgb(49, 51, 54))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"D5y93RE_i-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.25em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6272639e-1f43-4ddf-9be8-ac1279ba4f62, rgb(49, 51, 54)))\"},children:\"Resume\"})})},s9mwTfJAf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-iujzwl\",\"data-styles-preset\":\"fGFr0ydpW\",children:\"Resume\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ibr1I.framer-e3a346, .framer-Ibr1I .framer-e3a346 { display: block; }\",\".framer-Ibr1I.framer-1p2pasr { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 25px; justify-content: center; overflow: hidden; padding: 0px 8px 0px 8px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Ibr1I .framer-8m5tsc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ibr1I.framer-1p2pasr { gap: 0px; } .framer-Ibr1I.framer-1p2pasr > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Ibr1I.framer-1p2pasr > :first-child { margin-top: 0px; } .framer-Ibr1I.framer-1p2pasr > :last-child { margin-bottom: 0px; } }\",\".framer-Ibr1I.framer-v-bhg8rb.framer-1p2pasr { align-content: flex-start; align-items: flex-start; cursor: unset; height: min-content; justify-content: flex-start; padding: 6px 0px 6px 0px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 25\n * @framerIntrinsicWidth 65\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"s9mwTfJAf\":{\"layout\":[\"auto\",\"auto\"]},\"B8cPPTEw5\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"tLlJgHX5x\":\"title\",\"hEq5HHp_B\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjH4FtTzf2=withCSS(Component,css,\"framer-Ibr1I\");export default FramerjH4FtTzf2;FramerjH4FtTzf2.displayName=\"Navigation / Navbar | Tabs\";FramerjH4FtTzf2.defaultProps={height:25,width:65};addPropertyControls(FramerjH4FtTzf2,{variant:{options:[\"D5y93RE_i\",\"s9mwTfJAf\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},tLlJgHX5x:{defaultValue:\"Resume\",displayTextArea:false,title:\"Title\",type:ControlType.String},hEq5HHp_B:{title:\"Link\",type:ControlType.Link}});addFonts(FramerjH4FtTzf2,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.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/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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjH4FtTzf2\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"s9mwTfJAf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"B8cPPTEw5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"tLlJgHX5x\\\":\\\"title\\\",\\\"hEq5HHp_B\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"65\",\"framerIntrinsicHeight\":\"25\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f26e712)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/3eDJxX3iZQKorWFFCfW6/jeH37u2ZFUT7k6o9qGyE/DhSpCG5lG.js\";import Logo from\"https://framerusercontent.com/modules/r1E29VTC4FFPNKh20jmR/iqMER8ub0KjvR5OIwQ8A/b2hXDnNIk.js\";import ButtonsDefaultButton from\"https://framerusercontent.com/modules/sp1o74LNLRsP6ip2pN9v/CHseEFLbz5mERyN77voC/HBq9H_5n1.js\";import NavigationNavbarTabs from\"https://framerusercontent.com/modules/pyxQ7ogd2VDIawJLZOKF/gvClzljuzb507cyETuJC/jH4FtTzf2.js\";const LogoFonts=getFonts(Logo);const PhosphorFonts=getFonts(Phosphor);const NavigationNavbarTabsFonts=getFonts(NavigationNavbarTabs);const ButtonsDefaultButtonFonts=getFonts(ButtonsDefaultButton);const cycleOrder=[\"dtJLvUF3B\",\"Dke47A5JM\",\"TNBfBZ6do\"];const serializationHash=\"framer-pQT4A\";const variantClassNames={Dke47A5JM:\"framer-v-67bdba\",dtJLvUF3B:\"framer-v-1bd4gl6\",TNBfBZ6do:\"framer-v-le46dk\"};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 transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition2};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Mobile | Open\":\"TNBfBZ6do\",Desktop:\"dtJLvUF3B\",Mobile:\"Dke47A5JM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"dtJLvUF3B\"};};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,VSPLnF0hO,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dtJLvUF3B\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapsa0g3x=activeVariantCallback(async(...args)=>{setVariant(\"dtJLvUF3B\");});const onTap1lq9ie7=activeVariantCallback(async(...args)=>{if(VSPLnF0hO){const res=await VSPLnF0hO(...args);if(res===false)return false;}setVariant(\"fq2W2tDq0\");});const onClickomku1q=activeVariantCallback(async(...args)=>{setVariant(\"DHWbrL7SI\");});const onClick1cmxc23=activeVariantCallback(async(...args)=>{setVariant(\"TNBfBZ6do\");});const onClick3ynjzy=activeVariantCallback(async(...args)=>{setVariant(\"Dke47A5JM\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"Dke47A5JM\",\"TNBfBZ6do\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"Dke47A5JM\",\"TNBfBZ6do\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"TNBfBZ6do\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1bd4gl6\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"dtJLvUF3B\",ref:refBinding,style:{...style},...addPropertyOverrides({Dke47A5JM:{\"data-framer-name\":\"Mobile\"},TNBfBZ6do:{\"data-framer-name\":\"Mobile | Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dt6tgk\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"zUqavkauw\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ht0fu1\",\"data-border\":true,\"data-framer-name\":\"Navigation / Navbar | Badge\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"x4BLfa_dR\",onTap:onTapsa0g3x,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(49, 51, 54, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},whileHover:animation,...addPropertyOverrides({Dke47A5JM:{onTap:onTap1lq9ie7,whileHover:undefined},TNBfBZ6do:{onTap:onTap1lq9ie7,whileHover:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,width:\"82px\",y:(componentViewport?.y||0)+(28+((componentViewport?.height||97)-56-41)/2)+0+0,...addPropertyOverrides({Dke47A5JM:{y:(componentViewport?.y||0)+24+(((componentViewport?.height||89)-48-41)/2+0+0)+0+0},TNBfBZ6do:{y:(componentViewport?.y||0)+24+(((componentViewport?.height||272.5)-38-201)/2+0+0)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fem3wy-container\",layoutDependency:layoutDependency,layoutId:\"UenrO6dDr-container\",nodeId:\"UenrO6dDr\",rendersWithMotion:true,scopeId:\"ARyOuxXD6\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"UenrO6dDr\",layoutId:\"UenrO6dDr\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f9tn5\",\"data-framer-name\":\"Right Container\",layoutDependency:layoutDependency,layoutId:\"t5BVdlLx0\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d0z6vs\",\"data-border\":true,\"data-framer-name\":\"Tabs\",layoutDependency:layoutDependency,layoutId:\"zOYhAHYQd\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(33, 33, 33, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 0.6021873017743928px 1.3248120639036642px -1.5px rgba(0, 0, 0, 0.1874), 0px 2.288533303243457px 5.034773267135606px -3px rgba(0, 0, 0, 0.15772), 0px 10px 22px -4.5px rgba(0, 0, 0, 0.022)\"},children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":pUd11Avsc\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"Odg9eKM_e\",openInNewTab:false,scopeId:\"ARyOuxXD6\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1m2lnbv framer-8j379s\",\"data-framer-name\":\"Navigation / Navbar | Tabs\",layoutDependency:layoutDependency,layoutId:\"Odg9eKM_e\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.25em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-62dfa7b2-be36-402e-b261-7cb449f1a3f8, rgba(0, 0, 0, 0.6)))\"},children:\"Portfolio\"})}),className:\"framer-1gs03vk\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"aAOpyNzmT\",style:{\"--extracted-r6o4lv\":\"var(--token-62dfa7b2-be36-402e-b261-7cb449f1a3f8, rgba(0, 0, 0, 0.6))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":oEiEnGfWS\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"iTmINw2Re\",openInNewTab:false,scopeId:\"ARyOuxXD6\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ufqoz0 framer-8j379s\",\"data-framer-name\":\"Navigation / Navbar | Tabs\",layoutDependency:layoutDependency,layoutId:\"iTmINw2Re\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.25em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-62dfa7b2-be36-402e-b261-7cb449f1a3f8, rgba(0, 0, 0, 0.6)))\"},children:\"About\"})}),className:\"framer-7ag7py\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"vhMBhNFXS\",style:{\"--extracted-r6o4lv\":\"var(--token-62dfa7b2-be36-402e-b261-7cb449f1a3f8, rgba(0, 0, 0, 0.6))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(Link,{href:\"www.linkedin.com/in/dana--rasmussen\",motionChild:true,nodeId:\"fffusFHs9\",openInNewTab:true,scopeId:\"ARyOuxXD6\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-5xh4yd framer-8j379s\",\"data-framer-name\":\"Buttons / Default Button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"fffusFHs9\",onTap:onTapsa0g3x,style:{backgroundColor:\"var(--token-78536696-a0c7-4f97-8b48-2e86ef558da0, rgb(15, 15, 15))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-fctlx4\",\"data-styles-preset\":\"DhSpCG5lG\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b242c080-773a-48fb-8a2b-8e8a2bb68741, rgb(255, 255, 255)))\"},children:\"Contact\"})}),className:\"framer-1csykm6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iwNhE3Pwk\",style:{\"--extracted-r6o4lv\":\"var(--token-b242c080-773a-48fb-8a2b-8e8a2bb68741, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10s8023-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"VppYZk6uS-container\",nodeId:\"VppYZk6uS\",rendersWithMotion:true,scopeId:\"ARyOuxXD6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-330684e0-b816-4946-8c05-0e910e001e39, rgb(17, 17, 18))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"List\",id:\"VppYZk6uS\",layoutId:\"VppYZk6uS\",mirrored:false,onClick:onClickomku1q,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({Dke47A5JM:{onClick:onClick1cmxc23},TNBfBZ6do:{iconSelection:\"X\",onClick:onClick3ynjzy}},baseVariant,gestureVariant)})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-e2151t\",\"data-border\":true,\"data-framer-name\":\"Dropdown Container\",layoutDependency:layoutDependency,layoutId:\"JKTqeEwnb\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-4fd04fa6-48f1-4a84-ab1c-c52136a03274, rgba(0, 0, 0, 0.1))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"blur(10px)\",backgroundColor:\"var(--token-1c842d3a-df1c-476f-ab12-c35bd7a21843, rgb(242, 242, 242))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,WebkitBackdropFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-100vp9m\",\"data-framer-name\":\"Dropdown\",layoutDependency:layoutDependency,layoutId:\"VkFdGl8tQ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cp9c14\",layoutDependency:layoutDependency,layoutId:\"gZw7YBI5Z\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,...addPropertyOverrides({TNBfBZ6do:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 720px) - 24px, 1px)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||272.5)-38-201)/2+41+12)+0+16+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-k8uzl2-container\",layoutDependency:layoutDependency,layoutId:\"IwrN6048v-container\",nodeId:\"IwrN6048v\",rendersWithMotion:true,scopeId:\"ARyOuxXD6\",children:/*#__PURE__*/_jsx(NavigationNavbarTabs,{height:\"100%\",hEq5HHp_B:\"https://drive.google.com/file/d/1RGcjyhtjoBAQ9_0sgCfXyepLshVXMerE/view?usp=sharing\",id:\"IwrN6048v\",layoutId:\"IwrN6048v\",style:{width:\"100%\"},tLlJgHX5x:\"Resume\",variant:\"s9mwTfJAf\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,...addPropertyOverrides({TNBfBZ6do:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 720px) - 24px, 1px)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||272.5)-38-201)/2+41+12)+0+16+0+0+31}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xpj0xa-container\",layoutDependency:layoutDependency,layoutId:\"ZnvXl2Jqm-container\",nodeId:\"ZnvXl2Jqm\",rendersWithMotion:true,scopeId:\"ARyOuxXD6\",children:/*#__PURE__*/_jsx(NavigationNavbarTabs,{height:\"100%\",hEq5HHp_B:\"linkedin.com\",id:\"ZnvXl2Jqm\",layoutId:\"ZnvXl2Jqm\",style:{width:\"100%\"},tLlJgHX5x:\"Linkedin\",variant:\"s9mwTfJAf\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,...addPropertyOverrides({TNBfBZ6do:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 720px) - 24px, 1px)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||272.5)-38-201)/2+41+12)+0+16+80}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xnyjcl-container\",layoutDependency:layoutDependency,layoutId:\"l77pl2uz3-container\",nodeId:\"l77pl2uz3\",rendersWithMotion:true,scopeId:\"ARyOuxXD6\",children:/*#__PURE__*/_jsx(ButtonsDefaultButton,{gPzyD3R2S:\"Button title\",height:\"100%\",id:\"l77pl2uz3\",layoutId:\"l77pl2uz3\",style:{height:\"100%\",width:\"100%\"},variant:\"gBUZdHd3Z\",width:\"100%\"})})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pQT4A.framer-8j379s, .framer-pQT4A .framer-8j379s { display: block; }\",\".framer-pQT4A.framer-1bd4gl6 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 28px 44px 28px 44px; position: relative; width: 1194px; }\",\".framer-pQT4A .framer-1dt6tgk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 10; }\",\".framer-pQT4A .framer-1ht0fu1 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-pQT4A .framer-fem3wy-container { flex: none; height: 41px; position: relative; width: 82px; }\",\".framer-pQT4A .framer-1f9tn5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-pQT4A .framer-d0z6vs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 40px; justify-content: flex-start; overflow: hidden; padding: 0px 10px 0px 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-pQT4A .framer-1m2lnbv, .framer-pQT4A .framer-ufqoz0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 25px; justify-content: center; overflow: hidden; padding: 0px 8px 0px 8px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-pQT4A .framer-1gs03vk, .framer-pQT4A .framer-7ag7py, .framer-pQT4A .framer-1csykm6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-pQT4A .framer-5xh4yd { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: hidden; padding: 12px 16px 12px 16px; position: relative; text-decoration: none; width: 86px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-pQT4A .framer-10s8023-container { flex: none; height: 30px; position: relative; width: 30px; z-index: 2; }\",\".framer-pQT4A .framer-e2151t { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 720px; overflow: hidden; padding: 0px 12px 0px 12px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 10; }\",\".framer-pQT4A .framer-100vp9m { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 0px 12px 0px; position: relative; width: 1px; }\",\".framer-pQT4A .framer-cp9c14 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pQT4A .framer-k8uzl2-container, .framer-pQT4A .framer-1xpj0xa-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-pQT4A .framer-1xnyjcl-container { flex: none; height: 40px; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pQT4A.framer-1bd4gl6, .framer-pQT4A .framer-1ht0fu1, .framer-pQT4A .framer-1f9tn5, .framer-pQT4A .framer-d0z6vs, .framer-pQT4A .framer-1m2lnbv, .framer-pQT4A .framer-ufqoz0, .framer-pQT4A .framer-5xh4yd, .framer-pQT4A .framer-e2151t, .framer-pQT4A .framer-100vp9m, .framer-pQT4A .framer-cp9c14 { gap: 0px; } .framer-pQT4A.framer-1bd4gl6 > *, .framer-pQT4A .framer-1ht0fu1 > *, .framer-pQT4A .framer-5xh4yd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-pQT4A.framer-1bd4gl6 > :first-child, .framer-pQT4A .framer-1ht0fu1 > :first-child, .framer-pQT4A .framer-1f9tn5 > :first-child, .framer-pQT4A .framer-d0z6vs > :first-child, .framer-pQT4A .framer-5xh4yd > :first-child, .framer-pQT4A .framer-e2151t > :first-child { margin-left: 0px; } .framer-pQT4A.framer-1bd4gl6 > :last-child, .framer-pQT4A .framer-1ht0fu1 > :last-child, .framer-pQT4A .framer-1f9tn5 > :last-child, .framer-pQT4A .framer-d0z6vs > :last-child, .framer-pQT4A .framer-5xh4yd > :last-child, .framer-pQT4A .framer-e2151t > :last-child { margin-right: 0px; } .framer-pQT4A .framer-1f9tn5 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-pQT4A .framer-d0z6vs > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-pQT4A .framer-1m2lnbv > *, .framer-pQT4A .framer-ufqoz0 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-pQT4A .framer-1m2lnbv > :first-child, .framer-pQT4A .framer-ufqoz0 > :first-child, .framer-pQT4A .framer-100vp9m > :first-child, .framer-pQT4A .framer-cp9c14 > :first-child { margin-top: 0px; } .framer-pQT4A .framer-1m2lnbv > :last-child, .framer-pQT4A .framer-ufqoz0 > :last-child, .framer-pQT4A .framer-100vp9m > :last-child, .framer-pQT4A .framer-cp9c14 > :last-child { margin-bottom: 0px; } .framer-pQT4A .framer-e2151t > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-pQT4A .framer-100vp9m > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-pQT4A .framer-cp9c14 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",\".framer-pQT4A.framer-v-67bdba.framer-1bd4gl6 { flex-direction: column; padding: 24px; width: 380px; }\",\".framer-pQT4A.framer-v-67bdba .framer-1dt6tgk, .framer-pQT4A.framer-v-le46dk .framer-1dt6tgk, .framer-pQT4A.framer-v-le46dk .framer-e2151t { flex: none; width: 100%; }\",\".framer-pQT4A.framer-v-67bdba .framer-1ht0fu1, .framer-pQT4A.framer-v-le46dk .framer-1ht0fu1 { will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pQT4A.framer-v-67bdba.framer-1bd4gl6 { gap: 0px; } .framer-pQT4A.framer-v-67bdba.framer-1bd4gl6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-pQT4A.framer-v-67bdba.framer-1bd4gl6 > :first-child { margin-top: 0px; } .framer-pQT4A.framer-v-67bdba.framer-1bd4gl6 > :last-child { margin-bottom: 0px; } }\",\".framer-pQT4A.framer-v-le46dk.framer-1bd4gl6 { flex-direction: column; gap: 12px; padding: 24px 24px 14px 24px; width: 380px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pQT4A.framer-v-le46dk.framer-1bd4gl6 { gap: 0px; } .framer-pQT4A.framer-v-le46dk.framer-1bd4gl6 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-pQT4A.framer-v-le46dk.framer-1bd4gl6 > :first-child { margin-top: 0px; } .framer-pQT4A.framer-v-le46dk.framer-1bd4gl6 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-pQT4A[data-border=\"true\"]::after, .framer-pQT4A [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 97\n * @framerIntrinsicWidth 1194\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Dke47A5JM\":{\"layout\":[\"fixed\",\"auto\"]},\"TNBfBZ6do\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerARyOuxXD6=withCSS(Component,css,\"framer-pQT4A\");export default FramerARyOuxXD6;FramerARyOuxXD6.displayName=\"Navigation / Navbar\";FramerARyOuxXD6.defaultProps={height:97,width:1194};addPropertyControls(FramerARyOuxXD6,{variant:{options:[\"dtJLvUF3B\",\"Dke47A5JM\",\"TNBfBZ6do\"],optionTitles:[\"Desktop\",\"Mobile\",\"Mobile | Open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerARyOuxXD6,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.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/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\"}]},...LogoFonts,...PhosphorFonts,...NavigationNavbarTabsFonts,...ButtonsDefaultButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerARyOuxXD6\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"97\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1194\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Dke47A5JM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TNBfBZ6do\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ARyOuxXD6.map"],
  "mappings": "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",
  "names": ["LedMatrix", "props", "shapeType", "size", "gap", "primaryColor", "secondaryColor", "radius", "probability", "animSpeed", "extractRGBColorFromString", "str", "rgbRegex", "match", "formattedPrimaryColor", "formattedSecondaryColor", "canvasRef", "pe", "getColor", "adjustCanvasSize", "canvas", "initialize", "ctx", "width", "height", "shapes", "y", "x", "draw", "currentTime", "shape", "ue", "squares", "render", "resizeObserver", "entries", "entry", "p", "motion", "addPropertyControls", "ControlType", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "Link", "Image2", "getLoadingLazyAtYPosition", "css", "Framerb2hXDnNIk", "withCSS", "b2hXDnNIk_default", "addFonts", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "tLlJgHX5x", "hEq5HHp_B", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerjH4FtTzf2", "withCSS", "jH4FtTzf2_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "LogoFonts", "getFonts", "b2hXDnNIk_default", "PhosphorFonts", "Icon", "NavigationNavbarTabsFonts", "jH4FtTzf2_default", "ButtonsDefaultButtonFonts", "HBq9H_5n1_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "VSPLnF0hO", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapsa0g3x", "args", "onTap1lq9ie7", "onClickomku1q", "onClick1cmxc23", "onClick3ynjzy", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Link", "RichText2", "css", "FramerARyOuxXD6", "withCSS", "ARyOuxXD6_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
