{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/8Z3YtMrSUR9Op5iJcjAF/x0MHKqZGveKtIompP5YD/Shortcut.js", "ssg:https://framerusercontent.com/modules/z4aCAwOC5rlY7sKVDzmM/HflOxwnqlqgR3Gj2HEKA/VdWzJlFyU.js", "ssg:https://framerusercontent.com/modules/kMbKz07aUxxBrd1CzZVU/7MuqRIHL52HGrrewY4wB/SJ0ksHul6.js", "ssg:https://framerusercontent.com/modules/2LcPegJZJHdmyB8mEfn3/KTjWRU7fvEyqhMAVWr1R/qf1QHAlqq.js", "ssg:https://framerusercontent.com/modules/LV9trClbmNwd5PVj9l8y/L4rFqMGNzGSwRZpGTGF3/Icons.js", "ssg:https://framerusercontent.com/modules/3Xi2AslpcDRhfyCVPmx3/d0Oobr5BHnVqZJQyMdGn/storage.js", "ssg:https://framer.com/m/cache-YMiL.js@b9aplVZjN51x28yfNK16", "ssg:https://framerusercontent.com/modules/uU1mtMKXsrVAg8N5hW7w/PCK1x1QLNluYNoEoapwx/cachedIndex.js", "ssg:https://framerusercontent.com/modules/K9JZRwJcE6slDAf8rUmh/mJ54py1Ecnn1RoC4N1m4/fakeResults.js", "ssg:https://framerusercontent.com/modules/TwRgbWuhHeB95MPifel4/YW8Hlm59FG3PajbrVsaR/fuzzySearch.js", "ssg:https://framerusercontent.com/modules/MWsEnYfRnoOQq31DN4ql/C71JVnvNwV2CrPvApXBB/utils.js", "ssg:https://framerusercontent.com/modules/MyBp84Z0p9nUcMimVMnY/y5F4AGWJ6syeuoB7ebKM/useSearch.js", "ssg:https://framerusercontent.com/modules/PJVBcBLmDteTEAZh3J9Z/keXJyjyE9VnzUcDMayjg/browser.js", "ssg:https://framerusercontent.com/modules/Gzef0nFihI9m9vZG45th/lIUxbZcreiDm2GzUkt3y/useCallbackOnMouseMove.js", "ssg:https://framerusercontent.com/modules/eAnjm75CdfYT1Zz4BIaz/7KDSfnnyD1T3Ap75L4m8/scrollIntoView.js", "ssg:https://framerusercontent.com/modules/tV9haTHllpHHc9Fjue2H/Xy775u0FJg3K1GQc1Cd9/SearchModal.js", "ssg:https://framerusercontent.com/modules/hqEf5wXaAewP8VPuaZ98/5A0QGVeEr2cwheQpIuEG/useViewportSizeState.js", "ssg:https://framerusercontent.com/modules/6wAE2eMb2Tl3zrU7u4UL/HPzg2Uk7mwtBmDzvGbWF/Search.js", "ssg:https://framerusercontent.com/modules/yXQovqtEr5CwcNFRy3SO/Wygi9BhDB5R5SFwSMoKl/Tc9AgKTHx.js", "ssg:https://framerusercontent.com/modules/esSdvrXOWiWHOVssHDeU/k4JwPpubOEhBWppFyeBQ/Up7mEIh0R.js", "ssg:https://framerusercontent.com/modules/emHjML1EqkZIJ7PRpid5/Vlsod50LhaGuJx595n3P/gpRp3R8Rl.js", "ssg:https://framerusercontent.com/modules/p94NoC8OUBnlBwDRLcgE/YnYbv0sS4esdibbMG4tY/fPysVn71m.js", "ssg:https://framerusercontent.com/modules/8kzsUxpL1AfhzDX9k0n1/81uVKtpHihMAvhpfgmwL/qf1QHAlqq.js", "ssg:https://framerusercontent.com/modules/72CQctgfkIbcW3D7EyZt/UwLtfYnmVkWYshJNsi5Y/WqAyL1RRr.js", "ssg:https://framerusercontent.com/modules/4QEezGtYbEA6aPynOWGq/ECG7HT3D4wJijSQBi04q/j5IaOZgUN.js", "ssg:https://framerusercontent.com/modules/jWLQb6o3TFIaz8a2wNXU/sjcOBVTxuNIvGQJolKpK/TBPKTqzVa.js", "ssg:https://framerusercontent.com/modules/83a5xi9z6svcFrYhmXbC/VK5tD7jW7w2phDFPqeM3/RiVQHH_e7.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";function withKey(Component,key){return props=>{const btnRef=useRef(null);const handleKeyDown=event=>{if(event.key==key){console.log(Component);console.log(props);btnRef.current.click();}};useEffect(()=>{document.addEventListener(\"keydown\",handleKeyDown);return()=>{document.removeEventListener(\"keydown\",handleKeyDown);};},[]);return /*#__PURE__*/ _jsx(Component,{...props,ref:btnRef});};}// Numbers\nexport const with1=Component=>withKey(Component,\"1\");export const with2=Component=>withKey(Component,\"2\");export const with3=Component=>withKey(Component,\"3\");export const with4=Component=>withKey(Component,\"4\");export const with5=Component=>withKey(Component,\"5\");export const with6=Component=>withKey(Component,\"6\");export const with7=Component=>withKey(Component,\"7\");export const with8=Component=>withKey(Component,\"8\");export const with9=Component=>withKey(Component,\"9\");// Arrow keys\nexport const withUpArrow=Component=>withKey(Component,\"ArrowUp\");export const withDownArrow=Component=>withKey(Component,\"ArrowDown\");export const withLeftArrow=Component=>withKey(Component,\"ArrowLeft\");export const withRightArrow=Component=>withKey(Component,\"ArrowRight\");// Special keys\nexport const withEnter=Component=>withKey(Component,\"enter\");// Search trigger with / & ESC as exit\nexport const withBackSlash=Component=>{return props=>{const handleKeyDown=event=>{const modal=document.querySelector(\".__framer-search-modal-container\");if(event.key===\"/\"){const searchButton=document.querySelector('[aria-label=\"Search Icon\"]');if(searchButton){searchButton.click();setTimeout(()=>{// Find the clear button and click it after a delay\nconst clearButton=document.querySelector(\".__framer-search-clear-button\");if(clearButton){clearButton.click();}},50) // Adjust delay as needed\n;// Show the div \"__framer-search-modal-container\"\nif(modal){modal.style.display=\"block\";}}}else if(event.key===\"Escape\"&&modal){// Hide the modal when Escape key is pressed\nmodal.style.display=\"none\";}};useEffect(()=>{document.addEventListener(\"keydown\",handleKeyDown);return()=>{document.removeEventListener(\"keydown\",handleKeyDown);};},[]);return /*#__PURE__*/ _jsx(Component,{...props});};};\nexport const __FramerMetadata__ = {\"exports\":{\"with1\":{\"type\":\"reactHoc\",\"name\":\"with1\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"with3\":{\"type\":\"reactHoc\",\"name\":\"with3\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withLeftArrow\":{\"type\":\"reactHoc\",\"name\":\"withLeftArrow\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"with5\":{\"type\":\"reactHoc\",\"name\":\"with5\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withDownArrow\":{\"type\":\"reactHoc\",\"name\":\"withDownArrow\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRightArrow\":{\"type\":\"reactHoc\",\"name\":\"withRightArrow\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withUpArrow\":{\"type\":\"reactHoc\",\"name\":\"withUpArrow\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"with9\":{\"type\":\"reactHoc\",\"name\":\"with9\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"with4\":{\"type\":\"reactHoc\",\"name\":\"with4\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"with7\":{\"type\":\"reactHoc\",\"name\":\"with7\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"with2\":{\"type\":\"reactHoc\",\"name\":\"with2\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"with6\":{\"type\":\"reactHoc\",\"name\":\"with6\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"with8\":{\"type\":\"reactHoc\",\"name\":\"with8\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withEnter\":{\"type\":\"reactHoc\",\"name\":\"withEnter\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withBackSlash\":{\"type\":\"reactHoc\",\"name\":\"withBackSlash\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Shortcut.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"Inter\"]);export const fonts=[];export const css=['.framer-k8NGv .framer-styles-preset-1dx84zc:not(.rich-text-wrapper), .framer-k8NGv .framer-styles-preset-1dx84zc.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.125em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-ad295223-71a1-4c83-8af3-ed488a713d13, #2e2e2e); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-k8NGv .framer-styles-preset-1dx84zc:not(.rich-text-wrapper), .framer-k8NGv .framer-styles-preset-1dx84zc.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.125em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-ad295223-71a1-4c83-8af3-ed488a713d13, #2e2e2e); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-k8NGv .framer-styles-preset-1dx84zc:not(.rich-text-wrapper), .framer-k8NGv .framer-styles-preset-1dx84zc.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.125em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-ad295223-71a1-4c83-8af3-ed488a713d13, #2e2e2e); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-k8NGv\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (70e732d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/z4aCAwOC5rlY7sKVDzmM/HflOxwnqlqgR3Gj2HEKA/VdWzJlFyU.js\";const cycleOrder=[\"y14__d0IV\",\"Qu3kedQPy\",\"INGVDYYj9\"];const variantClassNames={INGVDYYj9:\"framer-v-14fnwt4\",Qu3kedQPy:\"framer-v-jt87dj\",y14__d0IV:\"framer-v-xeglyg\"};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={\"With Number\":\"y14__d0IV\",\"With Symbol\":\"Qu3kedQPy\",None:\"INGVDYYj9\"};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"tween\"}};const transformTemplate=(_,t)=>`translateX(-50%) ${t}`;const numberToString=(value,options={})=>{const fallbackLocale=\"en-US\";const{locale=fallbackLocale,useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits}=options;const formatOptions={useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits};const number=Number(value);try{return number.toLocaleString(locale,formatOptions);}catch{try{return number.toLocaleString(fallbackLocale,formatOptions);}catch{return number.toLocaleString();}}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"y14__d0IV\",title:bCVqqWcV6=\"Home\",count:rwp61Wo7w=1,symbol:oBrVvkH1j=\"/\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"y14__d0IV\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const isDisplayed=()=>{if(baseVariant===\"INGVDYYj9\")return false;return true;};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-tg4Or\",sharedStyle.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-xeglyg\",className),\"data-border\":true,\"data-framer-name\":\"With Number\",layoutDependency:layoutDependency,layoutId:\"y14__d0IV\",ref:ref,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":'var(--token-38338969-1488-4b0e-bde3-5efb806e1815, rgb(62, 62, 62)) /* {\"name\":\"Tooltip/Border\"} */',\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-ad360a71-b2ab-423e-95e7-c29267d8dc6c, rgb(241, 241, 241))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,...style},transition:transition,...addPropertyOverrides({INGVDYYj9:{\"data-framer-name\":\"None\"},Qu3kedQPy:{\"data-framer-name\":\"With Symbol\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-1dx84zc\",\"data-styles-preset\":\"VdWzJlFyU\",children:\"Home\"})}),className:\"framer-1niksk0\",\"data-framer-name\":\"Home\",layoutDependency:layoutDependency,layoutId:\"e0d2OYBLC\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:bCVqqWcV6,transition:transition,verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/ _jsx(motion.div,{className:\"framer-vxzn6n\",\"data-framer-name\":\"Key Press\",layoutDependency:layoutDependency,layoutId:\"i8VVxb0D9\",style:{backgroundColor:\"var(--token-389eb274-1664-418a-bd71-115146fe7009, rgb(221, 221, 221))\",borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3,boxShadow:\"inset 0px -2px 0px 0px rgba(0, 0, 0, 0.20000000298023224)\"},transition:transition,children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"1\"})}),className:\"framer-9ctakl\",\"data-framer-name\":\"Key\",layoutDependency:layoutDependency,layoutId:\"bYaQBfXKj\",style:{\"--extracted-r6o4lv\":\"var(--token-ad295223-71a1-4c83-8af3-ed488a713d13, rgb(46, 46, 46))\",\"--framer-paragraph-spacing\":\"0px\"},text:numberToString(rwp61Wo7w,{locale:\"\",notation:\"standard\",style:\"decimal\"}),transformTemplate:transformTemplate,transition:transition,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({Qu3kedQPy:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"/\"})}),text:oBrVvkH1j}},baseVariant,gestureVariant)})})]})})});});const css=['.framer-tg4Or [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-tg4Or .framer-ocpdw3 { display: block; }\",\".framer-tg4Or .framer-xeglyg { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 4px 6px 4px 6px; position: relative; width: min-content; will-change: transform; }\",\".framer-tg4Or .framer-1niksk0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-tg4Or .framer-vxzn6n { flex: none; height: 16px; overflow: hidden; position: relative; width: 16px; will-change: transform; }\",\".framer-tg4Or .framer-9ctakl { flex: none; height: auto; left: 50%; position: absolute; top: 1px; white-space: pre-wrap; width: 12px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tg4Or .framer-xeglyg { gap: 0px; } .framer-tg4Or .framer-xeglyg > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-tg4Or .framer-xeglyg > :first-child { margin-left: 0px; } .framer-tg4Or .framer-xeglyg > :last-child { margin-right: 0px; } }\",\".framer-tg4Or.framer-v-14fnwt4 .framer-xeglyg { height: 24px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 65\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Qu3kedQPy\":{\"layout\":[\"auto\",\"auto\"]},\"INGVDYYj9\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"bCVqqWcV6\":\"title\",\"rwp61Wo7w\":\"count\",\"oBrVvkH1j\":\"symbol\"}\n */ const FramerSJ0ksHul6=withCSS(Component,css,\"framer-tg4Or\");export default FramerSJ0ksHul6;FramerSJ0ksHul6.displayName=\"Misc/Tooltip\";FramerSJ0ksHul6.defaultProps={height:24,width:65};addPropertyControls(FramerSJ0ksHul6,{variant:{options:[\"y14__d0IV\",\"Qu3kedQPy\",\"INGVDYYj9\"],optionTitles:[\"With Number\",\"With Symbol\",\"None\"],title:\"Variant\",type:ControlType.Enum},bCVqqWcV6:{defaultValue:\"Home\",displayTextArea:false,title:\"Title\",type:ControlType.String},rwp61Wo7w:{defaultValue:1,displayStepper:true,title:\"Count\",type:ControlType.Number},oBrVvkH1j:{defaultValue:\"/\",displayTextArea:false,title:\"Symbol\",type:ControlType.String}});addFonts(FramerSJ0ksHul6,[...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSJ0ksHul6\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"65\",\"framerIntrinsicHeight\":\"24\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"bCVqqWcV6\\\":\\\"title\\\",\\\"rwp61Wo7w\\\":\\\"count\\\",\\\"oBrVvkH1j\\\":\\\"symbol\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Qu3kedQPy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"INGVDYYj9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SJ0ksHul6.map", "// Generated by Framer (c75d380)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import MiscTooltip from\"https://framerusercontent.com/modules/kMbKz07aUxxBrd1CzZVU/7MuqRIHL52HGrrewY4wB/SJ0ksHul6.js\";const MiscTooltipFonts=getFonts(MiscTooltip);const cycleOrder=[\"uDBBUBKT3\",\"DHVjDjckf\",\"mJEXGb3O8\",\"TZXbRR6NW\",\"AvnfjMHJ9\",\"zpYm4r81n\",\"xFB4awY76\",\"RUqy2GLMF\"];const serializationHash=\"framer-vO4u5\";const variantClassNames={AvnfjMHJ9:\"framer-v-7d1fc6\",DHVjDjckf:\"framer-v-15dri7s\",mJEXGb3O8:\"framer-v-1gty7r8\",RUqy2GLMF:\"framer-v-1hloapr\",TZXbRR6NW:\"framer-v-1y56uct\",uDBBUBKT3:\"framer-v-ri6lw0\",xFB4awY76:\"framer-v-1gl2e8w\",zpYm4r81n:\"framer-v-1qtb0bq\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;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 humanReadableVariantMap={About:\"zpYm4r81n\",Contact:\"xFB4awY76\",Home:\"uDBBUBKT3\",Search:\"RUqy2GLMF\",Stack:\"AvnfjMHJ9\",Store:\"TZXbRR6NW\",Work:\"DHVjDjckf\",Writing:\"mJEXGb3O8\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"uDBBUBKT3\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"uDBBUBKT3\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"DHVjDjckf\",\"mJEXGb3O8\",\"TZXbRR6NW\",\"AvnfjMHJ9\",\"zpYm4r81n\",\"xFB4awY76\",\"RUqy2GLMF\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"DHVjDjckf\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"mJEXGb3O8\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"TZXbRR6NW\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"AvnfjMHJ9\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"zpYm4r81n\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"xFB4awY76\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"RUqy2GLMF\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ri6lw0\",className,classNames),\"data-framer-name\":\"Home\",initial:variant,layoutDependency:layoutDependency,layoutId:\"uDBBUBKT3\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({AvnfjMHJ9:{\"data-framer-name\":\"Stack\"},DHVjDjckf:{\"data-framer-name\":\"Work\"},mJEXGb3O8:{\"data-framer-name\":\"Writing\"},RUqy2GLMF:{\"data-framer-name\":\"Search\"},TZXbRR6NW:{\"data-framer-name\":\"Store\"},xFB4awY76:{\"data-framer-name\":\"Contact\"},zpYm4r81n:{\"data-framer-name\":\"About\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1frbiwa\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"qY7zx0EMZ\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-15k35t9\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"S9m3O6omz\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 24\"><path d=\"M 3 10.963 C 3 10.024 3 9.554 3.129 9.128 C 3.244 8.751 3.432 8.4 3.682 8.095 C 3.965 7.751 4.356 7.49 5.137 6.969 L 9.337 4.169 C 10.3 3.528 10.781 3.207 11.301 3.083 C 11.761 2.972 12.239 2.972 12.699 3.083 C 13.219 3.207 13.7 3.528 14.663 4.169 L 18.863 6.969 C 19.644 7.49 20.035 7.751 20.318 8.095 C 20.568 8.4 20.756 8.751 20.87 9.128 C 21 9.554 21 10.024 21 10.963 L 21 15.595 C 21 17.275 21 18.115 20.673 18.756 C 20.385 19.321 19.927 19.78 19.362 20.067 C 18.72 20.395 17.88 20.395 16.2 20.395 L 7.8 20.395 C 6.12 20.395 5.28 20.395 4.638 20.067 C 4.074 19.78 3.615 19.321 3.327 18.756 C 3 18.115 3 17.275 3 15.595 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:3810879743,withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-i9546c\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"HAwvrb4K4\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 18 3 C 17.204 3 16.441 3.316 15.879 3.879 C 15.316 4.441 15 5.204 15 6 L 15 18 C 15 18.796 15.316 19.559 15.879 20.121 C 16.441 20.684 17.204 21 18 21 C 18.796 21 19.559 20.684 20.121 20.121 C 20.684 19.559 21 18.796 21 18 C 21 17.204 20.684 16.441 20.121 15.879 C 19.559 15.316 18.796 15 18 15 L 6 15 C 5.204 15 4.441 15.316 3.879 15.879 C 3.316 16.441 3 17.204 3 18 C 3 18.796 3.316 19.559 3.879 20.121 C 4.441 20.684 5.204 21 6 21 C 6.796 21 7.559 20.684 8.121 20.121 C 8.684 19.559 9 18.796 9 18 L 9 6 C 9 5.204 8.684 4.441 8.121 3.879 C 7.559 3.316 6.796 3 6 3 C 5.204 3 4.441 3.316 3.879 3.879 C 3.316 4.441 3 5.204 3 6 C 3 6.796 3.316 7.559 3.879 8.121 C 4.441 8.684 5.204 9 6 9 L 18 9 C 18.796 9 19.559 8.684 20.121 8.121 C 20.684 7.559 21 6.796 21 6 C 21 5.204 20.684 4.441 20.121 3.879 C 19.559 3.316 18.796 3 18 3 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:2915540734,withExternalLayout:true,...addPropertyOverrides({DHVjDjckf:{svgContentId:254435866}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-aaazu8\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"NMSTGKgsd\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 2 22 L 22 22 M 6.765 16.887 L 3.776 17.425 C 3.097 17.547 2.5 16.96 2.612 16.278 L 3.113 13.235 L 12.945 3.432 C 13.081 3.295 13.242 3.186 13.42 3.112 C 13.598 3.038 13.789 3 13.982 3 C 14.175 3 14.366 3.038 14.544 3.112 C 14.722 3.186 14.883 3.295 15.019 3.432 L 16.568 4.981 C 16.705 5.117 16.813 5.278 16.888 5.456 C 16.962 5.634 17 5.825 17 6.018 C 17 6.211 16.962 6.402 16.888 6.58 C 16.813 6.758 16.705 6.919 16.568 7.055 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:1511691678,withExternalLayout:true,...addPropertyOverrides({mJEXGb3O8:{svgContentId:1664522166}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-d898j1\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"J9oeFv9H9\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 21 16.418 L 21 11.998 L 21 10 C 21 8.343 19.657 7 18 7 L 6 7 C 4.343 7 3 8.343 3 10 L 3 11.998 L 3 16.418 C 3 18.022 3 18.824 3.327 19.436 C 3.615 19.975 4.074 20.413 4.638 20.688 C 5.28 21 6.12 21 7.8 21 L 16.2 21 C 17.88 21 18.72 21 19.362 20.688 C 19.927 20.413 20.385 19.975 20.673 19.436 C 21 18.824 21 18.022 21 16.418 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 8 11 L 8 7 C 8 4.791 9.791 3 12 3 L 12 3 C 14.209 3 16 4.791 16 7 L 16 11\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:3424839070,withExternalLayout:true,...addPropertyOverrides({TZXbRR6NW:{svgContentId:621113909}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-tpczen\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"N0TIfdMz1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(4 3.074)\" id=\"ss182922772_1\"><path d=\"M 16 8.463 L 10.544 11.873 C 9.621 12.45 9.16 12.738 8.665 12.851 C 8.227 12.95 7.773 12.95 7.335 12.851 C 6.84 12.738 6.379 12.45 5.456 11.873 L 0 8.463\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 16 12.463 L 10.544 15.873 C 9.621 16.45 9.16 16.738 8.665 16.851 C 8.227 16.95 7.773 16.95 7.335 16.851 C 6.84 16.738 6.379 16.45 5.456 15.873 L 0 12.463\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 16 4.462 L 10.544 1.052 C 9.621 0.476 9.16 0.187 8.665 0.075 C 8.227 -0.025 7.773 -0.025 7.335 0.075 C 6.84 0.187 6.379 0.476 5.456 1.052 L 0 4.462 L 5.456 7.872 C 6.379 8.449 6.84 8.738 7.335 8.85 C 7.773 8.949 8.227 8.949 8.665 8.85 C 9.16 8.738 9.621 8.449 10.544 7.872 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:182922772,withExternalLayout:true,...addPropertyOverrides({AvnfjMHJ9:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(4 3.074)\" id=\"ss3363815916_1\"><path d=\"M 16 8.463 L 10.544 11.873 C 9.621 12.45 9.16 12.738 8.665 12.851 C 8.227 12.95 7.773 12.95 7.335 12.851 C 6.84 12.738 6.379 12.45 5.456 11.873 L 0 8.463\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 16 12.463 L 10.544 15.873 C 9.621 16.45 9.16 16.738 8.665 16.851 C 8.227 16.95 7.773 16.95 7.335 16.851 C 6.84 16.738 6.379 16.45 5.456 15.873 L 0 12.463\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 16 4.462 L 10.544 1.052 C 9.621 0.476 9.16 0.187 8.665 0.075 C 8.227 -0.025 7.773 -0.025 7.335 0.075 C 6.84 0.187 6.379 0.476 5.456 1.052 L 0 4.462 L 5.456 7.872 C 6.379 8.449 6.84 8.738 7.335 8.85 C 7.773 8.949 8.227 8.949 8.665 8.85 C 9.16 8.738 9.621 8.449 10.544 7.872 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:3363815916}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-16wr2zb\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"AQqxF3j6Z\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(5.903 3)\" id=\"ss2945980017_1\"><path d=\"M 10.097 4 C 10.097 6.209 8.306 8 6.097 8 C 3.888 8 2.097 6.209 2.097 4 C 2.097 1.791 3.888 0 6.097 0 C 8.306 0 10.097 1.791 10.097 4 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 6.548 11 C 3.72 11 1.284 12.677 0.18 15.09 C -0.51 16.597 0.891 18 2.548 18 L 10.548 18 C 12.205 18 13.606 16.597 12.917 15.09 C 11.812 12.677 9.376 11 6.548 11 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:2945980017,withExternalLayout:true,...addPropertyOverrides({zpYm4r81n:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(5.903 3)\" id=\"ss3077012862_1\"><path d=\"M 10.097 4 C 10.097 6.209 8.306 8 6.097 8 C 3.888 8 2.097 6.209 2.097 4 C 2.097 1.791 3.888 0 6.097 0 C 8.306 0 10.097 1.791 10.097 4 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 6.548 11 C 3.72 11 1.284 12.677 0.18 15.09 C -0.51 16.597 0.891 18 2.548 18 L 10.548 18 C 12.205 18 13.606 16.597 12.917 15.09 C 11.812 12.677 9.376 11 6.548 11 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:3077012862}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-ybilwt\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"nwIblVRYf\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 20.971 8 L 14.947 12.708 C 13.893 13.528 13.366 13.938 12.784 14.095 C 12.271 14.234 11.729 14.234 11.216 14.095 C 10.634 13.938 10.107 13.528 9.053 12.708 L 3.029 8 M 7.8 19 L 16.2 19 C 17.88 19 18.72 19 19.362 18.673 C 19.927 18.385 20.385 17.926 20.673 17.362 C 21 16.72 21 15.88 21 14.2 L 21 9.8 C 21 8.12 21 7.28 20.673 6.638 C 20.385 6.074 19.927 5.615 19.362 5.327 C 18.72 5 17.88 5 16.2 5 L 7.8 5 C 6.12 5 5.28 5 4.638 5.327 C 4.074 5.615 3.615 6.074 3.327 6.638 C 3 7.28 3 8.12 3 9.8 L 3 14.2 C 3 15.88 3 16.72 3.327 17.362 C 3.615 17.926 4.074 18.385 4.638 18.673 C 5.28 19 6.12 19 7.8 19 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:4238294276,withExternalLayout:true,...addPropertyOverrides({xFB4awY76:{svgContentId:2546451453}},baseVariant,gestureVariant)}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-eukkcx\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"xNMPPgx6I\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 21 21 L 15 15 M 17 10 C 17 10.919 16.819 11.829 16.467 12.679 C 16.115 13.528 15.6 14.3 14.95 14.95 C 14.3 15.6 13.528 16.115 12.679 16.467 C 11.829 16.819 10.919 17 10 17 C 9.081 17 8.171 16.819 7.321 16.467 C 6.472 16.115 5.7 15.6 5.05 14.95 C 4.4 14.3 3.885 13.528 3.533 12.679 C 3.181 11.829 3 10.919 3 10 C 3 8.143 3.737 6.363 5.05 5.05 C 6.363 3.737 8.143 3 10 3 C 11.857 3 13.637 3.737 14.95 5.05 C 16.262 6.363 17 8.143 17 10 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:2476013636,withExternalLayout:true,...addPropertyOverrides({RUqy2GLMF:{svgContentId:1896101779}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kixkyc-container\",layoutDependency:layoutDependency,layoutId:\"Dltsga0Fs-container\",style:{opacity:0},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(MiscTooltip,{count:1,height:\"100%\",id:\"Dltsga0Fs\",layoutId:\"Dltsga0Fs\",symbol:\"/\",title:\"Home\",variant:\"y14__d0IV\",width:\"100%\"})})]})})});});const css=['.framer-vO4u5[data-border=\"true\"]::after, .framer-vO4u5 [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-vO4u5.framer-15nei0d, .framer-vO4u5 .framer-15nei0d { display: block; }\",\".framer-vO4u5.framer-ri6lw0 { height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-vO4u5 .framer-1frbiwa { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-vO4u5 .framer-15k35t9 { flex: none; height: 24px; left: calc(45.83333333333336% - 22px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 22px; }\",\".framer-vO4u5 .framer-i9546c, .framer-vO4u5 .framer-d898j1, .framer-vO4u5 .framer-tpczen, .framer-vO4u5 .framer-16wr2zb, .framer-vO4u5 .framer-ybilwt, .framer-vO4u5 .framer-eukkcx { flex: none; height: 24px; left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-vO4u5 .framer-aaazu8 { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-vO4u5 .framer-kixkyc-container { flex: none; height: auto; left: 48px; position: absolute; top: 50%; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"DHVjDjckf\":{\"layout\":[\"fixed\",\"fixed\"]},\"mJEXGb3O8\":{\"layout\":[\"fixed\",\"fixed\"]},\"TZXbRR6NW\":{\"layout\":[\"fixed\",\"fixed\"]},\"AvnfjMHJ9\":{\"layout\":[\"fixed\",\"fixed\"]},\"zpYm4r81n\":{\"layout\":[\"fixed\",\"fixed\"]},\"xFB4awY76\":{\"layout\":[\"fixed\",\"fixed\"]},\"RUqy2GLMF\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const Framerqf1QHAlqq=withCSS(Component,css,\"framer-vO4u5\");export default Framerqf1QHAlqq;Framerqf1QHAlqq.displayName=\"Menu Item/Active\";Framerqf1QHAlqq.defaultProps={height:24,width:24};addPropertyControls(Framerqf1QHAlqq,{variant:{options:[\"uDBBUBKT3\",\"DHVjDjckf\",\"mJEXGb3O8\",\"TZXbRR6NW\",\"AvnfjMHJ9\",\"zpYm4r81n\",\"xFB4awY76\",\"RUqy2GLMF\"],optionTitles:[\"Home\",\"Work\",\"Writing\",\"Store\",\"Stack\",\"About\",\"Contact\",\"Search\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerqf1QHAlqq,[...MiscTooltipFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerqf1QHAlqq\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"24\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DHVjDjckf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mJEXGb3O8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TZXbRR6NW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"AvnfjMHJ9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zpYm4r81n\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xFB4awY76\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RUqy2GLMF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"24\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qf1QHAlqq.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";export function SearchIcon(props){return /*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",width:props.width,height:props.height,style:{...props.style,color:props.color},children:/*#__PURE__*/ _jsx(\"path\",{d:\"M232.49,215.51,185,168a92.12,92.12,0,1,0-17,17l47.53,47.54a12,12,0,0,0,17-17ZM44,112a68,68,0,1,1,68,68A68.07,68.07,0,0,1,44,112Z\",fill:\"currentColor\"})});}export function ClearIcon(props){return /*#__PURE__*/ _jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",...props,children:[/*#__PURE__*/ _jsx(\"rect\",{width:\"256\",height:\"256\",fill:\"none\"}),/*#__PURE__*/ _jsx(\"path\",{d:\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm37.66,130.34a8,8,0,0,1-11.32,11.32L128,139.31l-26.34,26.35a8,8,0,0,1-11.32-11.32L116.69,128,90.34,101.66a8,8,0,0,1,11.32-11.32L128,116.69l26.34-26.35a8,8,0,0,1,11.32,11.32L139.31,128Z\",fill:\"currentColor\"})]});}export function SpinnerIcon(props){const borderWidth=3;return /*#__PURE__*/ _jsxs(\"div\",{style:{position:\"relative\",...props.style},children:[/*#__PURE__*/ _jsx(motion.div,{animate:{rotate:360},transition:{ease:\"linear\",duration:1,repeat:Infinity},style:{borderRadius:100,backgroundImage:`conic-gradient(from 270deg, transparent 0%, ${props.color} 100%)`,width:\"100%\",height:\"100%\"}}),/*#__PURE__*/ _jsx(\"div\",{style:{backgroundColor:props.backgroundColor,borderRadius:100,position:\"absolute\",top:borderWidth,left:borderWidth,bottom:borderWidth,right:borderWidth}})]});}\nexport const __FramerMetadata__ = {\"exports\":{\"ClearIcon\":{\"type\":\"reactComponent\",\"name\":\"ClearIcon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"SpinnerIcon\":{\"type\":\"reactComponent\",\"name\":\"SpinnerIcon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchIcon\":{\"type\":\"reactComponent\",\"name\":\"SearchIcon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Icons.map", "export function Storage(name) {\n    this.ready = new Promise((resolve, reject)=>{\n        var request = window.indexedDB.open(location.origin);\n        request.onupgradeneeded = (e)=>{\n            this.db = e.target[\"result\"];\n            this.db.createObjectStore(\"store\");\n        };\n        request.onsuccess = (e)=>{\n            this.db = e.target[\"result\"];\n            resolve();\n        };\n        request.onerror = (e)=>{\n            this.db = e.target[\"result\"];\n            reject(e);\n        };\n    });\n}\nStorage.prototype.get = function(key) {\n    return this.ready.then(()=>{\n        return new Promise((resolve, reject)=>{\n            var request = this.getStore().get(key);\n            request.onsuccess = (e)=>resolve(e.target.result)\n            ;\n            request.onerror = reject;\n        });\n    });\n};\nStorage.prototype.getStore = function() {\n    return this.db.transaction([\n        \"store\"\n    ], \"readwrite\").objectStore(\"store\");\n};\nStorage.prototype.set = function(key, value) {\n    return this.ready.then(()=>{\n        return new Promise((resolve, reject)=>{\n            var request = this.getStore().put(value, key);\n            request.onsuccess = resolve;\n            request.onerror = reject;\n        });\n    });\n};\nStorage.prototype.delete = function(key, value) {\n    window.indexedDB.deleteDatabase(location.origin);\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"Storage\":{\"type\":\"function\"}}}", "// @ts-ignore\nimport{Storage}from\"https://framerusercontent.com/modules/3Xi2AslpcDRhfyCVPmx3/d0Oobr5BHnVqZJQyMdGn/storage.js\";export const hashCode=s=>s.split(\"\").reduce((a,b)=>{a=(a<<5)-a+b.charCodeAt(0);return a&a;},0);export function corsProxy(url){return`https://cors-anywhere.herokuapp.com/${url}`;}export async function cachedResponse(url,cache=new Storage(\"cache\")){const cacheKey=url;const data=await cache.get(cacheKey);if(data){return data;}else{var req=new XMLHttpRequest;req.open(\"GET\",url,true);req.responseType=\"blob\";return new Promise((resolve,reject)=>{req.onload=async function(){if(this.status===200){await cache.set(url,this.response);resolve(this.response);}else{reject(new Error(`Response status ${this.status} ${this.statusText}`));}};req.onerror=function(error){reject(error);};req.send();});}}export async function setCachedData(url,dataToCache,cache=new Storage(\"cache\")){const cacheKey=url;const data=await cache.set(cacheKey,dataToCache);}export async function checkForCachedData(url,cache=new Storage(\"cache\")){const cacheKey=url;const data=await cache.get(cacheKey);if(data){return data;}else{return null;}}\nexport const __FramerMetadata__ = {\"exports\":{\"hashCode\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"setCachedData\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"checkForCachedData\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"corsProxy\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"cachedResponse\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cache.map", "import{checkForCachedData,setCachedData}from\"https://framer.com/m/cache-YMiL.js@b9aplVZjN51x28yfNK16\";const VERSION=1;const defaultLocaleId=\"default\";export function isDefaultLocaleId(localeId){return!localeId||localeId===\"default\";}const INDEX_KEY=\"searchIndexCache\";function getIndexKey(localeId){if(isDefaultLocaleId(localeId))return INDEX_KEY;return`${INDEX_KEY}-${localeId}`;}const METADATA_KEY=\"searchCacheMetadata\";function getMetadataKey(localeId){if(isDefaultLocaleId(localeId))return METADATA_KEY;return`${METADATA_KEY}-${localeId}`;}export async function getCachedIndex(localeId){// A check here for metadata can be added later if we need to\n// migrate or expire the index. Though most likely, any version change\n// should result in deleting the cache and starting again.\nconst indexKey=getIndexKey(localeId);const cachedIndex=await checkForCachedData(indexKey);if(cachedIndex){return cachedIndex;}}export function setCachedIndex(localeId,index){const indexKey=getIndexKey(localeId);setCachedData(indexKey,index);const metadata={version:VERSION,timestamp:Date.now()};const metadataKey=getMetadataKey(localeId);setCachedData(metadataKey,metadata);}\nexport const __FramerMetadata__ = {\"exports\":{\"getCachedIndex\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"setCachedIndex\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isDefaultLocaleId\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cachedIndex.map", "// Fake example data used for when the search component is in preview mode.\n// Note that the `url` value is used as a key in React, so it needs to be unique.\nexport const fakeResults={\"/\":{version:1,title:\"Example Search Result\",description:\"Description of search result.\",keywords:\"\",h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],p:[],url:\"/example-url/\",codeblock:[]},\"/example-1\":{version:1,title:\"Publish your Site to Search\",description:\"Try Site Search to instantly search your Framer site content.\",keywords:\"\",h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],p:[],url:\"/example-url/1/\",codeblock:[]},\"/example-2\":{version:1,title:\"Customise your Site Search\",description:\"Personalize everything from corner radius, to icon weight.\",keywords:\"\",h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],p:[],url:\"/example-url/2/\",codeblock:[]}};\nexport const __FramerMetadata__ = {\"exports\":{\"fakeResults\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fakeResults.map", "// This file is based on the Levenshtein algorithm. Originally from Koen but maybe he\n// got it from somewhere else.\nconst peq=new Uint32Array(65536);const myers_32=(a,b)=>{const n=a.length;const m=b.length;const lst=1<<n-1;let pv=-1;let mv=0;let sc=n;let i=n;while(i--){peq[a.charCodeAt(i)]|=1<<i;}for(i=0;i<m;i++){let eq=peq[b.charCodeAt(i)];const xv=eq|mv;eq|=(eq&pv)+pv^pv;mv|=~(eq|pv);pv&=eq;if(mv&lst){sc++;}if(pv&lst){sc--;}mv=mv<<1|1;pv=pv<<1|~(xv|mv);mv&=xv;}i=n;while(i--){peq[a.charCodeAt(i)]=0;}return sc;};const myers_x=(b,a)=>{const n=a.length;const m=b.length;const mhc=[];const phc=[];const hsize=Math.ceil(n/32);const vsize=Math.ceil(m/32);for(let i=0;i<hsize;i++){phc[i]=-1;mhc[i]=0;}let j=0;for(;j<vsize-1;j++){let mv=0;let pv=-1;const start=j*32;const vlen=Math.min(32,m)+start;for(let k=start;k<vlen;k++){peq[b.charCodeAt(k)]|=1<<k;}for(let i1=0;i1<n;i1++){const eq=peq[a.charCodeAt(i1)];const pb=phc[i1/32|0]>>>i1&1;const mb=mhc[i1/32|0]>>>i1&1;const xv=eq|mv;const xh=((eq|mb)&pv)+pv^pv|eq|mb;let ph=mv|~(xh|pv);let mh=pv&xh;if(ph>>>31^pb){phc[i1/32|0]^=1<<i1;}if(mh>>>31^mb){mhc[i1/32|0]^=1<<i1;}ph=ph<<1|pb;mh=mh<<1|mb;pv=mh|~(xv|ph);mv=ph&xv;}for(let k1=start;k1<vlen;k1++){peq[b.charCodeAt(k1)]=0;}}let mv1=0;let pv1=-1;const start1=j*32;const vlen1=Math.min(32,m-start1)+start1;for(let k2=start1;k2<vlen1;k2++){peq[b.charCodeAt(k2)]|=1<<k2;}let score=m;for(let i2=0;i2<n;i2++){const eq1=peq[a.charCodeAt(i2)];const pb1=phc[i2/32|0]>>>i2&1;const mb1=mhc[i2/32|0]>>>i2&1;const xv1=eq1|mv1;const xh1=((eq1|mb1)&pv1)+pv1^pv1|eq1|mb1;let ph1=mv1|~(xh1|pv1);let mh1=pv1&xh1;score+=ph1>>>m-1&1;score-=mh1>>>m-1&1;if(ph1>>>31^pb1){phc[i2/32|0]^=1<<i2;}if(mh1>>>31^mb1){mhc[i2/32|0]^=1<<i2;}ph1=ph1<<1|pb1;mh1=mh1<<1|mb1;pv1=mh1|~(xv1|ph1);mv1=ph1&xv1;}for(let k3=start1;k3<vlen1;k3++){peq[b.charCodeAt(k3)]=0;}return score;};const distance=(a,b)=>{if(a.length<b.length){const tmp=b;b=a;a=tmp;}if(b.length===0){return a.length;}if(a.length<=32){return myers_32(a,b);}return myers_x(a,b);};const closest=(str,arr)=>{let min_distance=Infinity;let min_index=0;for(let i=0;i<arr.length;i++){const dist=distance(str,arr[i]);if(dist<min_distance){min_distance=dist;min_index=i;}}return arr[min_index];};export{closest,distance};\nexport const __FramerMetadata__ = {\"exports\":{\"closest\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"distance\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fuzzySearch.map", "export const localStorageDebugFlag=typeof window!==\"undefined\"&&window.localStorage.getItem(\"__framerDebugSearch\")===\"true\";const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]\\d*|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}export function clampText(text,maxLength){const textLength=text.length;if(textLength<=maxLength){return text;}const slicedText=text.slice(0,maxLength);if(textLength>maxLength){return slicedText+\"\u2026\";}return slicedText;}export function isEmptyObject(object){return Object.keys(object).length===0;}export function createLogger(showOutput){function log(...data){console.log(Date.now(),...data);}function time(label){console.time(label);}function timeEnd(label){console.timeEnd(label);}function noop(){}if(!showOutput){return{log:noop,time:noop,timeEnd:noop};}return{log,time,timeEnd};}export const DEFAULT_FONT_FAMILY=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;export function getFontFamily(theme){var _theme_inputFont,_theme_titleFont,_theme_subtitleFont;if((_theme_inputFont=theme.inputFont)===null||_theme_inputFont===void 0?void 0:_theme_inputFont.fontFamily)return theme.inputFont.fontFamily;if((_theme_titleFont=theme.titleFont)===null||_theme_titleFont===void 0?void 0:_theme_titleFont.fontFamily)return theme.titleFont.fontFamily;if((_theme_subtitleFont=theme.subtitleFont)===null||_theme_subtitleFont===void 0?void 0:_theme_subtitleFont.fontFamily)return theme.subtitleFont.fontFamily;return DEFAULT_FONT_FAMILY;}export function animationKeyFromLayout(layout){return`${layout}Animation`;}export const safeDocument=typeof document!==\"undefined\"?document:null;export const safeWindow=typeof window!==\"undefined\"?window:null;const metaTagSelector='meta[name=\"framer-search-index\"]';export function getMetaTagContent(){const metaTag=safeDocument===null||safeDocument===void 0?void 0:safeDocument.querySelector(metaTagSelector);if(!metaTag)return undefined;const metaTagContent=metaTag.getAttribute(\"content\");return metaTagContent;}export const checkIfOverLimit=()=>{return getMetaTagContent()===\"limit-reached\";};export function stripLocaleSlugFromPath(url,localeSlug){if(!localeSlug)return url;const localeSlugWithSlash=`/${localeSlug}`;if(url.startsWith(localeSlugWithSlash)){return url.slice(localeSlugWithSlash.length);}}\nexport const __FramerMetadata__ = {\"exports\":{\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"checkIfOverLimit\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"createLogger\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"safeDocument\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"animationKeyFromLayout\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DEFAULT_FONT_FAMILY\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"safeWindow\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"clampText\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"stripLocaleSlugFromPath\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getMetaTagContent\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFontFamily\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localStorageDebugFlag\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isEmptyObject\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "// @ts-ignore\nimport{useLocaleInfo}from\"framer\";import{clamp}from\"framer-motion\";import{useEffect,useMemo,useState}from\"react\";import{SearchResultTitleType}from\"https://framerusercontent.com/modules/tV9haTHllpHHc9Fjue2H/Xy775u0FJg3K1GQc1Cd9/SearchModal.js\";import{getCachedIndex,setCachedIndex,isDefaultLocaleId}from\"https://framerusercontent.com/modules/uU1mtMKXsrVAg8N5hW7w/PCK1x1QLNluYNoEoapwx/cachedIndex.js\";import{fakeResults}from\"https://framerusercontent.com/modules/K9JZRwJcE6slDAf8rUmh/mJ54py1Ecnn1RoC4N1m4/fakeResults.js\";import{distance}from\"https://framerusercontent.com/modules/TwRgbWuhHeB95MPifel4/YW8Hlm59FG3PajbrVsaR/fuzzySearch.js\";import{createLogger,localStorageDebugFlag,safeDocument,safeWindow,stripLocaleSlugFromPath}from\"https://framerusercontent.com/modules/MWsEnYfRnoOQq31DN4ql/C71JVnvNwV2CrPvApXBB/utils.js\";const{log,time,timeEnd}=createLogger(localStorageDebugFlag);function isValidUrl(url){try{new URL(url);return true;}catch(_error){return false;}}function splitWords(text){try{// Regex lookbehind is used to ignore ampersands when splitting\n// words. For example \"H&M\" will not be split and is considered as\n// one word, but \"H & M\" will be split.\n// However, some browsers (like Safari iOS 15) don't support\n// lookbehind and will crash. When it's not supported, fallback to\n// a safer regex that always splits ampersands.\nreturn text.split(RegExp(\"[\\\\s.,;!?\\\\p{P}\\\\p{Z}]+(?<!\\\\p{L}&)(?!&\\\\p{L})\",\"u\"));}catch{log(\"Falling back to regex without lookbehind\");return text.split(RegExp(\"[\\\\s.,;!?\\\\p{P}\\\\p{Z}]+\",\"u\"));}}function getUniqueWords(str){const words=splitWords(str).filter(word=>word.trim()&&word.length>0);return new Set(words);}/**\n * Replace accented characters with equivilant non-accented versions and\n * make everything lowercase.\n */function getNormalizedString(text){if(Array.isArray(text)){return text.map(getNormalizedString);}return text.normalize(\"NFD\")// From: https://stackoverflow.com/a/37511463\n.replace(/[\\u0300-\\u036f]/g,\"\").toLowerCase();}function getNormalizedItem(item){const normalizedItem={};for(const[key,value]of Object.entries(item)){if(typeof value===\"string\"){normalizedItem[key]=getNormalizedString(value);continue;}if(Array.isArray(value)){normalizedItem[key]=getNormalizedString(value);continue;}normalizedItem[key]=value;}return normalizedItem;}function getMatchRange(currentRange,start,end){const result={...currentRange};if(start<result.start){result.start=start;}if(end>result.end){result.end=end;}return result;}/**\n * Score index item based on the contents of it's fields such as title, description, headings etc.\n *\n * Note that this does not normalize the item or query. Normalization is expected to happen\n * before passing the data into this.\n */function getScoreForSearchIndexItem(item,query,words,fullQuery){let score=0;const match={title:{start:Infinity,end:0},description:{start:Infinity,end:0}};const urlWords=getUniqueWords(item.url);// Match query based on words in the URL so that random strings inside\n// other strings are not matched.\nif(urlWords.has(query)){score+=10;}// Really boost single word queries that match single word URLs.\nif(words.size===1&&urlWords.size===1&&urlWords.values().next().value===query){score+=score*5;}// Score shorter URLs higher so `/pricing` is before `/lala/pricing`.\nif(score>0){const splitLength=item.url.split(\"/\").length;score+=clamp(10-splitLength,0,splitLength);}const titleWords=getUniqueWords(item.title);// Prefer full word matches in the title.\nif(titleWords.has(query)){score+=10;}const titleIndex=item.title.indexOf(query);if(titleIndex!==-1){score+=10;// TODO: Matches are currently not used, but they can be used in the\n// future to add text highlighting.\nmatch.title=getMatchRange(match.title,titleIndex,titleIndex+query.length);}// If the full query is close to being the heading, score this highly as\n// the user is most likely looking for that exact title.\nif(distance(item.title,fullQuery)<=2){score+=score*10;}// Fuzzy match full words in the title.\nfor(const titleWord of titleWords){const distanceScore=distance(query,titleWord);// Small distance score helps with small typos.\nif(distanceScore<=2){score+=10;}}const headings=[...item.h1,...item.h2,...item.h3,...item.h4,...item.h5,...item.h6];for(const heading of headings){const headingWords=getUniqueWords(heading);// If the full query is close to being the heading, score this highly as\n// the user is most likely looking for that exact title.\nif(distance(heading,fullQuery)<=2){score+=score*10;}// Bias headings that start with the query as this helps when\n// you know the title you are searching for.\nif(heading.startsWith(query)){score+=10;}if(headingWords.has(query)){score+=10;}if(heading.includes(query)){score+=1;}// Fuzzy match full words in headings.\nfor(const headingWord of headingWords){const distanceScore=distance(query,headingWord);if(distanceScore<=2){score+=1;}}}const descriptionIndex=item.description.indexOf(query);if(descriptionIndex!==-1){score+=10;match.description=getMatchRange(match.description,descriptionIndex,descriptionIndex+query.length);}for(const p of item.p){if(p.includes(query)){score+=.5;}}for(const codeblock of item.codeblock){// If the full query is close to being the codeblock, score this highly as\n// the user is most likely looking for that exact code.\nif(distance(codeblock,fullQuery)<=2){score*=10;}if(codeblock.includes(fullQuery)){score+=10;}if(codeblock.includes(query)){score+=.5;}}return{score,match};}function getSearchIndexItemScore(item,query){const normalizedItem=getNormalizedItem(item);const normalizedQuery=getNormalizedString(query);const queryWords=getUniqueWords(normalizedQuery);let total=0;for(const queryWord of queryWords){const{score}=getScoreForSearchIndexItem(normalizedItem,queryWord,queryWords,normalizedQuery);total+=score;}return total;}function useRawSearch(index,query,settings){const results=useMemo(()=>{if(!query||!index){return[];}const path=safeWindow===null||safeWindow===void 0?void 0:safeWindow.location.pathname;time(\"query\");// Filter the results.\nconst results=Object.values(index).map(item=>{const score=getSearchIndexItemScore(item,query);const heading=item.h1.length&&item.h1[0];const title=(settings===null||settings===void 0?void 0:settings.titleType)===SearchResultTitleType.Title?item.title:heading?heading:item.title;// Convert index item to result item.\nconst result={url:item.url,title,description:item.description,body:[...item.p,item.codeblock].join(\" \"),score};return result;}).filter(item=>item.score>settings.minimumScore||0).filter(item=>{if(!path)return true;return item.url!==path;}).sort((itemA,itemB)=>itemB.score-itemA.score);timeEnd(\"query\");return results;},[index,query]);return results;}function getIndexedScopedToUrl(index,rawUrlScope,localeSlug){const scopedIndex={};const baseScopeUrlHasVariable=rawUrlScope.includes(\":\");const urlUpToPathVariable=rawUrlScope.split(\":\")[0];const urlScope=urlUpToPathVariable.length>1?urlUpToPathVariable:\"\";for(const url in index){const strippedURL=stripLocaleSlugFromPath(url,localeSlug);if(!strippedURL.startsWith(urlScope)){continue;}if(baseScopeUrlHasVariable&&url.length<=urlScope.length){continue;}scopedIndex[url]=index[url];}return scopedIndex;}export function useSearch(query,settings){const[searchIndex,_setSearchIndex]=useState({});const[status,setStatus]=useState(\"loading\");const results=useRawSearch(searchIndex,query,settings);const{activeLocale}=useLocaleInfo();const localeId=activeLocale===null||activeLocale===void 0?void 0:activeLocale.id;// Seperate setter function so that the URL scope is always applied\n// to indexes loaded from either the cache or network.\nfunction setSearchIndex(index,options={ignoreScope:false}){let scopedIndex=index;if(settings.urlScope&&!options.ignoreScope){scopedIndex=getIndexedScopedToUrl(index,settings.urlScope,activeLocale===null||activeLocale===void 0?void 0:activeLocale.slug);log(\"Using URL scope\",settings.urlScope);}_setSearchIndex(scopedIndex);}useEffect(()=>{async function loadSearchIndex(){setStatus(\"loading\");const metaTag=safeDocument===null||safeDocument===void 0?void 0:safeDocument.querySelector('meta[name=\"framer-search-index\"]');if(!metaTag){setStatus(\"no-meta-tag-found\");setSearchIndex(fakeResults,{ignoreScope:true});log(\"No meta tag found\");return;}const cachedIndex=await getCachedIndex(localeId);const metaTagContent=metaTag.getAttribute(\"content\");const isOverLimit=metaTagContent===\"limit-reached\";if(isOverLimit){log(\"Page limit for plan exceeded\");}// If a cached index exists, use the cached version until latest one\n// from the network loads.\nif(cachedIndex&&!isOverLimit){setSearchIndex(cachedIndex);setStatus(\"loading-with-cache\");log(\"Using cached index\");}// Return early and do not make a fetch request if the URL is not valid.\nif(!metaTagContent||!isValidUrl(metaTagContent)){log(\"Meta tag exists but URL is not valid yet\");// If there is no cached index, show the pending index message.\n// Otherwise use the cache to as the index to search.\nif(!cachedIndex){setStatus(\"pending-index-generation\");log(\"No cache to use, page reload required to check for meta tag\");}else{log(\"Continue using cache\");}return;}const searchIndexURL=getSearchIndexURL(metaTagContent,localeId);const response=await fetch(searchIndexURL);if(!response.ok){throw new Error(response.statusText);}const downloadedIndex=await response.json();setSearchIndex(downloadedIndex);setCachedIndex(localeId,downloadedIndex);setStatus(\"success\");log(\"Using downloaded index\");}loadSearchIndex().catch(error=>{// TODO: Check for error type here. If it's a network error,\n// we could do a few retries.\nsetStatus(\"error\");log(\"Failed to load search index\",error);});},[localeId]);log({status,results});return{results,status};}function getSearchIndexURL(baseURL,localeId){if(isDefaultLocaleId(localeId))return baseURL;return baseURL.replace(\".json\",`-${localeId}.json`);}\nexport const __FramerMetadata__ = {\"exports\":{\"useSearch\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchIndex\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useSearch.map", "export var Browser;(function(Browser){var isTouch=Browser.isTouch=()=>\"ontouchstart\"in window||navigator.maxTouchPoints>0;var isChrome=Browser.isChrome=()=>navigator.userAgent.toLowerCase().includes(\"chrome/\");var isWebKit=Browser.isWebKit=()=>navigator.userAgent.toLowerCase().includes(\"applewebkit/\");var isSafari=Browser.isSafari=()=>isWebKit()&&!isChrome();var isSafariDesktop=Browser.isSafariDesktop=()=>isSafari()&&!isTouch();var isWindows=Browser.isWindows=()=>/Win/.test(navigator.platform);var isMacOS=Browser.isMacOS=()=>/Mac/.test(navigator.platform);})(Browser||(Browser={}));\nexport const __FramerMetadata__ = {\"exports\":{\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./browser.map", "// From: @framerjs/fresco/src/components/utils/useCallbackOnMouseMove.ts\nimport{useRef,useCallback}from\"react\";import{Browser}from\"https://framerusercontent.com/modules/PJVBcBLmDteTEAZh3J9Z/keXJyjyE9VnzUcDMayjg/browser.js\";/**\n * Webkit fires mousemove events if the pointer's coordination changes relative\n * to its container (e.g. if the container scrolls), or when a modifier key is\n * pressed, mousemove would fire even if the cursor did not actually move.\n * This helper compares the cursor position between mouse events, and fire the\n * callback only when its position changes.\n */ export const useCallbackOnMouseMove=(callback,mousePositionRef)=>{const prevPositionRef=useRef(null);return useCallback(event=>{if(!Browser.isSafari())return callback(event);const ref=mousePositionRef?mousePositionRef:prevPositionRef;const{clientX,clientY}=event;const prevCursorPosition=ref.current;ref.current={x:clientX,y:clientY};// Ignore mouse moves unless we have a position. Else it might be an\n// element that appears behind the mouse without the mouse moving.\nif(!prevCursorPosition){return;}if(prevCursorPosition.x!==clientX||prevCursorPosition.y!==clientY){return callback(event);}},[mousePositionRef,callback]);};\nexport const __FramerMetadata__ = {\"exports\":{\"useCallbackOnMouseMove\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Point\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useCallbackOnMouseMove.map", "// Safari does not support `element.scrollIntoView({ block: \"nearest\" })`, so this\n// is a workaround for that.\nexport function scrollIntoView(targetElement,scrollElement,/** Additional spacing to add from the top or bottom of the scroll element viewport. */ {offsetTop,offsetBottom}){const targetElementBounds=targetElement.getBoundingClientRect();const scrollElementBounds=scrollElement.getBoundingClientRect();if(targetElementBounds.top<scrollElementBounds.top){const difference=scrollElementBounds.top-targetElementBounds.top;scrollElement.scrollTop=scrollElement.scrollTop-difference-offsetTop;}else if(targetElementBounds.bottom>scrollElementBounds.bottom){const topAligned=scrollElementBounds.top-targetElementBounds.top;const minOffset=scrollElement.scrollTop-topAligned-offsetTop;const bottomAligned=targetElementBounds.bottom-scrollElementBounds.bottom;const offset=scrollElement.scrollTop+bottomAligned+offsetBottom;scrollElement.scrollTop=Math.min(minOffset,offset);}}\nexport const __FramerMetadata__ = {\"exports\":{\"scrollIntoView\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./scrollIntoView.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useSearch}from\"https://framerusercontent.com/modules/MyBp84Z0p9nUcMimVMnY/y5F4AGWJ6syeuoB7ebKM/useSearch.js\";import React,{useEffect,useState,useMemo,forwardRef,useRef,useDeferredValue,useLayoutEffect,useCallback,useImperativeHandle}from\"react\";import{Browser}from\"https://framerusercontent.com/modules/PJVBcBLmDteTEAZh3J9Z/keXJyjyE9VnzUcDMayjg/browser.js\";import{motion,clamp,useAnimate}from\"framer-motion\";import{SearchIcon,ClearIcon,SpinnerIcon}from\"https://framerusercontent.com/modules/LV9trClbmNwd5PVj9l8y/L4rFqMGNzGSwRZpGTGF3/Icons.js\";import{clampText,getFontFamily,localStorageDebugFlag,animationKeyFromLayout,stripLocaleSlugFromPath}from\"https://framerusercontent.com/modules/MWsEnYfRnoOQq31DN4ql/C71JVnvNwV2CrPvApXBB/utils.js\";import{useCallbackOnMouseMove}from\"https://framerusercontent.com/modules/Gzef0nFihI9m9vZG45th/lIUxbZcreiDm2GzUkt3y/useCallbackOnMouseMove.js\";import{scrollIntoView}from\"https://framerusercontent.com/modules/eAnjm75CdfYT1Zz4BIaz/7KDSfnnyD1T3Ap75L4m8/scrollIntoView.js\";import{// @ts-expect-error Internal API\nuseLocaleInfo,useRouter,inferInitialRouteFromPath}from\"framer\";const MAX_DESCRIPTION_LENGTH=120;const MODAL_MAX_HEIGHT=496;const VERTICAL_SPACING_MULTIPLIER=.6;function ClearButton({theme,type,onClick,text}){const shouldDisplayIcon=type===\"icon\";const iconOrText=shouldDisplayIcon?/*#__PURE__*/_jsx(ClearIcon,{style:{color:theme.inputIconColor,width:theme.inputIconSize,height:theme.inputIconSize}}):text;return /*#__PURE__*/_jsx(\"div\",{style:{flexShrink:0,fontSize:theme&&theme.titleFont&&theme.titleFont.fontSize?theme.titleFont.fontSize:15},children:/*#__PURE__*/_jsx(\"button\",{className:\"__framer-search-clear-button\",onClick:onClick,style:{fontFamily:\"inherit\",border:\"none\",background:\"none\",cursor:\"pointer\",display:\"flex\",textTransform:\"uppercase\",color:theme.inputIconColor,fontSize:\"0.75em\",padding:0},children:iconOrText})});}function Divider({theme,type}){const styles={background:theme.foregroundColor,height:1,flexShrink:0,opacity:.05};if(type===\"contained\"&&theme){styles.marginLeft=theme.horizontalSpacing;styles.marginRight=theme.horizontalSpacing;}return /*#__PURE__*/_jsx(\"div\",{style:styles});}export const Input=/*#__PURE__*/forwardRef(function Input(props,ref){const{value=\"\",status,autofocus,theme,placeholder,iconType,clearButtonType,onChange}=props;const[inputValue,setInputValue]=useState(value);const[isFocused,setIsFocused]=useState(false);const inputRef=useRef();useImperativeHandle(ref,()=>inputRef.current);React.useLayoutEffect(()=>{// Runs on unmount, fixes a bug in Safari that scrolls to the bottom\n// of the page when the input unmounts.\nreturn()=>{const inputElement=inputRef.current;if(!inputElement||inputElement!==document.activeElement)return;inputElement.blur();};},[]);const handleInputClick=()=>{if(inputRef.current){inputRef.current.focus();}};const handleClearClick=()=>{setInputValue(\"\");};useEffect(()=>{onChange(inputValue);},[inputValue]);const hasInputText=inputValue.length>0;const showClearButton=inputValue.length>0&&clearButtonType&&clearButtonType!==\"none\";const verticalSpacing=Math.floor(theme?theme.horizontalSpacing*VERTICAL_SPACING_MULTIPLIER:0);const searchIcon=iconType===\"custom\"&&theme.inputIconImage?/*#__PURE__*/_jsx(\"img\",{alt:\"icon alongside the Site Search input\",src:theme.inputIconImage.src,width:theme.inputIconSize,height:theme.inputIconSize}):/*#__PURE__*/_jsx(SearchIcon,{color:theme.inputIconColor,width:theme.inputIconSize,height:theme.inputIconSize});return /*#__PURE__*/_jsxs(\"div\",{role:\"search\",style:{...inputContainerStyle,fontFamily:getFontFamily(theme),paddingLeft:theme&&theme.horizontalSpacing,paddingRight:theme&&theme.horizontalSpacing,gap:12,paddingTop:verticalSpacing,paddingBottom:verticalSpacing,touchAction:\"none\"},onClick:handleInputClick,children:[/*#__PURE__*/_jsx(\"div\",{style:{flexShrink:0,display:\"flex\"},children:status===\"loading\"&&inputValue?/*#__PURE__*/_jsx(SpinnerIcon,{color:theme.inputIconColor,backgroundColor:theme.backgroundColor,style:{height:theme&&theme.inputIconSize,width:theme&&theme.inputIconSize}}):searchIcon}),/*#__PURE__*/_jsx(\"input\",{ref:inputRef,spellCheck:false,autoFocus:autofocus,style:{...inputStyle,WebkitTapHighlightColor:\"rgba(0,0,0,0)\",color:theme.foregroundColor,lineHeight:\"2em\",verticalAlign:\"baseline\",...theme.titleFont,...theme.inputFont,fontSize:theme.inputFontSize,// @ts-ignore\n\"--framer-search-placeholder-color\":theme.placeholderColor},onFocus:()=>{const scrollOffset=document.documentElement.scrollTop;document.documentElement.scrollTop=scrollOffset;},placeholder:placeholder,value:inputValue,onChange:()=>setInputValue(inputRef.current.value)}),showClearButton&&/*#__PURE__*/_jsx(ClearButton,{theme:theme,type:props.clearButtonType,text:props.clearButtonText,onClick:handleClearClick})]});});const inputContainerStyle={display:\"inline-flex\",alignItems:\"center\",flexShrink:0};const inputStyle={outline:\"none\",border:\"none\",background:\"transparent\",fontWeight:500,height:\"2em\",padding:0,width:\"100%\"};export const ResultRow=/*#__PURE__*/React.memo(/*#__PURE__*/React.forwardRef(function ResultRow(props,ref){const{index,result,prevMousePositionRef,type=\"contained\",subtitleType=\"path\",selected=false,theme,localeSlug,style,onMouseMove,onPointerDown,onNavigateTo}=props;const{url,title,score}=result;const urlPath=useMemo(()=>{return stripLocaleSlugFromPath(url,localeSlug);},[url,localeSlug]);const handleMouseMove=useCallbackOnMouseMove(event=>onMouseMove(event,index),prevMousePositionRef);const isContained=type===\"contained\";const borderRadius=isContained?clamp(0,Infinity,theme.borderRadius-theme.spacing):0;const subtitleText=subtitleType===\"path\"?urlPath:clampText(result.description,MAX_DESCRIPTION_LENGTH);const handleClick=event=>{event.preventDefault();onNavigateTo(result.url);};const focusTrap=event=>{event.preventDefault();};return /*#__PURE__*/_jsx(\"a\",{ref:ref,style:{textDecoration:\"none\"},href:result.url,onClick:handleClick,onMouseMove:handleMouseMove,onMouseDown:focusTrap,onPointerDown:event=>onPointerDown(event,index),children:/*#__PURE__*/_jsxs(\"li\",{style:{...resultContainer,...style,paddingTop:isContained?12:16,paddingBottom:isContained?12:16,color:theme.foregroundColor,position:\"relative\",paddingLeft:theme&&theme.horizontalSpacing,paddingRight:theme&&theme.horizontalSpacing},children:[/*#__PURE__*/_jsx(\"div\",{style:{backgroundColor:theme.foregroundColor,position:\"absolute\",opacity:selected?.06:0,borderRadius,left:theme&&isContained?theme.spacing:0,right:theme&&isContained?theme.spacing:0,top:0,bottom:0}}),/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",overflow:\"hidden\",gap:4},children:[/*#__PURE__*/_jsx(\"h3\",{style:{...resultTitle,...theme.titleFont,lineHeight:\"1.4em\"},children:title}),/*#__PURE__*/_jsxs(\"p\",{style:{margin:0,color:theme.subtitleColor,...theme.subtitleFont,whiteSpace:\"nowrap\",overflow:\"hidden\",textOverflow:\"ellipsis\",lineHeight:\"1.4em\"},children:[localStorageDebugFlag?score:\"\",\" \",subtitleText]})]})]},result.url)});}));/**\n * Flexible gap used inside a flexbox layout to push down the quick menu\n * by 20% of the screen height, but also allow it to collapse to zero if\n * there is not enough vertical room.\n */function QuickMenuSpacer({onClick}){return /*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",flexBasis:\"20vh\"},onClick:onClick});}const layoutContainerStyle={display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"flex-start\",gap:15,overflow:\"visible\"};function LayoutContainer({layoutType,theme,onKeyDown,onDismiss,children,modalOptions}){const layoutStyles=getLayoutBaseStyles(layoutType,theme);const style={...layoutContainerStyle,...layoutStyles,willChange:\"transform\",marginTop:layoutType===\"FixedTop\"?theme.offsetTop:0,height:layoutType===\"Sidebar\"?\"100%\":\"auto\",maxHeight:layoutType===\"QuickMenu\"?\"100%\":\"none\",justifyContent:layoutType===\"Sidebar\"?\"flex-end\":\"flex-start\",flexDirection:layoutType===\"Sidebar\"?\"column-reverse\":\"column\"};const innerStyle={...layoutContainerStyle,...layoutStyles,height:layoutType===\"Sidebar\"?\"100%\":\"auto\",maxHeight:layoutType===\"QuickMenu\"?\"100%\":\"none\",gap:layoutType===\"Sidebar\"?0:theme.gapBetweenStatusAndSearch,backgroundColor:layoutType===\"Sidebar\"?theme.backgroundColor:\"transparent\",justifyContent:layoutType===\"Sidebar\"?\"flex-end\":\"flex-start\",flexDirection:layoutType===\"Sidebar\"?\"column-reverse\":\"column\",originX:.5,originY:.5};function getContainerAnimation(){switch(layoutType){case\"FixedTop\":{const key=animationKeyFromLayout(\"FixedTop\");const prop=modalOptions?modalOptions[key]:undefined;if(prop){return prop;}else{return{y:-10,opacity:.2,transition:{duration:Browser.isTouch()?0:.15}};}break;}case\"QuickMenu\":{const key=animationKeyFromLayout(\"QuickMenu\");const prop=modalOptions?modalOptions[key]:undefined;if(prop){return prop;}else{return{scale:.95,opacity:0,y:0,x:0,rotate:0,transition:{type:\"spring\",stiffness:600,damping:40}};}break;}case\"Sidebar\":{const key=animationKeyFromLayout(\"Sidebar\");const prop=modalOptions?modalOptions[key]:undefined;if(prop){return prop;}else{return{x:-10,opacity:0,transition:{duration:.15}};}break;}}}const containerAnimation=getContainerAnimation();return /*#__PURE__*/_jsxs(\"div\",{style:style,onKeyDown:onKeyDown,onClick:event=>event.stopPropagation(),children:[layoutType===\"QuickMenu\"&&/*#__PURE__*/_jsx(QuickMenuSpacer,{onClick:onDismiss}),/*#__PURE__*/_jsx(motion.div,{initial:containerAnimation,animate:{opacity:1,scale:1,x:0,y:0,rotate:0},transition:containerAnimation?containerAnimation.transition:undefined,exit:{opacity:0,transition:{duration:0}},style:innerStyle,children:children})]});}function ModalContainer({layoutType,theme,children,heightIsStatic,heightTransition,heightDeps}){const style={// This `willChange` is required to avoid weird rendering issues where\n// parts of the search window won't redraw, which we observed in Safari 16.4.\nwillChange:\"transform\",backgroundColor:theme.backgroundColor,color:theme.foregroundColor,borderRadius:layoutType===\"QuickMenu\"?theme.borderRadius:0,width:\"100%\",display:\"flex\",flexDirection:\"column\",overflow:\"hidden\",boxShadow:layoutType!==\"Sidebar\"?theme.shadow:undefined,maxHeight:layoutType===\"QuickMenu\"?`min(${MODAL_MAX_HEIGHT}px, calc(100vh - 30px))`:undefined};// Opt-in Height Animations for the Search Quick Actions menu.\n// These are disabled by default, but can be enabled via props.\nconst[scope,animate]=useAnimate();useLayoutEffect(()=>{if(layoutType!==\"QuickMenu\"||heightIsStatic)return;const prevHeight=scope.current.offsetHeight;scope.current.style.height=\"auto\";const height=scope.current.offsetHeight;scope.current.style.height=prevHeight+\"px\";animate(scope.current,{height:[prevHeight,height]},heightTransition);},heightDeps);return /*#__PURE__*/_jsx(\"div\",{ref:scope,role:\"dialog\",className:layoutType===\"FixedTop\"?\"__framer-max-height-80dvh\":undefined,style:style,children:children});}const ScrollView=/*#__PURE__*/React.forwardRef(function ScrollView({theme,children},ref){const isTouch=Browser.isTouch();const[canScroll,setCanScroll]=React.useState(true);React.useEffect(()=>{if(!isTouch)return;const element=ref.current;if(!element)return;setCanScroll(element.scrollHeight>element.clientHeight);});return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{width:`calc(100% + ${theme.scrollBarWidth}px)`,overflowY:\"scroll\",overflowX:\"hidden\",overscrollBehavior:\"contain\",touchAction:canScroll?undefined:\"none\",// Make the list appear slightly under the divider\n// so that the divider is still visible when the first\n// item is selected.\nmarginTop:-1},children:children});});const statusStyle={backgroundColor:\"#B5B5B5\",color:\"#FFF\",boxShadow:\"0px 20px 40px 0px rgba(0, 0, 0, 0.25)\",fontFamily:\"inherit\",textAlign:\"center\",fontSize:13,padding:\"8px 0\"};function StatusMessage({status,layoutType,theme}){const verticalSpacing=Math.floor(theme?theme.horizontalSpacing*VERTICAL_SPACING_MULTIPLIER:0);const style={...statusStyle,userSelect:\"none\",fontFamily:getFontFamily(theme),paddingLeft:theme&&theme.horizontalSpacing,paddingRight:theme&&theme.horizontalSpacing,fontWeight:500,lineHeight:`calc(${theme.inputFontSize} * 2)`,paddingTop:verticalSpacing,paddingBottom:verticalSpacing,...theme.titleFont,zIndex:theme.zIndex+1,maxWidth:layoutType===\"FixedTop\"?\"none\":theme.width,width:layoutType===\"FixedTop\"?`calc(100% - ${verticalSpacing*2}px`:\"100%\",boxShadow:layoutType!==\"Sidebar\"&&statusStyle.boxShadow,borderRadius:layoutType!==\"Sidebar\"&&theme.borderRadius};// Show less text on fixed text to look nicer on mobile\nconst previewInfoText=layoutType===\"FixedTop\"?\"Preview Mode\":\"Preview Mode. Publish your Site to Search.\";if(status===\"no-meta-tag-found\"){return /*#__PURE__*/_jsx(\"div\",{style:style,children:previewInfoText});}if(status===\"pending-index-generation\"){return /*#__PURE__*/_jsx(\"div\",{style:style,children:\"Site is being indexed\"});}return null;}const resultTitle={textOverflow:\"ellipsis\",maxWidth:\"100%\",overflow:\"hidden\",fontWeight:500,whiteSpace:\"nowrap\",flex:1,margin:0};const resultContainer={padding:\"16px 20px\",listStyle:\"none\",fontWeight:500};const sidebarStyles={left:0,width:500};const fixedTopStyles={top:0,width:\"100%\"};const quickMenuStyles={width:500};function getLayoutBaseStyles(layoutOption,theme){switch(layoutOption){case\"Sidebar\":return{...sidebarStyles,width:theme.width};case\"FixedTop\":return fixedTopStyles;case\"QuickMenu\":return{...quickMenuStyles,width:theme.width};}}export var SearchInputClearButtonType;(function(SearchInputClearButtonType){SearchInputClearButtonType[\"Icon\"]=\"icon\";SearchInputClearButtonType[\"Text\"]=\"text\";SearchInputClearButtonType[\"None\"]=\"none\";})(SearchInputClearButtonType||(SearchInputClearButtonType={}));export var SearchInputDividerType;(function(SearchInputDividerType){SearchInputDividerType[\"None\"]=\"none\";SearchInputDividerType[\"FullWidth\"]=\"fullWidth\";SearchInputDividerType[\"Contained\"]=\"contained\";})(SearchInputDividerType||(SearchInputDividerType={}));export var SearchResultTitleType;(function(SearchResultTitleType){SearchResultTitleType[\"H1\"]=\"h1\";SearchResultTitleType[\"Title\"]=\"title\";})(SearchResultTitleType||(SearchResultTitleType={}));export var SearchResultSubtitleType;(function(SearchResultSubtitleType){SearchResultSubtitleType[\"Description\"]=\"description\";SearchResultSubtitleType[\"Path\"]=\"path\";})(SearchResultSubtitleType||(SearchResultSubtitleType={}));export var SearchResultItemType;(function(SearchResultItemType){SearchResultItemType[\"FullWidth\"]=\"fullWidth\";SearchResultItemType[\"Contained\"]=\"contained\";})(SearchResultItemType||(SearchResultItemType={}));export var SearchLayoutType;(function(SearchLayoutType){SearchLayoutType[\"Sidebar\"]=\"Sidebar\";SearchLayoutType[\"FixedTop\"]=\"FixedTop\";SearchLayoutType[\"QuickMenu\"]=\"QuickMenu\";})(SearchLayoutType||(SearchLayoutType={}));export var SearchEntryType;(function(SearchEntryType){SearchEntryType[\"Icon\"]=\"icon\";SearchEntryType[\"Text\"]=\"text\";})(SearchEntryType||(SearchEntryType={}));export var SearchIconType;(function(SearchIconType){SearchIconType[\"Default\"]=\"default\";SearchIconType[\"Custom\"]=\"custom\";})(SearchIconType||(SearchIconType={}));/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export function SearchModal(props){const{layoutType,theme,urlScope,inputOptions,backdropOptions,modalOptions,resultOptions,onDismiss}=props;const{activeLocale}=useLocaleInfo();const localeId=activeLocale===null||activeLocale===void 0?void 0:activeLocale.id;const localeSlug=activeLocale===null||activeLocale===void 0?void 0:activeLocale.slug;const input=useRef();const selectedResultRow=useRef();const scrollView=useRef();const[selected,setSelected]=useState({index:0,scroll:true});const prevMousePositionRef=useRef(null);const[isKeyboardNavigationDisabled,setIsKeyboardNavigationDisabled]=useState(Browser.isTouch);const[query,setQuery]=useState(\"\");const deferredQuery=useDeferredValue(query);const{results,status}=useSearch(deferredQuery,{minimumScore:0,urlScope,titleType:resultOptions.titleType});const selectedResult=results[selected.index];const verticalSpacing=Math.floor(theme?theme.horizontalSpacing*VERTICAL_SPACING_MULTIPLIER:0);useEffect(()=>{// Reset the selection to the top if the query changes.\nsetSelected({index:0,scroll:true});},[deferredQuery]);const handleResultRowPointerDown=useCallback((event,index)=>{if(event.pointerType!==\"touch\")return;setIsKeyboardNavigationDisabled(true);setSelected({index,scroll:false});},[]);const handleResultRowMouseMove=useCallback((event,index)=>{setSelected(previousSelected=>{if(previousSelected.index===index){return previousSelected;}return{index,scroll:false};});},[]);const router=useRouter();const navigateTo=useCallback(async url=>{if(status===\"no-meta-tag-found\"){return;}try{var _router_getRoute,_route_page_preload,_route_page,_router_navigate;// Ideally, we would directly expose `routeId` in the search index so that\n// we don't need to infer it from the URL.\nconst{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,url);const route=(_router_getRoute=router.getRoute)===null||_router_getRoute===void 0?void 0:_router_getRoute.call(router,routeId);onDismiss();await (route===null||route===void 0?void 0:(_route_page=route.page)===null||_route_page===void 0?void 0:(_route_page_preload=_route_page.preload)===null||_route_page_preload===void 0?void 0:_route_page_preload.call(_route_page));(_router_navigate=router.navigate)===null||_router_navigate===void 0?void 0:_router_navigate.call(router,routeId,null,pathVariables,false);}catch(error){window.location.href=url;}},[status]);const handleKeyDown=event=>{const maxIndex=results.length-1;switch(event.code){case\"ArrowUp\":event.preventDefault();if(isKeyboardNavigationDisabled){setIsKeyboardNavigationDisabled(false);break;}setSelected(previousSelected=>({index:clamp(0,maxIndex,previousSelected.index-1),scroll:true}));break;case\"ArrowDown\":event.preventDefault();if(isKeyboardNavigationDisabled){setIsKeyboardNavigationDisabled(false);break;}setSelected(previousSelected=>({index:clamp(0,maxIndex,previousSelected.index+1),scroll:true}));break;case\"Escape\":break;case\"Enter\":if(selectedResult){navigateTo(selectedResult.url);}break;default:event.stopPropagation();}};const showNoResults=results.length===0&&deferredQuery.length>1&&status!==\"loading\";const showDivider=Boolean((deferredQuery.length>0&&results.length>0||showNoResults)&&status!==\"loading\"&&props.inputOptions&&props.inputOptions.dividerType!==\"none\");const isItemContained=Boolean(props.resultOptions&&props.resultOptions.itemType===\"contained\");const spacing=isItemContained?theme.spacing:10;const listPaddingTop=showDivider&&isItemContained?spacing+theme.gapBetweenResults*2:0;useEffect(()=>{if(!selected.scroll)return;const element=selectedResultRow.current;if(!element)return;scrollIntoView(element,scrollView.current,{offsetTop:showDivider&&isItemContained?listPaddingTop:0,offsetBottom:isItemContained?spacing:0});// `showDivider` and `isItemContained` are not dependencies because\n// they will be the latest values when `selected` changes. And including\n// them will cause unnecessary scrolling into view.\n},[selected]);return /*#__PURE__*/_jsxs(LayoutContainer,{layoutType:layoutType,modalOptions:modalOptions,theme:theme,onKeyDown:handleKeyDown,onDismiss:onDismiss,children:[/*#__PURE__*/_jsxs(ModalContainer,{layoutType:layoutType,theme:theme,heightIsStatic:modalOptions.heightIsStatic,heightTransition:modalOptions.heightTransition,heightDeps:[results.length,showNoResults],children:[/*#__PURE__*/_jsx(Input,{autofocus:true,ref:input,onChange:setQuery,value:query,theme:theme,status:status,iconType:inputOptions.iconOptions.iconType,placeholder:inputOptions.placeholderOptions.placeholderText,clearButtonType:inputOptions?inputOptions.clearButtonType:undefined,clearButtonText:inputOptions.clearButtonText}),showDivider&&/*#__PURE__*/_jsx(Divider,{theme:theme,type:inputOptions.dividerType}),/*#__PURE__*/_jsx(ScrollView,{ref:scrollView,theme:theme,children:/*#__PURE__*/_jsxs(\"ul\",{\"aria-live\":\"polite\",style:{display:\"flex\",flexDirection:\"column\",width:`calc(100% - ${theme.scrollBarWidth}px)`,padding:0,paddingTop:listPaddingTop,paddingBottom:results.length&&isItemContained?spacing:0,gap:theme.gapBetweenResults,margin:0},children:[results.map((result,index)=>{const isSelected=index===selected.index;return /*#__PURE__*/_jsx(ResultRow,{ref:isSelected?selectedResultRow:null,index:index,result:result,prevMousePositionRef:prevMousePositionRef,selected:!isKeyboardNavigationDisabled&&isSelected,type:props.resultOptions.itemType,subtitleType:props.resultOptions.subtitleOptions.subtitleType,theme:theme,localeSlug:localeSlug,onMouseMove:handleResultRowMouseMove,onPointerDown:handleResultRowPointerDown,onNavigateTo:navigateTo},result.url);}),showNoResults&&/*#__PURE__*/_jsx(\"li\",{style:{paddingTop:verticalSpacing-listPaddingTop,paddingBottom:verticalSpacing,lineHeight:\"2em\",paddingLeft:theme&&theme.horizontalSpacing,paddingRight:theme&&theme.horizontalSpacing,height:\"Sidebar\"?\"100%\":\"auto\"},children:/*#__PURE__*/_jsx(\"h3\",{style:{...resultTitle,textAlign:\"center\",lineHeight:`calc(${theme.inputFontSize} * 2)`,color:theme.subtitleColor,...theme.titleFont},children:\"No results\"})})]})})]}),/*#__PURE__*/_jsx(StatusMessage,{status:status,layoutType:layoutType,theme:theme})]});}\nexport const __FramerMetadata__ = {\"exports\":{\"SearchIconType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchEntryType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchModal\":{\"type\":\"reactComponent\",\"name\":\"SearchModal\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\"}},\"SearchTheme\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchResultTitleType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchResultSubtitleType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ResultRow\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Input\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchInputDividerType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchLayoutType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchResultItemType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchInputClearButtonType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{useEffect,useState}from\"react\";function getViewportSize(){if(typeof window===\"undefined\"){return{width:0,height:0};}return{width:window.innerWidth,height:window.innerHeight};}export function useViewportSizeState(getState){const[state,setState]=useState(()=>getState(getViewportSize()));useEffect(()=>{const handleWindowResize=()=>setState(getState(getViewportSize()));window.addEventListener(\"resize\",handleWindowResize);return()=>{window.removeEventListener(\"resize\",handleWindowResize);};},[]);return state;}\nexport const __FramerMetadata__ = {\"exports\":{\"useViewportSizeState\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useViewportSizeState.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{createPortal}from\"react-dom\";import{useRef,useState,useEffect,forwardRef}from\"react\";import{AnimatePresence,motion}from\"framer-motion\";import{SearchIcon}from\"https://framerusercontent.com/modules/LV9trClbmNwd5PVj9l8y/L4rFqMGNzGSwRZpGTGF3/Icons.js\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{SearchModal,SearchResultItemType,SearchResultTitleType,SearchResultSubtitleType,SearchInputDividerType,SearchInputClearButtonType,SearchLayoutType,SearchIconType}from\"https://framerusercontent.com/modules/tV9haTHllpHHc9Fjue2H/Xy775u0FJg3K1GQc1Cd9/SearchModal.js\";import{useViewportSizeState}from\"https://framerusercontent.com/modules/hqEf5wXaAewP8VPuaZ98/5A0QGVeEr2cwheQpIuEG/useViewportSizeState.js\";import{titleCase,DEFAULT_FONT_FAMILY,isEmptyObject,animationKeyFromLayout,checkIfOverLimit}from\"https://framerusercontent.com/modules/MWsEnYfRnoOQq31DN4ql/C71JVnvNwV2CrPvApXBB/utils.js\";import{Browser}from\"https://framerusercontent.com/modules/PJVBcBLmDteTEAZh3J9Z/keXJyjyE9VnzUcDMayjg/browser.js\";var EntryPointOptions;// SITE SEARCH\n// By Anthony and Hunter\n(function(EntryPointOptions){EntryPointOptions[\"icon\"]=\"Icon\";EntryPointOptions[\"input\"]=\"Input\";})(EntryPointOptions||(EntryPointOptions={}));function buildShadow(shadowProperty,fallback=\"none\"){if(!shadowProperty)return fallback;const{x,y,blur,color,spread}=shadowProperty;return`${x}px ${y}px ${blur}px ${spread}px ${color}`;}const Overlay=/*#__PURE__*/forwardRef(function Overlay(props,ref){const{layoutType,theme,onDismiss}=props;useEffect(()=>{const handleKeyDown=event=>{if(event.code===\"Escape\"){event.stopPropagation();onDismiss();}};const handlePointerDown=event=>{if(event.pointerType!==\"touch\")return;const isWithinSearchHeader=Boolean(event.target instanceof Element&&event.target.closest(\"[role=search]\"));if(isWithinSearchHeader)return;if(document.activeElement instanceof HTMLInputElement){document.activeElement.blur();}};// Event listener added to window so that pressing escape key to dimiss\n// can be invoked from anywhere on the page.\nwindow.addEventListener(\"keydown\",handleKeyDown);window.addEventListener(\"pointerdown\",handlePointerDown,{capture:true});// Disable page scrolling when overlay is shown.\ndocument.body.classList.add(bodyOverflowHidden);return()=>{window.removeEventListener(\"keydown\",handleKeyDown);window.removeEventListener(\"pointerdown\",handlePointerDown,{capture:true});document.body.classList.remove(bodyOverflowHidden);};},[]);return /*#__PURE__*/createPortal(/*#__PURE__*/_jsxs(\"div\",{ref:ref,className:\"__framer-search-modal-container\",role:\"presentation\",style:{...backdropStyles,zIndex:props.backdropOptions.zIndex,justifyContent:layoutType===SearchLayoutType.Sidebar?\"flex-start\":\"center\"},onClick:onDismiss,children:[/*#__PURE__*/_jsx(motion.div,{role:\"presentation\",initial:{opacity:0},animate:{opacity:1},exit:{opacity:0,transition:{duration:0}},transition:theme.overlayTransition,style:{top:0,left:0,right:0,bottom:0,width:\"100%\",height:\"100%\",boxSizing:\"border-box\",position:\"absolute\",touchAction:\"none\",backgroundColor:props.backdropOptions.backgroundColor}}),/*#__PURE__*/_jsx(SearchModal,{urlScope:props.urlScope,layoutType:layoutType,inputOptions:props.inputOptions,resultOptions:props.resultOptions,modalOptions:props.modalOptions,backdropOptions:props.backdropOptions,theme:props.theme,onDismiss:onDismiss})]}),document.body);});const backdropStyles={width:\"100%\",boxSizing:\"border-box\",willChange:\"transform\",position:\"fixed\",display:\"flex\",alignItems:\"flex-start\",top:0,left:0,right:0,bottom:0};const containerStyle={height:\"100%\",display:\"flex\",borderRadius:10,cursor:\"inherit\",overflow:\"hidden\"};const bodyOverflowHidden=\"__framer-overflow-hidden\";/**\n *\n * SEARCH\n * By Anthony and Hunter\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 40\n * @framerIntrinsicHeight 40\n */const EntryPoint=withCSS(function EntryPoint(props){var _props_inputOptions_inputFont,_props_inputOptions,_props_resultOptions,_props_resultOptions_subtitleOptions,_props_inputOptions1;const overlay=useRef(null);const[isOpen,setIsOpen]=useState(false);const[isOverLimit,setIsOverLimit]=useState(false);const[isSafariTouchDevice,setIsSafariTouchDevice]=useState(false);const[isOnCanvas]=useState(()=>RenderTarget.current()===RenderTarget.canvas);useEffect(()=>{setIsOverLimit(checkIfOverLimit());setIsSafariTouchDevice(Browser.isSafari()&&Browser.isTouch());},[]);const baseInputFontSize=((_props_inputOptions=props.inputOptions)===null||_props_inputOptions===void 0?void 0:(_props_inputOptions_inputFont=_props_inputOptions.inputFont)===null||_props_inputOptions_inputFont===void 0?void 0:_props_inputOptions_inputFont.fontSize)?props.inputOptions.inputFont.fontSize:\"16px\";// The font size is set to a minimum of `16px` on Safari with touch screens\n// because otherwise Safari will zoom in slightly if the type size is smaller.\nconst inputFontSize=isSafariTouchDevice?`max(16px, ${baseInputFontSize})`:baseInputFontSize;const layoutType=useViewportSizeState(size=>{if(size.width<props.modalOptions.width+10){return SearchLayoutType.FixedTop;}// @ts-ignore \u2013 Fallback\nreturn props.modalOptions.layoutType||props.layoutType;});const theme={subtitleColor:props.resultOptions.subtitleOptions.subtitleColor,backgroundColor:props.modalOptions.backgroundColor,foregroundColor:props.resultOptions.titleColor,placeholderColor:props.inputOptions.placeholderOptions.placeholderColor,titleFont:((_props_resultOptions=props.resultOptions)===null||_props_resultOptions===void 0?void 0:_props_resultOptions.titleFont)&&!isEmptyObject(props.resultOptions.titleFont)?props.resultOptions.titleFont:{fontSize:14,fontFamily:DEFAULT_FONT_FAMILY,fontWeight:500},subtitleFont:((_props_resultOptions_subtitleOptions=props.resultOptions.subtitleOptions)===null||_props_resultOptions_subtitleOptions===void 0?void 0:_props_resultOptions_subtitleOptions.subtitleFont)&&!isEmptyObject(props.resultOptions.subtitleOptions.subtitleFont)?props.resultOptions.subtitleOptions.subtitleFont:{fontSize:12,fontFamily:DEFAULT_FONT_FAMILY,fontWeight:500},inputFont:((_props_inputOptions1=props.inputOptions)===null||_props_inputOptions1===void 0?void 0:_props_inputOptions1.inputFont)&&!isEmptyObject(props.inputOptions.inputFont)?props.inputOptions.inputFont:{fontSize:16,fontFamily:DEFAULT_FONT_FAMILY,fontWeight:500},// Keep separate so we can more easily override\ninputFontSize:inputFontSize,width:props.modalOptions.width,offsetTop:props.modalOptions.top,borderRadius:props.modalOptions.borderRadius,shadow:buildShadow(props.modalOptions.shadow),entryIconColor:props.iconColor,entryIconSize:props.iconSize,entryIconImage:props.iconImage,inputIconSize:props.inputOptions.iconOptions.iconSize,inputIconColor:props.inputOptions.iconOptions.iconColor,inputIconImage:props.inputOptions.iconOptions.iconImage,gapBetweenStatusAndSearch:16,gapBetweenResults:1,scrollBarWidth:20,margin:10,spacing:8,zIndex:props.backdropOptions.zIndex,horizontalSpacing:20,overlayTransition:props.backdropOptions.transition};const handleClick=event=>{// Both need to keep `autofocus` working on the search input.\nevent.preventDefault();event.stopPropagation();if(isOverLimit)return;setIsOpen(true);};return /*#__PURE__*/_jsxs(\"div\",{style:{...containerStyle,...props.style,pointerEvents:isOverLimit?\"none\":\"auto\",opacity:isOverLimit?.4:1},children:[/*#__PURE__*/_jsx(\"button\",{\"aria-label\":\"Search Icon\",style:{width:\"100%\",height:\"100%\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",background:\"none\",cursor:\"inherit\",color:\"inherit\",border:\"none\",outline:\"inherit\",padding:0},onClick:handleClick,children:props.iconType===SearchIconType.Custom&&theme.entryIconImage?/*#__PURE__*/_jsx(\"img\",{alt:\"icon entry point for Site Search\",src:theme.entryIconImage.src,width:theme.entryIconSize,height:theme.entryIconSize}):/*#__PURE__*/_jsx(SearchIcon,{color:theme.entryIconColor,width:theme.entryIconSize,height:theme.entryIconSize})}),/*#__PURE__*/_jsx(AnimatePresence,{children:isOpen&&!isOnCanvas&&/*#__PURE__*/_jsx(Overlay,{ref:overlay,layoutType:layoutType,urlScope:props.urlScope,inputOptions:props.inputOptions,resultOptions:props.resultOptions,backdropOptions:props.backdropOptions,modalOptions:props.modalOptions,theme:theme,onDismiss:()=>setIsOpen(false)})})]});},[// Prevent scrolling on iOS Safari when Input is focused.\n// From: https://gist.github.com/kiding/72721a0553fa93198ae2bb6eefaa3299\n`\n        @keyframes __framer-blink-input {\n            0% { opacity: 0; }\n            100% { opacity: 1; }\n        }\n\n        .__framer-search-modal-container input:focus {\n            animation: __framer-blink-input 0.01s;\n        }\n        `,// Allow styling of input placeholder\n`\n         .__framer-search-modal-container input::placeholder, \n         .__framer-search-modal-container input::-webkit-input-placeholder { \n            color: var(--framer-search-placeholder-color, #999999);\n            opacity: 1;\n        }\n        `,// Allow fallback to 100vh when dvh unit is not supported.\n`\n        .__framer-search-modal-container {\n            height: 100vh;\n            height: 100dvh;\n        }\n        .__framer-search-modal-container .__framer-max-height-80dvh {\n            max-height: 80vh;\n            max-height: 80dvh;\n        }\n        `,`\n        body.${bodyOverflowHidden} {\n            overflow: hidden;\n        }`,// Increase hit target\n`\n        button.__framer-search-clear-button {\n            position: relative;\n        }\n        button.__framer-search-clear-button::after {\n            content: \"\";\n            position: absolute;\n            top: -10px;\n            right: -10px;\n            bottom: -10px;\n            left: -10px;\n        }`]);export default EntryPoint;addPropertyControls(EntryPoint,{urlScope:{title:\"Scope\",// @ts-ignore - Internal\ntype:ControlType.PageScope},// entryType: {\n//     title: \"Type\",\n//     type: ControlType.Enum,\n//     options: Object.values(SearchEntryType),\n//     optionTitles: Object.values(SearchEntryType).map(titleCase),\n//     displaySegmentedControl: true,\n// },\niconType:{title:\"Icon\",type:ControlType.Enum,options:Object.values(SearchIconType),optionTitles:Object.values(SearchIconType).map(titleCase),displaySegmentedControl:true},iconColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#333\",hidden:props=>props.iconType===SearchIconType.Custom},iconImage:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.iconType===SearchIconType.Default},iconSize:{title:\"Size\",type:ControlType.Number,displayStepper:true,defaultValue:24},inputOptions:{title:\"Input\",type:ControlType.Object,buttonTitle:\"Icon, Styles\",controls:{iconOptions:{title:\"Icon\",type:ControlType.Object,buttonTitle:\"Color, Size\",controls:{iconType:{title:\"Icon\",type:ControlType.Enum,options:Object.values(SearchIconType),optionTitles:Object.values(SearchIconType).map(titleCase),displaySegmentedControl:true},iconColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.45)\",hidden:({iconType})=>{return iconType===SearchIconType.Custom;}},iconImage:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:({iconType})=>iconType===SearchIconType.Default},iconSize:{title:\"Icon Size\",type:ControlType.Number,displayStepper:true,defaultValue:18,min:0,max:100}}},inputFont:{title:\"Font\",// @ts-ignore \u2013\u00A0Internal\ntype:ControlType.Font,displayFontSize:true},textColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#333\"},placeholderOptions:{title:\"Placeholder\",type:ControlType.Object,buttonTitle:\"Color, Text\",controls:{placeholderText:{title:\"Text\",type:ControlType.String,defaultValue:\"Search...\"},placeholderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.4)\"}}},dividerType:{title:\"Divider\",type:ControlType.Enum,options:Object.values(SearchInputDividerType),optionTitles:Object.keys(SearchInputDividerType).map(titleCase),defaultValue:SearchInputDividerType.FullWidth},clearButtonType:{title:\"Clear Type\",type:ControlType.Enum,options:Object.values(SearchInputClearButtonType),optionTitles:Object.keys(SearchInputClearButtonType).map(titleCase),defaultValue:SearchInputClearButtonType.Icon},clearButtonText:{title:\"Clear Text\",type:ControlType.String,defaultValue:\"Clear\",hidden:props=>props.clearButtonType!==SearchInputClearButtonType.Text}}},modalOptions:{title:\"Modal\",buttonTitle:\"Layout, Width\",type:ControlType.Object,controls:{layoutType:{title:\"Layout\",type:ControlType.Enum,options:Object.keys(SearchLayoutType),optionTitles:Object.values(SearchLayoutType).map(titleCase),defaultValue:SearchLayoutType.QuickMenu},width:{title:\"Width\",type:ControlType.Number,defaultValue:500,min:200,max:1e3,displayStepper:true,step:5,hidden:props=>props.layoutType===SearchLayoutType.FixedTop},top:{title:\"Top\",type:ControlType.Number,defaultValue:0,min:0,max:1e3,displayStepper:true,hidden:props=>props.layoutType!==SearchLayoutType.FixedTop},heightIsStatic:{title:\"Height\",type:ControlType.Boolean,enabledTitle:\"Instant\",disabledTitle:\"Animate\",hidden:({layoutType})=>layoutType!==SearchLayoutType.QuickMenu},heightTransition:{title:\"Type\",type:ControlType.Transition,defaultValue:{type:\"spring\",stiffness:800,damping:60},hidden:({heightIsStatic,layoutType})=>layoutType!==SearchLayoutType.QuickMenu||heightIsStatic},borderRadius:{title:\"Radius\",type:ControlType.Number,defaultValue:16,displayStepper:true,min:0,hidden:({layoutType})=>layoutType!==SearchLayoutType.QuickMenu},shadow:{buttonTitle:\"Options\",type:ControlType.Object,defaultValue:{x:0,y:20,blur:40,spread:0,color:\"rgba(0,0,0,0.2)\"},controls:{color:{type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.2)\"},x:{type:ControlType.Number,defaultValue:0},y:{type:ControlType.Number,defaultValue:20},blur:{type:ControlType.Number,defaultValue:40},spread:{type:ControlType.Number,defaultValue:0}}},backgroundColor:{title:\"Background\",type:ControlType.Color,defaultValue:\"#FFF\"},[animationKeyFromLayout(SearchLayoutType.QuickMenu)]:{title:\"Animation\",type:ControlType.Object,icon:\"effect\",hidden:({layoutType})=>layoutType!==SearchLayoutType.QuickMenu,optional:true,buttonTitle:\"Options\",controls:{opacity:{type:ControlType.Number,defaultValue:.5,step:.1,min:0,max:1},scale:{type:ControlType.Number,defaultValue:.75,step:.1,min:0,max:2},// rotate: {\n//     type: ControlType.Number,\n//     defaultValue: 0,\n//     min: -360,\n//     max: 360,\n// },\nx:{type:ControlType.Number,defaultValue:0,min:-500,max:500},y:{type:ControlType.Number,defaultValue:0,min:-500,max:500},transition:{type:ControlType.Transition}}},[animationKeyFromLayout(SearchLayoutType.FixedTop)]:{title:\"Animation\",type:ControlType.Object,icon:\"effect\",buttonTitle:\"Options\",hidden:({layoutType})=>layoutType!==SearchLayoutType.FixedTop,optional:true,controls:{opacity:{type:ControlType.Number,defaultValue:.8,step:.1,min:0,max:1},y:{type:ControlType.Number,defaultValue:0,min:-100,max:100},transition:{type:ControlType.Transition}}},[animationKeyFromLayout(SearchLayoutType.Sidebar)]:{title:\"Animation\",type:ControlType.Object,icon:\"effect\",buttonTitle:\"Options\",hidden:({layoutType})=>layoutType!==SearchLayoutType.Sidebar,optional:true,controls:{opacity:{type:ControlType.Number,defaultValue:.8,step:.1,min:0,max:1},x:{type:ControlType.Number,defaultValue:0,min:-1e3,max:1e3},transition:{type:ControlType.Transition}}}}},resultOptions:{title:\"Results\",buttonTitle:\"Fonts, Style\",type:ControlType.Object,defaultValue:{},// description:\n//     \"Learn more about how to use Site Search [here](https://framer.com/learn/site-search)\",\ncontrols:{itemType:{title:\"Style\",type:ControlType.Enum,options:Object.values(SearchResultItemType),optionTitles:Object.keys(SearchResultItemType).map(titleCase),defaultValue:SearchResultItemType.FullWidth},titleFont:{title:\"Title\",// @ts-ignore - Internal\ntype:ControlType.Font,defaultValue:{fontSize:15},displayFontSize:true},titleColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#333\"},titleType:{title:\"Content\",type:ControlType.Enum,options:Object.values(SearchResultTitleType),optionTitles:Object.keys(SearchResultTitleType).map(titleCase),defaultValue:SearchResultTitleType.H1,displaySegmentedControl:true},subtitleOptions:{type:ControlType.Object,title:\"Subtitle\",buttonTitle:\"Font, Content\",controls:{subtitleFont:{title:\"Font\",// @ts-ignore - Internal\ntype:ControlType.Font,defaultValue:{fontSize:13},displayFontSize:true},subtitleColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.4)\"},subtitleType:{title:\"Content\",type:ControlType.Enum,options:Object.values(SearchResultSubtitleType),optionTitles:Object.keys(SearchResultSubtitleType).map(titleCase),defaultValue:SearchResultSubtitleType.Path}}}}},backdropOptions:{title:\"Backdrop\",type:ControlType.Object,buttonTitle:\"Color, Z Index\",controls:{backgroundColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.8)\"},zIndex:{title:\"Z Index\",type:ControlType.Number,defaultValue:10,displayStepper:true,min:0,max:10},transition:{type:ControlType.Transition}}}});EntryPoint.displayName=\"Search\";\nexport const __FramerMetadata__ = {\"exports\":{\"ResponsiveImage\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Shadow\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"EntryPoint\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"40\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"40\"}},\"EntryPointProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"WindowAnimation\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3fa6aa4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Search from\"https://framerusercontent.com/modules/6wAE2eMb2Tl3zrU7u4UL/HPzg2Uk7mwtBmDzvGbWF/Search.js\";import MiscTooltip from\"https://framerusercontent.com/modules/kMbKz07aUxxBrd1CzZVU/7MuqRIHL52HGrrewY4wB/SJ0ksHul6.js\";const MiscTooltipFonts=getFonts(MiscTooltip);const SearchFonts=getFonts(Search);const enabledGestures={dgdvEq7Hq:{hover:true},MecLSKATn:{hover:true},pd1L9xA8w:{hover:true},qeE4v0FCJ:{hover:true},tw9r28ShS:{hover:true},wmrJsE8gY:{hover:true},x7gnlDhoY:{hover:true},Y1VzCeAMC:{hover:true}};const cycleOrder=[\"wmrJsE8gY\",\"Y1VzCeAMC\",\"qeE4v0FCJ\",\"x7gnlDhoY\",\"dgdvEq7Hq\",\"tw9r28ShS\",\"pd1L9xA8w\",\"MecLSKATn\"];const serializationHash=\"framer-QfoFU\";const variantClassNames={dgdvEq7Hq:\"framer-v-1ybymaa\",MecLSKATn:\"framer-v-u579rc\",pd1L9xA8w:\"framer-v-rdax90\",qeE4v0FCJ:\"framer-v-oempt5\",tw9r28ShS:\"framer-v-16uq6tn\",wmrJsE8gY:\"framer-v-1nvt55s\",x7gnlDhoY:\"framer-v-sefyp6\",Y1VzCeAMC:\"framer-v-1p8crri\"};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 transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;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 humanReadableVariantMap={About:\"tw9r28ShS\",Contact:\"pd1L9xA8w\",Home:\"wmrJsE8gY\",Search:\"MecLSKATn\",Stack:\"dgdvEq7Hq\",Store:\"x7gnlDhoY\",Work:\"Y1VzCeAMC\",Writing:\"qeE4v0FCJ\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"wmrJsE8gY\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wmrJsE8gY\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1dnk575=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"MecLSKATn\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"Y1VzCeAMC-hover\",\"qeE4v0FCJ-hover\",\"x7gnlDhoY-hover\",\"dgdvEq7Hq-hover\",\"tw9r28ShS-hover\",\"pd1L9xA8w-hover\",\"MecLSKATn-hover\"].includes(gestureVariant))return false;if([\"Y1VzCeAMC\",\"qeE4v0FCJ\",\"x7gnlDhoY\",\"dgdvEq7Hq\",\"tw9r28ShS\",\"pd1L9xA8w\",\"MecLSKATn\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"Y1VzCeAMC-hover\")return true;if(baseVariant===\"Y1VzCeAMC\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"qeE4v0FCJ-hover\")return true;if(baseVariant===\"qeE4v0FCJ\")return true;return false;};const isDisplayed3=()=>{if(gestureVariant===\"x7gnlDhoY-hover\")return true;if(baseVariant===\"x7gnlDhoY\")return true;return false;};const isDisplayed4=()=>{if(gestureVariant===\"dgdvEq7Hq-hover\")return true;if(baseVariant===\"dgdvEq7Hq\")return true;return false;};const isDisplayed5=()=>{if(gestureVariant===\"tw9r28ShS-hover\")return true;if(baseVariant===\"tw9r28ShS\")return true;return false;};const isDisplayed6=()=>{if(gestureVariant===\"pd1L9xA8w-hover\")return true;if(baseVariant===\"pd1L9xA8w\")return true;return false;};const isDisplayed7=()=>{if(gestureVariant===\"MecLSKATn-hover\")return true;if(baseVariant===\"MecLSKATn\")return true;return false;};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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1nvt55s\",className,classNames),\"data-framer-name\":\"Home\",layoutDependency:layoutDependency,layoutId:\"wmrJsE8gY\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"dgdvEq7Hq-hover\":{\"data-framer-name\":undefined},\"MecLSKATn-hover\":{\"data-framer-name\":undefined},\"pd1L9xA8w-hover\":{\"data-framer-name\":undefined},\"qeE4v0FCJ-hover\":{\"data-framer-name\":undefined},\"tw9r28ShS-hover\":{\"data-framer-name\":undefined},\"wmrJsE8gY-hover\":{\"data-framer-name\":undefined},\"x7gnlDhoY-hover\":{\"data-framer-name\":undefined},\"Y1VzCeAMC-hover\":{\"data-framer-name\":undefined},dgdvEq7Hq:{\"data-framer-name\":\"Stack\"},MecLSKATn:{\"data-framer-name\":\"Search\",\"data-highlight\":true,onTap:onTap1dnk575},pd1L9xA8w:{\"data-framer-name\":\"Contact\"},qeE4v0FCJ:{\"data-framer-name\":\"Writing\"},tw9r28ShS:{\"data-framer-name\":\"About\"},x7gnlDhoY:{\"data-framer-name\":\"Store\"},Y1VzCeAMC:{\"data-framer-name\":\"Work\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cgw5vb\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"OJW0P7ioH\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1wv8ulf\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"HEbIPAonc\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 3 10.963 C 3 10.024 3 9.554 3.129 9.128 C 3.244 8.751 3.432 8.4 3.682 8.095 C 3.965 7.751 4.356 7.49 5.137 6.969 L 9.337 4.169 C 10.3 3.528 10.781 3.207 11.301 3.083 C 11.761 2.972 12.239 2.972 12.699 3.083 C 13.219 3.207 13.7 3.528 14.663 4.169 L 18.863 6.969 C 19.644 7.49 20.035 7.751 20.318 8.095 C 20.568 8.4 20.756 8.751 20.87 9.128 C 21 9.554 21 10.024 21 10.963 L 21 15.595 C 21 17.275 21 18.115 20.673 18.756 C 20.385 19.321 19.927 19.78 19.362 20.067 C 18.72 20.395 17.88 20.395 16.2 20.395 L 7.8 20.395 C 6.12 20.395 5.28 20.395 4.638 20.067 C 4.074 19.78 3.615 19.321 3.327 18.756 C 3 18.115 3 17.275 3 15.595 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:2138330507,withExternalLayout:true,...addPropertyOverrides({\"wmrJsE8gY-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 3 10.963 C 3 10.024 3 9.554 3.129 9.128 C 3.244 8.751 3.432 8.4 3.682 8.095 C 3.965 7.751 4.356 7.49 5.137 6.969 L 9.337 4.169 C 10.3 3.528 10.781 3.207 11.301 3.083 C 11.761 2.972 12.239 2.972 12.699 3.083 C 13.219 3.207 13.7 3.528 14.663 4.169 L 18.863 6.969 C 19.644 7.49 20.035 7.751 20.318 8.095 C 20.568 8.4 20.756 8.751 20.87 9.128 C 21 9.554 21 10.024 21 10.963 L 21 15.595 C 21 17.275 21 18.115 20.673 18.756 C 20.385 19.321 19.927 19.78 19.362 20.067 C 18.72 20.395 17.88 20.395 16.2 20.395 L 7.8 20.395 C 6.12 20.395 5.28 20.395 4.638 20.067 C 4.074 19.78 3.615 19.321 3.327 18.756 C 3 18.115 3 17.275 3 15.595 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-b4e820f5-6770-4adb-b078-2a0c8e7bef00, rgb(112, 112, 112)) /* {&quot;name&quot;:&quot;Icon/Hover&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:9138870797}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1u0ygdy\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"XvVSlyygZ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 18 3 C 17.204 3 16.441 3.316 15.879 3.879 C 15.316 4.441 15 5.204 15 6 L 15 18 C 15 18.796 15.316 19.559 15.879 20.121 C 16.441 20.684 17.204 21 18 21 C 18.796 21 19.559 20.684 20.121 20.121 C 20.684 19.559 21 18.796 21 18 C 21 17.204 20.684 16.441 20.121 15.879 C 19.559 15.316 18.796 15 18 15 L 6 15 C 5.204 15 4.441 15.316 3.879 15.879 C 3.316 16.441 3 17.204 3 18 C 3 18.796 3.316 19.559 3.879 20.121 C 4.441 20.684 5.204 21 6 21 C 6.796 21 7.559 20.684 8.121 20.121 C 8.684 19.559 9 18.796 9 18 L 9 6 C 9 5.204 8.684 4.441 8.121 3.879 C 7.559 3.316 6.796 3 6 3 C 5.204 3 4.441 3.316 3.879 3.879 C 3.316 4.441 3 5.204 3 6 C 3 6.796 3.316 7.559 3.879 8.121 C 4.441 8.684 5.204 9 6 9 L 18 9 C 18.796 9 19.559 8.684 20.121 8.121 C 20.684 7.559 21 6.796 21 6 C 21 5.204 20.684 4.441 20.121 3.879 C 19.559 3.316 18.796 3 18 3 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:3920048869,withExternalLayout:true,...addPropertyOverrides({\"Y1VzCeAMC-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 18 3 C 17.204 3 16.441 3.316 15.879 3.879 C 15.316 4.441 15 5.204 15 6 L 15 18 C 15 18.796 15.316 19.559 15.879 20.121 C 16.441 20.684 17.204 21 18 21 C 18.796 21 19.559 20.684 20.121 20.121 C 20.684 19.559 21 18.796 21 18 C 21 17.204 20.684 16.441 20.121 15.879 C 19.559 15.316 18.796 15 18 15 L 6 15 C 5.204 15 4.441 15.316 3.879 15.879 C 3.316 16.441 3 17.204 3 18 C 3 18.796 3.316 19.559 3.879 20.121 C 4.441 20.684 5.204 21 6 21 C 6.796 21 7.559 20.684 8.121 20.121 C 8.684 19.559 9 18.796 9 18 L 9 6 C 9 5.204 8.684 4.441 8.121 3.879 C 7.559 3.316 6.796 3 6 3 C 5.204 3 4.441 3.316 3.879 3.879 C 3.316 4.441 3 5.204 3 6 C 3 6.796 3.316 7.559 3.879 8.121 C 4.441 8.684 5.204 9 6 9 L 18 9 C 18.796 9 19.559 8.684 20.121 8.121 C 20.684 7.559 21 6.796 21 6 C 21 5.204 20.684 4.441 20.121 3.879 C 19.559 3.316 18.796 3 18 3 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-b4e820f5-6770-4adb-b078-2a0c8e7bef00, rgb(112, 112, 112)) /* {&quot;name&quot;:&quot;Icon/Hover&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:12721442365},Y1VzCeAMC:{svgContentId:9458368389}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1iko32o\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"hxhV7bLxT\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 2 22 L 22 22 M 6.765 16.887 L 3.776 17.425 C 3.097 17.547 2.5 16.96 2.612 16.278 L 3.113 13.235 L 12.945 3.432 C 13.081 3.295 13.242 3.186 13.42 3.112 C 13.598 3.038 13.789 3 13.982 3 C 14.175 3 14.366 3.038 14.544 3.112 C 14.722 3.186 14.883 3.295 15.019 3.432 L 16.568 4.981 C 16.705 5.117 16.813 5.278 16.888 5.456 C 16.962 5.634 17 5.825 17 6.018 C 17 6.211 16.962 6.402 16.888 6.58 C 16.813 6.758 16.705 6.919 16.568 7.055 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:2593724247,withExternalLayout:true,...addPropertyOverrides({\"qeE4v0FCJ-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 2 22 L 22 22 M 6.765 16.887 L 3.776 17.425 C 3.097 17.547 2.5 16.96 2.612 16.278 L 3.113 13.235 L 12.945 3.432 C 13.081 3.295 13.242 3.186 13.42 3.112 C 13.598 3.038 13.789 3 13.982 3 C 14.175 3 14.366 3.038 14.544 3.112 C 14.722 3.186 14.883 3.295 15.019 3.432 L 16.568 4.981 C 16.705 5.117 16.813 5.278 16.888 5.456 C 16.962 5.634 17 5.825 17 6.018 C 17 6.211 16.962 6.402 16.888 6.58 C 16.813 6.758 16.705 6.919 16.568 7.055 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-b4e820f5-6770-4adb-b078-2a0c8e7bef00, rgb(112, 112, 112)) /* {&quot;name&quot;:&quot;Icon/Hover&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:9358820798},qeE4v0FCJ:{svgContentId:12750532173}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-o9d790\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ACu7Z5a59\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 21 16.418 L 21 11.998 L 21 10 C 21 8.343 19.657 7 18 7 L 6 7 C 4.343 7 3 8.343 3 10 L 3 11.998 L 3 16.418 C 3 18.022 3 18.824 3.327 19.436 C 3.615 19.975 4.074 20.413 4.638 20.688 C 5.28 21 6.12 21 7.8 21 L 16.2 21 C 17.88 21 18.72 21 19.362 20.688 C 19.927 20.413 20.385 19.975 20.673 19.436 C 21 18.824 21 18.022 21 16.418 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 8 11 L 8 7 C 8 4.791 9.791 3 12 3 L 12 3 C 14.209 3 16 4.791 16 7 L 16 11\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:2445907379,withExternalLayout:true,...addPropertyOverrides({\"x7gnlDhoY-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 21 16.418 L 21 11.998 L 21 10 C 21 8.343 19.657 7 18 7 L 6 7 C 4.343 7 3 8.343 3 10 L 3 11.998 L 3 16.418 C 3 18.022 3 18.824 3.327 19.436 C 3.615 19.975 4.074 20.413 4.638 20.688 C 5.28 21 6.12 21 7.8 21 L 16.2 21 C 17.88 21 18.72 21 19.362 20.688 C 19.927 20.413 20.385 19.975 20.673 19.436 C 21 18.824 21 18.022 21 16.418 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-b4e820f5-6770-4adb-b078-2a0c8e7bef00, rgb(112, 112, 112)) /* {&quot;name&quot;:&quot;Icon/Hover&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 8 11 L 8 7 C 8 4.791 9.791 3 12 3 L 12 3 C 14.209 3 16 4.791 16 7 L 16 11\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-b4e820f5-6770-4adb-b078-2a0c8e7bef00, rgb(112, 112, 112)) /* {&quot;name&quot;:&quot;Icon/Hover&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:11986406600},x7gnlDhoY:{svgContentId:9092024556}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-pxc87l\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"PWgCN8PJf\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(4 3.074)\" id=\"ss488400017_1\"><path d=\"M 16 8.463 L 10.544 11.873 C 9.621 12.45 9.16 12.738 8.665 12.851 C 8.227 12.95 7.773 12.95 7.335 12.851 C 6.84 12.738 6.379 12.45 5.456 11.873 L 0 8.463\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 16 12.463 L 10.544 15.873 C 9.621 16.45 9.16 16.738 8.665 16.851 C 8.227 16.95 7.773 16.95 7.335 16.851 C 6.84 16.738 6.379 16.45 5.456 15.873 L 0 12.463\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 16 4.462 L 10.544 1.052 C 9.621 0.476 9.16 0.187 8.665 0.075 C 8.227 -0.025 7.773 -0.025 7.335 0.075 C 6.84 0.187 6.379 0.476 5.456 1.052 L 0 4.462 L 5.456 7.872 C 6.379 8.449 6.84 8.738 7.335 8.85 C 7.773 8.949 8.227 8.949 8.665 8.85 C 9.16 8.738 9.621 8.449 10.544 7.872 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:488400017,withExternalLayout:true,...addPropertyOverrides({\"dgdvEq7Hq-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(4 3.074)\" id=\"ss10973081860_1\"><path d=\"M 16 8.463 L 10.544 11.873 C 9.621 12.45 9.16 12.738 8.665 12.851 C 8.227 12.95 7.773 12.95 7.335 12.851 C 6.84 12.738 6.379 12.45 5.456 11.873 L 0 8.463\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-b4e820f5-6770-4adb-b078-2a0c8e7bef00, rgb(112, 112, 112)) /* {&quot;name&quot;:&quot;Icon/Hover&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 16 12.463 L 10.544 15.873 C 9.621 16.45 9.16 16.738 8.665 16.851 C 8.227 16.95 7.773 16.95 7.335 16.851 C 6.84 16.738 6.379 16.45 5.456 15.873 L 0 12.463\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-b4e820f5-6770-4adb-b078-2a0c8e7bef00, rgb(112, 112, 112)) /* {&quot;name&quot;:&quot;Icon/Hover&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 16 4.462 L 10.544 1.052 C 9.621 0.476 9.16 0.187 8.665 0.075 C 8.227 -0.025 7.773 -0.025 7.335 0.075 C 6.84 0.187 6.379 0.476 5.456 1.052 L 0 4.462 L 5.456 7.872 C 6.379 8.449 6.84 8.738 7.335 8.85 C 7.773 8.949 8.227 8.949 8.665 8.85 C 9.16 8.738 9.621 8.449 10.544 7.872 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-b4e820f5-6770-4adb-b078-2a0c8e7bef00, rgb(112, 112, 112)) /* {&quot;name&quot;:&quot;Icon/Hover&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:10973081860},dgdvEq7Hq:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(4 3.074)\" id=\"ss8932053566_1\"><path d=\"M 16 8.463 L 10.544 11.873 C 9.621 12.45 9.16 12.738 8.665 12.851 C 8.227 12.95 7.773 12.95 7.335 12.851 C 6.84 12.738 6.379 12.45 5.456 11.873 L 0 8.463\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 16 12.463 L 10.544 15.873 C 9.621 16.45 9.16 16.738 8.665 16.851 C 8.227 16.95 7.773 16.95 7.335 16.851 C 6.84 16.738 6.379 16.45 5.456 15.873 L 0 12.463\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 16 4.462 L 10.544 1.052 C 9.621 0.476 9.16 0.187 8.665 0.075 C 8.227 -0.025 7.773 -0.025 7.335 0.075 C 6.84 0.187 6.379 0.476 5.456 1.052 L 0 4.462 L 5.456 7.872 C 6.379 8.449 6.84 8.738 7.335 8.85 C 7.773 8.949 8.227 8.949 8.665 8.85 C 9.16 8.738 9.621 8.449 10.544 7.872 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:8932053566}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-gjznud\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"z4lRZK1oy\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(5.903 3)\" id=\"ss272825343_1\"><path d=\"M 10.097 4 C 10.097 6.209 8.306 8 6.097 8 C 3.888 8 2.097 6.209 2.097 4 C 2.097 1.791 3.888 0 6.097 0 C 8.306 0 10.097 1.791 10.097 4 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 6.548 11 C 3.72 11 1.284 12.677 0.18 15.09 C -0.51 16.597 0.891 18 2.548 18 L 10.548 18 C 12.205 18 13.606 16.597 12.917 15.09 C 11.812 12.677 9.376 11 6.548 11 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:272825343,withExternalLayout:true,...addPropertyOverrides({\"tw9r28ShS-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(5.903 3)\" id=\"ss11404301040_1\"><path d=\"M 10.097 4 C 10.097 6.209 8.306 8 6.097 8 C 3.888 8 2.097 6.209 2.097 4 C 2.097 1.791 3.888 0 6.097 0 C 8.306 0 10.097 1.791 10.097 4 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-b4e820f5-6770-4adb-b078-2a0c8e7bef00, rgb(112, 112, 112)) /* {&quot;name&quot;:&quot;Icon/Hover&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 6.548 11 C 3.72 11 1.284 12.677 0.18 15.09 C -0.51 16.597 0.891 18 2.548 18 L 10.548 18 C 12.205 18 13.606 16.597 12.917 15.09 C 11.812 12.677 9.376 11 6.548 11 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-b4e820f5-6770-4adb-b078-2a0c8e7bef00, rgb(112, 112, 112)) /* {&quot;name&quot;:&quot;Icon/Hover&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:11404301040},tw9r28ShS:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(5.903 3)\" id=\"ss9092004325_1\"><path d=\"M 10.097 4 C 10.097 6.209 8.306 8 6.097 8 C 3.888 8 2.097 6.209 2.097 4 C 2.097 1.791 3.888 0 6.097 0 C 8.306 0 10.097 1.791 10.097 4 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 6.548 11 C 3.72 11 1.284 12.677 0.18 15.09 C -0.51 16.597 0.891 18 2.548 18 L 10.548 18 C 12.205 18 13.606 16.597 12.917 15.09 C 11.812 12.677 9.376 11 6.548 11 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:9092004325}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-3rk5j8\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Wab22Q2os\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 20.971 8 L 14.947 12.708 C 13.893 13.528 13.366 13.938 12.784 14.095 C 12.271 14.234 11.729 14.234 11.216 14.095 C 10.634 13.938 10.107 13.528 9.053 12.708 L 3.029 8 M 7.8 19 L 16.2 19 C 17.88 19 18.72 19 19.362 18.673 C 19.927 18.385 20.385 17.926 20.673 17.362 C 21 16.72 21 15.88 21 14.2 L 21 9.8 C 21 8.12 21 7.28 20.673 6.638 C 20.385 6.074 19.927 5.615 19.362 5.327 C 18.72 5 17.88 5 16.2 5 L 7.8 5 C 6.12 5 5.28 5 4.638 5.327 C 4.074 5.615 3.615 6.074 3.327 6.638 C 3 7.28 3 8.12 3 9.8 L 3 14.2 C 3 15.88 3 16.72 3.327 17.362 C 3.615 17.926 4.074 18.385 4.638 18.673 C 5.28 19 6.12 19 7.8 19 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:2232180570,withExternalLayout:true,...addPropertyOverrides({\"pd1L9xA8w-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 20.971 8 L 14.947 12.708 C 13.893 13.528 13.366 13.938 12.784 14.095 C 12.271 14.234 11.729 14.234 11.216 14.095 C 10.634 13.938 10.107 13.528 9.053 12.708 L 3.029 8 M 7.8 19 L 16.2 19 C 17.88 19 18.72 19 19.362 18.673 C 19.927 18.385 20.385 17.926 20.673 17.362 C 21 16.72 21 15.88 21 14.2 L 21 9.8 C 21 8.12 21 7.28 20.673 6.638 C 20.385 6.074 19.927 5.615 19.362 5.327 C 18.72 5 17.88 5 16.2 5 L 7.8 5 C 6.12 5 5.28 5 4.638 5.327 C 4.074 5.615 3.615 6.074 3.327 6.638 C 3 7.28 3 8.12 3 9.8 L 3 14.2 C 3 15.88 3 16.72 3.327 17.362 C 3.615 17.926 4.074 18.385 4.638 18.673 C 5.28 19 6.12 19 7.8 19 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-b4e820f5-6770-4adb-b078-2a0c8e7bef00, rgb(112, 112, 112)) /* {&quot;name&quot;:&quot;Icon/Hover&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:9166375798},pd1L9xA8w:{svgContentId:12688864365}},baseVariant,gestureVariant)}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-17sk7x\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"oZcWDzsMV\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 21 21 L 15 15 M 17 10 C 17 10.919 16.819 11.829 16.467 12.679 C 16.115 13.528 15.6 14.3 14.95 14.95 C 14.3 15.6 13.528 16.115 12.679 16.467 C 11.829 16.819 10.919 17 10 17 C 9.081 17 8.171 16.819 7.321 16.467 C 6.472 16.115 5.7 15.6 5.05 14.95 C 4.4 14.3 3.885 13.528 3.533 12.679 C 3.181 11.829 3 10.919 3 10 C 3 8.143 3.737 6.363 5.05 5.05 C 6.363 3.737 8.143 3 10 3 C 11.857 3 13.637 3.737 14.95 5.05 C 16.262 6.363 17 8.143 17 10 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:3141872485,withExternalLayout:true,...addPropertyOverrides({\"MecLSKATn-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 21 21 L 15 15 M 17 10 C 17 10.919 16.819 11.829 16.467 12.679 C 16.115 13.528 15.6 14.3 14.95 14.95 C 14.3 15.6 13.528 16.115 12.679 16.467 C 11.829 16.819 10.919 17 10 17 C 9.081 17 8.171 16.819 7.321 16.467 C 6.472 16.115 5.7 15.6 5.05 14.95 C 4.4 14.3 3.885 13.528 3.533 12.679 C 3.181 11.829 3 10.919 3 10 C 3 8.143 3.737 6.363 5.05 5.05 C 6.363 3.737 8.143 3 10 3 C 11.857 3 13.637 3.737 14.95 5.05 C 16.262 6.363 17 8.143 17 10 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-b4e820f5-6770-4adb-b078-2a0c8e7bef00, rgb(112, 112, 112)) /* {&quot;name&quot;:&quot;Icon/Hover&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:10511545827},MecLSKATn:{svgContentId:12394956962}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-k4dgy1-container\",layoutDependency:layoutDependency,layoutId:\"dwGAR3Nq0-container\",style:{opacity:0},transformTemplate:transformTemplate1,variants:{\"dgdvEq7Hq-hover\":{opacity:1},\"MecLSKATn-hover\":{opacity:1},\"pd1L9xA8w-hover\":{opacity:1},\"qeE4v0FCJ-hover\":{opacity:1},\"tw9r28ShS-hover\":{opacity:1},\"wmrJsE8gY-hover\":{opacity:1},\"x7gnlDhoY-hover\":{opacity:1},\"Y1VzCeAMC-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(MiscTooltip,{count:1,height:\"100%\",id:\"dwGAR3Nq0\",layoutId:\"dwGAR3Nq0\",symbol:\"/\",title:\"Home\",variant:\"y14__d0IV\",width:\"100%\",...addPropertyOverrides({dgdvEq7Hq:{count:5,title:\"Stack\"},MecLSKATn:{count:7,title:\"Search\",variant:\"Qu3kedQPy\"},pd1L9xA8w:{count:7,title:\"Contact\"},qeE4v0FCJ:{count:3,title:\"Writing\"},tw9r28ShS:{count:6,title:\"About\"},x7gnlDhoY:{count:4,title:\"Store\"},Y1VzCeAMC:{count:2,title:\"Work\"}},baseVariant,gestureVariant)})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9ur0o2-container\",layoutDependency:layoutDependency,layoutId:\"ZZEbVl_Fi-container\",children:/*#__PURE__*/_jsx(Search,{backdropOptions:{backgroundColor:\"var(--token-bbdf0ccf-dc56-4c96-a423-a6c1181ae27e, rgba(255, 255, 255, 0.8))\",transition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},zIndex:10},height:\"100%\",iconColor:\"rgba(255, 255, 255, 0)\",iconSize:24,iconType:\"default\",id:\"ZZEbVl_Fi\",inputOptions:{clearButtonText:\"Clear\",clearButtonType:\"text\",dividerType:\"none\",iconOptions:{iconColor:\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160))\",iconSize:18,iconType:\"default\"},inputFont:{fontFamily:'\"Inter\", sans-serif',fontSize:\"15px\",fontStyle:\"normal\"},placeholderOptions:{placeholderColor:\"var(--token-d50329a9-877b-46f9-8eea-803d5ad8f5f4, rgb(112, 112, 112))\",placeholderText:\"Search...\"},textColor:\"var(--token-fc64e1c6-a5ec-440a-b3b8-bb687fb66ad9, rgb(255, 255, 255))\"},layoutId:\"ZZEbVl_Fi\",modalOptions:{backgroundColor:\"var(--token-fc64e1c6-a5ec-440a-b3b8-bb687fb66ad9, rgb(255, 255, 255))\",borderRadius:16,heightIsStatic:false,heightTransition:{damping:60,stiffness:800,type:\"spring\"},layoutType:\"QuickMenu\",shadow:{blur:40,color:\"rgba(0, 0, 0, 0.2)\",spread:0,x:0,y:20},top:0,width:500},resultOptions:{itemType:\"fullWidth\",subtitleOptions:{subtitleColor:\"var(--token-d50329a9-877b-46f9-8eea-803d5ad8f5f4, rgb(112, 112, 112))\",subtitleFont:{fontFamily:'\"Inter\", sans-serif',fontSize:\"15px\",fontStyle:\"normal\"},subtitleType:\"description\"},titleColor:\"var(--token-ad295223-71a1-4c83-8af3-ed488a713d13, rgb(46, 46, 46))\",titleFont:{fontFamily:'\"Inter\", sans-serif',fontSize:\"15px\",fontStyle:\"normal\"},titleType:\"h1\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QfoFU.framer-1ytx22l, .framer-QfoFU .framer-1ytx22l { display: block; }\",\".framer-QfoFU.framer-1nvt55s { cursor: pointer; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-QfoFU .framer-cgw5vb { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-QfoFU .framer-1wv8ulf { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-QfoFU .framer-1u0ygdy, .framer-QfoFU .framer-1iko32o, .framer-QfoFU .framer-o9d790, .framer-QfoFU .framer-pxc87l, .framer-QfoFU .framer-gjznud, .framer-QfoFU .framer-3rk5j8, .framer-QfoFU .framer-17sk7x { flex: none; height: 24px; left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-QfoFU .framer-k4dgy1-container { flex: none; height: auto; left: 36px; position: absolute; top: 50%; width: auto; }\",\".framer-QfoFU .framer-9ur0o2-container { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 0px; position: absolute; right: 0px; top: 0px; z-index: 2; }\",\".framer-QfoFU.framer-v-1p8crri .framer-k4dgy1-container, .framer-QfoFU.framer-v-oempt5 .framer-k4dgy1-container, .framer-QfoFU.framer-v-sefyp6 .framer-k4dgy1-container, .framer-QfoFU.framer-v-1ybymaa .framer-k4dgy1-container, .framer-QfoFU.framer-v-16uq6tn .framer-k4dgy1-container, .framer-QfoFU.framer-v-rdax90 .framer-k4dgy1-container, .framer-QfoFU.framer-v-u579rc .framer-k4dgy1-container { left: 24px; }\",\".framer-QfoFU.framer-v-1nvt55s.hover .framer-k4dgy1-container, .framer-QfoFU.framer-v-1p8crri.hover .framer-k4dgy1-container, .framer-QfoFU.framer-v-oempt5.hover .framer-k4dgy1-container, .framer-QfoFU.framer-v-sefyp6.hover .framer-k4dgy1-container, .framer-QfoFU.framer-v-1ybymaa.hover .framer-k4dgy1-container, .framer-QfoFU.framer-v-16uq6tn.hover .framer-k4dgy1-container, .framer-QfoFU.framer-v-rdax90.hover .framer-k4dgy1-container, .framer-QfoFU.framer-v-u579rc.hover .framer-k4dgy1-container { left: 38px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Y1VzCeAMC\":{\"layout\":[\"fixed\",\"fixed\"]},\"qeE4v0FCJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"x7gnlDhoY\":{\"layout\":[\"fixed\",\"fixed\"]},\"dgdvEq7Hq\":{\"layout\":[\"fixed\",\"fixed\"]},\"tw9r28ShS\":{\"layout\":[\"fixed\",\"fixed\"]},\"pd1L9xA8w\":{\"layout\":[\"fixed\",\"fixed\"]},\"MecLSKATn\":{\"layout\":[\"fixed\",\"fixed\"]},\"owpzJ0iBd\":{\"layout\":[\"fixed\",\"fixed\"]},\"B4t6GQXYP\":{\"layout\":[\"fixed\",\"fixed\"]},\"mpz_rrwXp\":{\"layout\":[\"fixed\",\"fixed\"]},\"ASZGm_Ba_\":{\"layout\":[\"fixed\",\"fixed\"]},\"oirGOHIMq\":{\"layout\":[\"fixed\",\"fixed\"]},\"tb_bIqRDB\":{\"layout\":[\"fixed\",\"fixed\"]},\"ptGN8ctvH\":{\"layout\":[\"fixed\",\"fixed\"]},\"dcZUWC9jW\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTc9AgKTHx=withCSS(Component,css,\"framer-QfoFU\");export default FramerTc9AgKTHx;FramerTc9AgKTHx.displayName=\"Menu Item/Default\";FramerTc9AgKTHx.defaultProps={height:24,width:24};addPropertyControls(FramerTc9AgKTHx,{variant:{options:[\"wmrJsE8gY\",\"Y1VzCeAMC\",\"qeE4v0FCJ\",\"x7gnlDhoY\",\"dgdvEq7Hq\",\"tw9r28ShS\",\"pd1L9xA8w\",\"MecLSKATn\"],optionTitles:[\"Home\",\"Work\",\"Writing\",\"Store\",\"Stack\",\"About\",\"Contact\",\"Search\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerTc9AgKTHx,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...MiscTooltipFonts,...SearchFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTc9AgKTHx\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"24\",\"framerIntrinsicWidth\":\"24\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Y1VzCeAMC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qeE4v0FCJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"x7gnlDhoY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dgdvEq7Hq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tw9r28ShS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pd1L9xA8w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MecLSKATn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"owpzJ0iBd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"B4t6GQXYP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mpz_rrwXp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ASZGm_Ba_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oirGOHIMq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tb_bIqRDB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ptGN8ctvH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dcZUWC9jW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Tc9AgKTHx.map", "// Generated by Framer (b2eeca0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,getPropertyControls,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import MenuItemActive from\"https://framerusercontent.com/modules/2LcPegJZJHdmyB8mEfn3/KTjWRU7fvEyqhMAVWr1R/qf1QHAlqq.js\";import MenuItemDefault from\"https://framerusercontent.com/modules/yXQovqtEr5CwcNFRy3SO/Wygi9BhDB5R5SFwSMoKl/Tc9AgKTHx.js\";const MenuItemDefaultFonts=getFonts(MenuItemDefault);const MenuItemActiveFonts=getFonts(MenuItemActive);const MenuItemDefaultControls=getPropertyControls(MenuItemDefault);const MenuItemActiveControls=getPropertyControls(MenuItemActive);const cycleOrder=[\"cYNZQBYa3\",\"Sk8wcIatp\"];const variantClassNames={cYNZQBYa3:\"framer-v-pmah44\",Sk8wcIatp:\"framer-v-1fo1tg8\"};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={Active:\"Sk8wcIatp\",Default:\"cYNZQBYa3\"};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"tween\"}};const Component=/*#__PURE__*/React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"cYNZQBYa3\",defaultIcon:SOU0tMChl=\"wmrJsE8gY\",activeIcon:QuJJKW1A1=\"uDBBUBKT3\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"cYNZQBYa3\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const isDisplayed=()=>{if(baseVariant===\"Sk8wcIatp\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"Sk8wcIatp\")return true;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-XS28D\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(\"framer-pmah44\",className),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"cYNZQBYa3\",ref:ref,style:{...style},transition:transition,...addPropertyOverrides({Sk8wcIatp:{\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-oc5rb7-container\",layoutDependency:layoutDependency,layoutId:\"cnC6I9_Uf-container\",transition:transition,children:/*#__PURE__*/_jsx(MenuItemDefault,{height:\"100%\",id:\"cnC6I9_Uf\",layoutId:\"cnC6I9_Uf\",style:{height:\"100%\",width:\"100%\"},variant:SOU0tMChl,width:\"100%\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hn81f5-container\",layoutDependency:layoutDependency,layoutId:\"HKoJtjguw-container\",transition:transition,children:/*#__PURE__*/_jsx(MenuItemActive,{height:\"100%\",id:\"HKoJtjguw\",layoutId:\"HKoJtjguw\",style:{height:\"100%\",width:\"100%\"},variant:QuJJKW1A1,width:\"100%\"})})]})})});});const css=['.framer-XS28D [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-XS28D .framer-dcy4kg { display: block; }\",\".framer-XS28D .framer-pmah44 { height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-XS28D .framer-oc5rb7-container, .framer-XS28D .framer-1hn81f5-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Sk8wcIatp\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"SOU0tMChl\":\"defaultIcon\",\"QuJJKW1A1\":\"activeIcon\"}\n */const FramerUp7mEIh0R=withCSS(Component,css,\"framer-XS28D\");export default FramerUp7mEIh0R;FramerUp7mEIh0R.displayName=\"Menu Item/State\";FramerUp7mEIh0R.defaultProps={height:24,width:24};addPropertyControls(FramerUp7mEIh0R,{variant:{options:[\"cYNZQBYa3\",\"Sk8wcIatp\"],optionTitles:[\"Default\",\"Active\"],title:\"Variant\",type:ControlType.Enum},SOU0tMChl:(MenuItemDefaultControls===null||MenuItemDefaultControls===void 0?void 0:MenuItemDefaultControls[\"variant\"])&&{...MenuItemDefaultControls[\"variant\"],defaultValue:\"wmrJsE8gY\",hidden:undefined,title:\"Default Icon\"},QuJJKW1A1:(MenuItemActiveControls===null||MenuItemActiveControls===void 0?void 0:MenuItemActiveControls[\"variant\"])&&{...MenuItemActiveControls[\"variant\"],defaultValue:\"uDBBUBKT3\",hidden:undefined,title:\"Active Icon\"}});addFonts(FramerUp7mEIh0R,[...MenuItemDefaultFonts,...MenuItemActiveFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUp7mEIh0R\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Sk8wcIatp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"SOU0tMChl\\\":\\\"defaultIcon\\\",\\\"QuJJKW1A1\\\":\\\"activeIcon\\\"}\",\"framerIntrinsicWidth\":\"24\",\"framerIntrinsicHeight\":\"24\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3eae0e1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{with1,with2,with5,with6,withBackSlash}from\"https://framerusercontent.com/modules/8Z3YtMrSUR9Op5iJcjAF/x0MHKqZGveKtIompP5YD/Shortcut.js\";import MenuItemState from\"https://framerusercontent.com/modules/esSdvrXOWiWHOVssHDeU/k4JwPpubOEhBWppFyeBQ/Up7mEIh0R.js\";const MenuItemStateFonts=getFonts(MenuItemState);const MotionAWith1=with1(motion.a);const MotionAWith2=with2(motion.a);const MotionAWith6=with6(motion.a);const MotionAWith5=with5(motion.a);const MotionDivWithBackSlash=withBackSlash(motion.div);const cycleOrder=[\"CWzXnCRwW\",\"S5ZkamQZj\",\"oopn3u7pA\",\"peYnQSkih\",\"x7ysP3A_M\",\"IIOQIg27L\",\"XT_bmPSMx\",\"iEab1xl2_\"];const serializationHash=\"framer-73ANg\";const variantClassNames={CWzXnCRwW:\"framer-v-1m6jo5o\",iEab1xl2_:\"framer-v-29pzwd\",IIOQIg27L:\"framer-v-1agrgjf\",oopn3u7pA:\"framer-v-33ouh\",peYnQSkih:\"framer-v-v97oux\",S5ZkamQZj:\"framer-v-1bcnnzi\",x7ysP3A_M:\"framer-v-1nwa1s2\",XT_bmPSMx:\"framer-v-1yymtp6\"};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 transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;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={About:\"IIOQIg27L\",Blog:\"oopn3u7pA\",Contact:\"XT_bmPSMx\",Home:\"CWzXnCRwW\",None:\"iEab1xl2_\",Stack:\"x7ysP3A_M\",Store:\"peYnQSkih\",Work:\"S5ZkamQZj\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"CWzXnCRwW\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"CWzXnCRwW\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);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__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1m6jo5o\",className,classNames),\"data-framer-name\":\"Home\",layoutDependency:layoutDependency,layoutId:\"CWzXnCRwW\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-fc64e1c6-a5ec-440a-b3b8-bb687fb66ad9, rgb(255, 255, 255))\",...style},...addPropertyOverrides({iEab1xl2_:{\"data-framer-name\":\"None\"},IIOQIg27L:{\"data-framer-name\":\"About\"},oopn3u7pA:{\"data-framer-name\":\"Blog\"},peYnQSkih:{\"data-framer-name\":\"Store\"},S5ZkamQZj:{\"data-framer-name\":\"Work\"},x7ysP3A_M:{\"data-framer-name\":\"Stack\"},XT_bmPSMx:{\"data-framer-name\":\"Contact\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bip8xb\",\"data-framer-name\":\"Border\",layoutDependency:layoutDependency,layoutId:\"NS0JTHVK5\",style:{backgroundColor:\"var(--token-cca6eaa3-b99f-410d-b5ba-bb0e17782c07, rgb(237, 237, 237))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pqw30e\",\"data-framer-name\":\"Icons\",layoutDependency:layoutDependency,layoutId:\"KvZEb0ppT\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},children:/*#__PURE__*/_jsx(MotionAWith1,{className:\"framer-1g0xfrj framer-1xhpmzm\",\"data-framer-name\":\"Home\",layoutDependency:layoutDependency,layoutId:\"tR1xbJ89b\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-n9k6ap-container\",\"data-framer-name\":\"Home\",layoutDependency:layoutDependency,layoutId:\"l2QUPqgzt-container\",name:\"Home\",children:/*#__PURE__*/_jsx(MenuItemState,{activeIcon:\"uDBBUBKT3\",defaultIcon:\"wmrJsE8gY\",height:\"100%\",id:\"l2QUPqgzt\",layoutId:\"l2QUPqgzt\",name:\"Home\",style:{height:\"100%\",width:\"100%\"},variant:\"Sk8wcIatp\",width:\"100%\",...addPropertyOverrides({iEab1xl2_:{variant:\"cYNZQBYa3\"},IIOQIg27L:{variant:\"cYNZQBYa3\"},oopn3u7pA:{variant:\"cYNZQBYa3\"},peYnQSkih:{variant:\"cYNZQBYa3\"},S5ZkamQZj:{variant:\"cYNZQBYa3\"},x7ysP3A_M:{variant:\"cYNZQBYa3\"},XT_bmPSMx:{variant:\"cYNZQBYa3\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{zxdvuqEvR:\"internal-load-board-launch\"},unresolvedPathSlugs:{zxdvuqEvR:{collectionId:\"r6dJfC1gZ\",collectionItemId:\"ulHoBhoag\"}},webPageId:\"cswvWUG8A\"},children:/*#__PURE__*/_jsx(MotionAWith2,{className:\"framer-ntfij2 framer-1xhpmzm\",\"data-framer-name\":\"Work\",layoutDependency:layoutDependency,layoutId:\"Xkg1CdPm_\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-56enin-container\",\"data-framer-name\":\"Work\",layoutDependency:layoutDependency,layoutId:\"Nw2u3w223-container\",name:\"Work\",children:/*#__PURE__*/_jsx(MenuItemState,{activeIcon:\"DHVjDjckf\",defaultIcon:\"Y1VzCeAMC\",height:\"100%\",id:\"Nw2u3w223\",layoutId:\"Nw2u3w223\",name:\"Work\",style:{height:\"100%\",width:\"100%\"},variant:\"cYNZQBYa3\",width:\"100%\",...addPropertyOverrides({S5ZkamQZj:{variant:\"Sk8wcIatp\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"y3erDsgsW\"},children:/*#__PURE__*/_jsx(MotionAWith6,{className:\"framer-q98xbj framer-1xhpmzm\",\"data-framer-name\":\"About\",layoutDependency:layoutDependency,layoutId:\"M84Vn1wqB\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w9nyzw-container\",\"data-framer-name\":\"About\",layoutDependency:layoutDependency,layoutId:\"j_jtnRVI1-container\",name:\"About\",children:/*#__PURE__*/_jsx(MenuItemState,{activeIcon:\"zpYm4r81n\",defaultIcon:\"tw9r28ShS\",height:\"100%\",id:\"j_jtnRVI1\",layoutId:\"j_jtnRVI1\",name:\"About\",style:{height:\"100%\",width:\"100%\"},variant:\"cYNZQBYa3\",width:\"100%\",...addPropertyOverrides({IIOQIg27L:{variant:\"Sk8wcIatp\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"D4LQrJeeA\"},children:/*#__PURE__*/_jsx(MotionAWith5,{className:\"framer-11bblnb framer-1xhpmzm\",\"data-framer-name\":\"Stack\",layoutDependency:layoutDependency,layoutId:\"QQmqfEP6U\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18ag5aa-container\",\"data-framer-name\":\"Stack\",layoutDependency:layoutDependency,layoutId:\"oISGYC4GJ-container\",name:\"Stack\",children:/*#__PURE__*/_jsx(MenuItemState,{activeIcon:\"AvnfjMHJ9\",defaultIcon:\"dgdvEq7Hq\",height:\"100%\",id:\"oISGYC4GJ\",layoutId:\"oISGYC4GJ\",name:\"Stack\",style:{height:\"100%\",width:\"100%\"},variant:\"cYNZQBYa3\",width:\"100%\",...addPropertyOverrides({x7ysP3A_M:{variant:\"Sk8wcIatp\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(MotionDivWithBackSlash,{className:\"framer-zwx96f\",\"data-framer-name\":\"Search\",layoutDependency:layoutDependency,layoutId:\"yrJFk41bk\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ymviy7-container\",layoutDependency:layoutDependency,layoutId:\"zRT0wzRxz-container\",children:/*#__PURE__*/_jsx(MenuItemState,{activeIcon:\"RUqy2GLMF\",defaultIcon:\"MecLSKATn\",height:\"100%\",id:\"zRT0wzRxz\",layoutId:\"zRT0wzRxz\",style:{height:\"100%\",width:\"100%\"},variant:\"cYNZQBYa3\",width:\"100%\"})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-73ANg.framer-1xhpmzm, .framer-73ANg .framer-1xhpmzm { display: block; }\",\".framer-73ANg.framer-1m6jo5o { height: 800px; overflow: visible; position: relative; width: 65px; }\",\".framer-73ANg .framer-1bip8xb { flex: none; height: 100%; overflow: hidden; position: absolute; right: 0px; top: calc(50.00000000000002% - 100% / 2); width: 1px; }\",\".framer-73ANg .framer-1pqw30e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 51%; overflow: visible; padding: 0px; position: absolute; top: 50%; width: 24px; }\",\".framer-73ANg .framer-1g0xfrj, .framer-73ANg .framer-ntfij2, .framer-73ANg .framer-q98xbj, .framer-73ANg .framer-11bblnb { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; text-decoration: none; width: 24px; }\",\".framer-73ANg .framer-n9k6ap-container, .framer-73ANg .framer-56enin-container, .framer-73ANg .framer-1w9nyzw-container, .framer-73ANg .framer-18ag5aa-container { bottom: 0px; cursor: pointer; flex: none; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: 0px; width: 24px; }\",\".framer-73ANg .framer-zwx96f { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 24px; }\",\".framer-73ANg .framer-ymviy7-container { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: 0px; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-73ANg .framer-1pqw30e { gap: 0px; } .framer-73ANg .framer-1pqw30e > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-73ANg .framer-1pqw30e > :first-child { margin-top: 0px; } .framer-73ANg .framer-1pqw30e > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 65\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"S5ZkamQZj\":{\"layout\":[\"fixed\",\"fixed\"]},\"oopn3u7pA\":{\"layout\":[\"fixed\",\"fixed\"]},\"peYnQSkih\":{\"layout\":[\"fixed\",\"fixed\"]},\"x7ysP3A_M\":{\"layout\":[\"fixed\",\"fixed\"]},\"IIOQIg27L\":{\"layout\":[\"fixed\",\"fixed\"]},\"XT_bmPSMx\":{\"layout\":[\"fixed\",\"fixed\"]},\"iEab1xl2_\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramergpRp3R8Rl=withCSS(Component,css,\"framer-73ANg\");export default FramergpRp3R8Rl;FramergpRp3R8Rl.displayName=\"Navigation/Desktop\";FramergpRp3R8Rl.defaultProps={height:800,width:65};addPropertyControls(FramergpRp3R8Rl,{variant:{options:[\"CWzXnCRwW\",\"S5ZkamQZj\",\"oopn3u7pA\",\"peYnQSkih\",\"x7ysP3A_M\",\"IIOQIg27L\",\"XT_bmPSMx\",\"iEab1xl2_\"],optionTitles:[\"Home\",\"Work\",\"Blog\",\"Store\",\"Stack\",\"About\",\"Contact\",\"None\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramergpRp3R8Rl,[{explicitInter:true,fonts:[]},...MenuItemStateFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergpRp3R8Rl\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"800\",\"framerIntrinsicWidth\":\"65\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"S5ZkamQZj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oopn3u7pA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"peYnQSkih\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"x7ysP3A_M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IIOQIg27L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XT_bmPSMx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iEab1xl2_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./gpRp3R8Rl.map", "// Generated by Framer (3eae0e1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Search from\"https://framerusercontent.com/modules/6wAE2eMb2Tl3zrU7u4UL/HPzg2Uk7mwtBmDzvGbWF/Search.js\";const SearchFonts=getFonts(Search);const cycleOrder=[\"m3MFKl4v2\",\"B55VrPxa_\",\"Dl9FmIfQx\",\"gzNzUBb7A\",\"mXZoG6kpz\",\"HsZcNDo3o\",\"x2FwVbDfA\",\"R_d9IE3XA\",\"rb2srp_U2\",\"A1YWXaHtr\",\"bKX4SlQ9H\"];const serializationHash=\"framer-sL2VU\";const variantClassNames={A1YWXaHtr:\"framer-v-1g131jk\",B55VrPxa_:\"framer-v-6f177\",bKX4SlQ9H:\"framer-v-1pil6w9\",Dl9FmIfQx:\"framer-v-1ifglc5\",gzNzUBb7A:\"framer-v-i3718k\",HsZcNDo3o:\"framer-v-h5yxzs\",m3MFKl4v2:\"framer-v-1trfirz\",mXZoG6kpz:\"framer-v-13dmsr6\",R_d9IE3XA:\"framer-v-17s4b8m\",rb2srp_U2:\"framer-v-yr2vlj\",x2FwVbDfA:\"framer-v-1fzbn0q\"};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 transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;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={About:\"HsZcNDo3o\",Close:\"A1YWXaHtr\",Contact:\"x2FwVbDfA\",Home:\"m3MFKl4v2\",Menu:\"bKX4SlQ9H\",More:\"rb2srp_U2\",Search:\"R_d9IE3XA\",Stack:\"mXZoG6kpz\",Store:\"gzNzUBb7A\",Work:\"B55VrPxa_\",Writing:\"Dl9FmIfQx\"};const getProps=({height,id,tap,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"m3MFKl4v2\",Wm6galrUp:tap!==null&&tap!==void 0?tap:props.Wm6galrUp};};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,Wm6galrUp,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"m3MFKl4v2\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap11ie4h7=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Wm6galrUp){const res=await Wm6galrUp(...args);if(res===false)return false;}setVariant(\"A1YWXaHtr\");});const onTapbwt5ld=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Wm6galrUp){const res=await Wm6galrUp(...args);if(res===false)return false;}setVariant(\"rb2srp_U2\");});const onTapohsvp3=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Wm6galrUp){const res=await Wm6galrUp(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"B55VrPxa_\",\"Dl9FmIfQx\",\"gzNzUBb7A\",\"mXZoG6kpz\",\"HsZcNDo3o\",\"x2FwVbDfA\",\"R_d9IE3XA\",\"rb2srp_U2\",\"A1YWXaHtr\",\"bKX4SlQ9H\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"B55VrPxa_\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"Dl9FmIfQx\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"gzNzUBb7A\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"mXZoG6kpz\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"HsZcNDo3o\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"x2FwVbDfA\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"R_d9IE3XA\")return true;return false;};const isDisplayed8=()=>{if([\"rb2srp_U2\",\"A1YWXaHtr\"].includes(baseVariant))return true;return false;};const isDisplayed9=()=>{if(baseVariant===\"bKX4SlQ9H\")return true;return false;};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(Link,{href:{webPageId:\"augiA20Il\"},...addPropertyOverrides({A1YWXaHtr:{href:undefined},B55VrPxa_:{href:{pathVariables:{zxdvuqEvR:\"internal-load-board-launch\"},unresolvedPathSlugs:{zxdvuqEvR:{collectionId:\"r6dJfC1gZ\",collectionItemId:\"ulHoBhoag\"}},webPageId:\"cswvWUG8A\"},openInNewTab:false},bKX4SlQ9H:{href:undefined},Dl9FmIfQx:{href:{pathVariables:{K5oLJ3GH8:\"blockchain-and-design-opportunities-and-challenges-for-designers-in-the-crypto-industry\"},webPageId:\"ZHO5Z7FoR\"},openInNewTab:false},gzNzUBb7A:{href:{pathVariables:{MZ3aRBohY:\"ultra-framer-template\"},webPageId:\"XJfzgq5_Y\"},openInNewTab:false},HsZcNDo3o:{href:{webPageId:\"y3erDsgsW\"},openInNewTab:false},mXZoG6kpz:{href:{webPageId:\"D4LQrJeeA\"},openInNewTab:false},rb2srp_U2:{href:undefined},x2FwVbDfA:{href:{webPageId:\"wem7e4UCf\"},openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1trfirz\",className,classNames)} framer-4h73pf`,\"data-framer-name\":\"Home\",layoutDependency:layoutDependency,layoutId:\"m3MFKl4v2\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({A1YWXaHtr:{\"data-framer-name\":\"Close\",\"data-highlight\":true,onTap:onTapbwt5ld},B55VrPxa_:{\"data-framer-name\":\"Work\"},bKX4SlQ9H:{\"data-framer-name\":\"Menu\",\"data-highlight\":true,onTap:onTapohsvp3},Dl9FmIfQx:{\"data-framer-name\":\"Writing\"},gzNzUBb7A:{\"data-framer-name\":\"Store\"},HsZcNDo3o:{\"data-framer-name\":\"About\"},mXZoG6kpz:{\"data-framer-name\":\"Stack\"},R_d9IE3XA:{\"data-framer-name\":\"Search\"},rb2srp_U2:{\"data-framer-name\":\"More\",\"data-highlight\":true,onTap:onTap11ie4h7},x2FwVbDfA:{\"data-framer-name\":\"Contact\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1fhcnwv\",\"data-framer-name\":\"Home\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"umqBjkwxL\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 3 10.963 C 3 10.024 3 9.554 3.129 9.128 C 3.244 8.751 3.432 8.4 3.682 8.095 C 3.965 7.751 4.356 7.49 5.137 6.969 L 9.337 4.169 C 10.3 3.528 10.781 3.207 11.301 3.083 C 11.761 2.972 12.239 2.972 12.699 3.083 C 13.219 3.207 13.7 3.528 14.663 4.169 L 18.863 6.969 C 19.644 7.49 20.035 7.751 20.318 8.095 C 20.568 8.4 20.756 8.751 20.87 9.128 C 21 9.554 21 10.024 21 10.963 L 21 15.595 C 21 17.275 21 18.115 20.673 18.756 C 20.385 19.321 19.927 19.78 19.362 20.067 C 18.72 20.395 17.88 20.395 16.2 20.395 L 7.8 20.395 C 6.12 20.395 5.28 20.395 4.638 20.067 C 4.074 19.78 3.615 19.321 3.327 18.756 C 3 18.115 3 17.275 3 15.595 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:10728265099,withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1dmi46k\",\"data-framer-name\":\"Work\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"rT7MnuFCL\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 18 3 C 17.204 3 16.441 3.316 15.879 3.879 C 15.316 4.441 15 5.204 15 6 L 15 18 C 15 18.796 15.316 19.559 15.879 20.121 C 16.441 20.684 17.204 21 18 21 C 18.796 21 19.559 20.684 20.121 20.121 C 20.684 19.559 21 18.796 21 18 C 21 17.204 20.684 16.441 20.121 15.879 C 19.559 15.316 18.796 15 18 15 L 6 15 C 5.204 15 4.441 15.316 3.879 15.879 C 3.316 16.441 3 17.204 3 18 C 3 18.796 3.316 19.559 3.879 20.121 C 4.441 20.684 5.204 21 6 21 C 6.796 21 7.559 20.684 8.121 20.121 C 8.684 19.559 9 18.796 9 18 L 9 6 C 9 5.204 8.684 4.441 8.121 3.879 C 7.559 3.316 6.796 3 6 3 C 5.204 3 4.441 3.316 3.879 3.879 C 3.316 4.441 3 5.204 3 6 C 3 6.796 3.316 7.559 3.879 8.121 C 4.441 8.684 5.204 9 6 9 L 18 9 C 18.796 9 19.559 8.684 20.121 8.121 C 20.684 7.559 21 6.796 21 6 C 21 5.204 20.684 4.441 20.121 3.879 C 19.559 3.316 18.796 3 18 3 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:12509983461,withExternalLayout:true,...addPropertyOverrides({B55VrPxa_:{svgContentId:9458368389}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1yqpbd9\",\"data-framer-name\":\"Writing\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ToZCtAUNA\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 2 22 L 22 22 M 6.765 16.887 L 3.776 17.425 C 3.097 17.547 2.5 16.96 2.612 16.278 L 3.113 13.235 L 12.945 3.432 C 13.081 3.295 13.242 3.186 13.42 3.112 C 13.598 3.038 13.789 3 13.982 3 C 14.175 3 14.366 3.038 14.544 3.112 C 14.722 3.186 14.883 3.295 15.019 3.432 L 16.568 4.981 C 16.705 5.117 16.813 5.278 16.888 5.456 C 16.962 5.634 17 5.825 17 6.018 C 17 6.211 16.962 6.402 16.888 6.58 C 16.813 6.758 16.705 6.919 16.568 7.055 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:11183658839,withExternalLayout:true,...addPropertyOverrides({Dl9FmIfQx:{svgContentId:12750532173}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-12p008b\",\"data-framer-name\":\"Store\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"FDtgVDj7_\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 21 16.418 L 21 11.998 L 21 10 C 21 8.343 19.657 7 18 7 L 6 7 C 4.343 7 3 8.343 3 10 L 3 11.998 L 3 16.418 C 3 18.022 3 18.824 3.327 19.436 C 3.615 19.975 4.074 20.413 4.638 20.688 C 5.28 21 6.12 21 7.8 21 L 16.2 21 C 17.88 21 18.72 21 19.362 20.688 C 19.927 20.413 20.385 19.975 20.673 19.436 C 21 18.824 21 18.022 21 16.418 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 8 11 L 8 7 C 8 4.791 9.791 3 12 3 L 12 3 C 14.209 3 16 4.791 16 7 L 16 11\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:11035841971,withExternalLayout:true,...addPropertyOverrides({gzNzUBb7A:{svgContentId:9092024556}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-728doo\",\"data-framer-name\":\"Stack\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"R79CZbtFS\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(4 3.074)\" id=\"ss9078334609_1\"><path d=\"M 16 8.463 L 10.544 11.873 C 9.621 12.45 9.16 12.738 8.665 12.851 C 8.227 12.95 7.773 12.95 7.335 12.851 C 6.84 12.738 6.379 12.45 5.456 11.873 L 0 8.463\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 16 12.463 L 10.544 15.873 C 9.621 16.45 9.16 16.738 8.665 16.851 C 8.227 16.95 7.773 16.95 7.335 16.851 C 6.84 16.738 6.379 16.45 5.456 15.873 L 0 12.463\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 16 4.462 L 10.544 1.052 C 9.621 0.476 9.16 0.187 8.665 0.075 C 8.227 -0.025 7.773 -0.025 7.335 0.075 C 6.84 0.187 6.379 0.476 5.456 1.052 L 0 4.462 L 5.456 7.872 C 6.379 8.449 6.84 8.738 7.335 8.85 C 7.773 8.949 8.227 8.949 8.665 8.85 C 9.16 8.738 9.621 8.449 10.544 7.872 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:9078334609,withExternalLayout:true,...addPropertyOverrides({mXZoG6kpz:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(4 3.074)\" id=\"ss8932053566_1\"><path d=\"M 16 8.463 L 10.544 11.873 C 9.621 12.45 9.16 12.738 8.665 12.851 C 8.227 12.95 7.773 12.95 7.335 12.851 C 6.84 12.738 6.379 12.45 5.456 11.873 L 0 8.463\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 16 12.463 L 10.544 15.873 C 9.621 16.45 9.16 16.738 8.665 16.851 C 8.227 16.95 7.773 16.95 7.335 16.851 C 6.84 16.738 6.379 16.45 5.456 15.873 L 0 12.463\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 16 4.462 L 10.544 1.052 C 9.621 0.476 9.16 0.187 8.665 0.075 C 8.227 -0.025 7.773 -0.025 7.335 0.075 C 6.84 0.187 6.379 0.476 5.456 1.052 L 0 4.462 L 5.456 7.872 C 6.379 8.449 6.84 8.738 7.335 8.85 C 7.773 8.949 8.227 8.949 8.665 8.85 C 9.16 8.738 9.621 8.449 10.544 7.872 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:8932053566}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1e9ssu9\",\"data-framer-name\":\"About\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"xaLXqJ5rc\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(5.903 3)\" id=\"ss8862759935_1\"><path d=\"M 10.097 4 C 10.097 6.209 8.306 8 6.097 8 C 3.888 8 2.097 6.209 2.097 4 C 2.097 1.791 3.888 0 6.097 0 C 8.306 0 10.097 1.791 10.097 4 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 6.548 11 C 3.72 11 1.284 12.677 0.18 15.09 C -0.51 16.597 0.891 18 2.548 18 L 10.548 18 C 12.205 18 13.606 16.597 12.917 15.09 C 11.812 12.677 9.376 11 6.548 11 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:8862759935,withExternalLayout:true,...addPropertyOverrides({HsZcNDo3o:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(5.903 3)\" id=\"ss9092004325_1\"><path d=\"M 10.097 4 C 10.097 6.209 8.306 8 6.097 8 C 3.888 8 2.097 6.209 2.097 4 C 2.097 1.791 3.888 0 6.097 0 C 8.306 0 10.097 1.791 10.097 4 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 6.548 11 C 3.72 11 1.284 12.677 0.18 15.09 C -0.51 16.597 0.891 18 2.548 18 L 10.548 18 C 12.205 18 13.606 16.597 12.917 15.09 C 11.812 12.677 9.376 11 6.548 11 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:9092004325}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1468t55\",\"data-framer-name\":\"Contact\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"NkiFlGhBW\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 20.971 8 L 14.947 12.708 C 13.893 13.528 13.366 13.938 12.784 14.095 C 12.271 14.234 11.729 14.234 11.216 14.095 C 10.634 13.938 10.107 13.528 9.053 12.708 L 3.029 8 M 7.8 19 L 16.2 19 C 17.88 19 18.72 19 19.362 18.673 C 19.927 18.385 20.385 17.926 20.673 17.362 C 21 16.72 21 15.88 21 14.2 L 21 9.8 C 21 8.12 21 7.28 20.673 6.638 C 20.385 6.074 19.927 5.615 19.362 5.327 C 18.72 5 17.88 5 16.2 5 L 7.8 5 C 6.12 5 5.28 5 4.638 5.327 C 4.074 5.615 3.615 6.074 3.327 6.638 C 3 7.28 3 8.12 3 9.8 L 3 14.2 C 3 15.88 3 16.72 3.327 17.362 C 3.615 17.926 4.074 18.385 4.638 18.673 C 5.28 19 6.12 19 7.8 19 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:10822115162,withExternalLayout:true,...addPropertyOverrides({x2FwVbDfA:{svgContentId:12688864365}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-156h82i\",\"data-framer-name\":\"Search\",layoutDependency:layoutDependency,layoutId:\"knRp2mUne\",children:[isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1x4i2wn\",\"data-framer-name\":\"Search\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"tFziSqmkwxNMPPgx6I\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 21 21 L 15 15 M 17 10 C 17 10.919 16.819 11.829 16.467 12.679 C 16.115 13.528 15.6 14.3 14.95 14.95 C 14.3 15.6 13.528 16.115 12.679 16.467 C 11.829 16.819 10.919 17 10 17 C 9.081 17 8.171 16.819 7.321 16.467 C 6.472 16.115 5.7 15.6 5.05 14.95 C 4.4 14.3 3.885 13.528 3.533 12.679 C 3.181 11.829 3 10.919 3 10 C 3 8.143 3.737 6.363 5.05 5.05 C 6.363 3.737 8.143 3 10 3 C 11.857 3 13.637 3.737 14.95 5.05 C 16.262 6.363 17 8.143 17 10 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160)) /* {&quot;name&quot;:&quot;Icon/Default&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:11731807077,withExternalLayout:true,...addPropertyOverrides({R_d9IE3XA:{svgContentId:12394956962}},baseVariant,gestureVariant)}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nzhlsf-container\",layoutDependency:layoutDependency,layoutId:\"e9VgfQXEZ-container\",children:/*#__PURE__*/_jsx(Search,{backdropOptions:{backgroundColor:\"var(--token-bbdf0ccf-dc56-4c96-a423-a6c1181ae27e, rgba(255, 255, 255, 0.8))\",transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},zIndex:10},height:\"100%\",iconColor:\"rgba(255, 255, 255, 0)\",iconSize:24,iconType:\"default\",id:\"e9VgfQXEZ\",inputOptions:{clearButtonText:\"Clear\",clearButtonType:\"text\",dividerType:\"none\",iconOptions:{iconColor:\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160))\",iconSize:18,iconType:\"default\"},inputFont:{fontFamily:'\"Inter\", sans-serif',fontSize:\"15px\",fontStyle:\"normal\"},placeholderOptions:{placeholderColor:\"var(--token-d50329a9-877b-46f9-8eea-803d5ad8f5f4, rgb(112, 112, 112))\",placeholderText:\"Search...\"},textColor:\"var(--token-fc64e1c6-a5ec-440a-b3b8-bb687fb66ad9, rgb(255, 255, 255))\"},layoutId:\"e9VgfQXEZ\",modalOptions:{backgroundColor:\"var(--token-fc64e1c6-a5ec-440a-b3b8-bb687fb66ad9, rgb(255, 255, 255))\",borderRadius:16,heightIsStatic:false,heightTransition:{damping:60,delay:0,mass:1,stiffness:800,type:\"spring\"},layoutType:\"QuickMenu\",shadow:{blur:40,color:\"rgba(0, 0, 0, 0.2)\",spread:0,x:0,y:20},top:0,width:500},resultOptions:{itemType:\"fullWidth\",subtitleOptions:{subtitleColor:\"var(--token-d50329a9-877b-46f9-8eea-803d5ad8f5f4, rgb(112, 112, 112))\",subtitleFont:{fontFamily:'\"Inter\", sans-serif',fontSize:\"15px\",fontStyle:\"normal\"},subtitleType:\"description\"},titleColor:\"var(--token-ad295223-71a1-4c83-8af3-ed488a713d13, rgb(46, 46, 46))\",titleFont:{fontFamily:'\"Inter\", sans-serif',fontSize:\"15px\",fontStyle:\"normal\"},titleType:\"h1\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),isDisplayed8()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wqycq0\",\"data-framer-name\":\"Close\",layoutDependency:layoutDependency,layoutId:\"qF5hEATit\",transformTemplate:transformTemplate1,...addPropertyOverrides({A1YWXaHtr:{transformTemplate:undefined}},baseVariant,gestureVariant),children:[isDisplayed8()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tux83m\",layoutDependency:layoutDependency,layoutId:\"sYfDvc7an\",style:{backgroundColor:\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,rotate:0},variants:{A1YWXaHtr:{rotate:45}}}),isDisplayed8()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f1etq4\",\"data-framer-name\":\"Middle\",layoutDependency:layoutDependency,layoutId:\"vufkSCTBP\",style:{backgroundColor:\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,opacity:1},variants:{A1YWXaHtr:{opacity:0}}}),isDisplayed8()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-13ohhwb\",layoutDependency:layoutDependency,layoutId:\"kgCfjBd4O\",style:{backgroundColor:\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,rotate:0},variants:{A1YWXaHtr:{rotate:-45}}})]}),isDisplayed9()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fn4d68\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"ha_SfS0bV\",children:[isDisplayed9()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-h07z1a\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ayxO0Yi8E\",opacity:1,radius:30,style:{backgroundColor:\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 1.5\"></svg>',svgContentId:12271491546,withExternalLayout:true,...addPropertyOverrides({bKX4SlQ9H:{svgContentId:9434119693}},baseVariant,gestureVariant)}),isDisplayed9()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-q2l22o\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"fVsPwhrLp\",opacity:1,radius:30,style:{backgroundColor:\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 2\"></svg>',svgContentId:9035575616,withExternalLayout:true,...addPropertyOverrides({bKX4SlQ9H:{svgContentId:10751976289}},baseVariant,gestureVariant)}),isDisplayed9()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1oq7njy\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"CXVXlD6YL\",opacity:1,radius:30,style:{backgroundColor:\"var(--token-2535aa72-16d6-4e0a-ba94-ce402615779e, rgb(160, 160, 160))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 2\"></svg>',svgContentId:9035575616,withExternalLayout:true,...addPropertyOverrides({bKX4SlQ9H:{svgContentId:10751976289}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sL2VU.framer-4h73pf, .framer-sL2VU .framer-4h73pf { display: block; }\",\".framer-sL2VU.framer-1trfirz { height: 24px; overflow: visible; position: relative; text-decoration: none; width: 24px; }\",\".framer-sL2VU .framer-1fhcnwv, .framer-sL2VU .framer-1x4i2wn { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-sL2VU .framer-1dmi46k, .framer-sL2VU .framer-1yqpbd9, .framer-sL2VU .framer-12p008b, .framer-sL2VU .framer-728doo, .framer-sL2VU .framer-1e9ssu9, .framer-sL2VU .framer-1468t55 { flex: none; height: 24px; left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-sL2VU .framer-156h82i { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-sL2VU .framer-1nzhlsf-container { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 0px; position: absolute; right: 0px; top: 0px; z-index: 2; }\",\".framer-sL2VU .framer-wqycq0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; left: 50%; min-height: 3px; overflow: visible; padding: 0px; position: absolute; top: 50%; width: 17px; }\",\".framer-sL2VU .framer-1tux83m, .framer-sL2VU .framer-1f1etq4, .framer-sL2VU .framer-13ohhwb { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 3px); overflow: visible; position: relative; width: 3px; }\",\".framer-sL2VU .framer-1fn4d68 { flex: none; height: 12px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 12px / 2); width: 16px; }\",\".framer-sL2VU .framer-h07z1a { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); position: absolute; top: 0px; width: 16px; }\",\".framer-sL2VU .framer-q2l22o { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-sL2VU .framer-1oq7njy { bottom: 0px; flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); position: absolute; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sL2VU .framer-wqycq0 { gap: 0px; } .framer-sL2VU .framer-wqycq0 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-sL2VU .framer-wqycq0 > :first-child { margin-left: 0px; } .framer-sL2VU .framer-wqycq0 > :last-child { margin-right: 0px; } }\",\".framer-sL2VU.framer-v-yr2vlj.framer-1trfirz, .framer-sL2VU.framer-v-1g131jk.framer-1trfirz, .framer-sL2VU.framer-v-1pil6w9.framer-1trfirz { cursor: pointer; }\",\".framer-sL2VU.framer-v-yr2vlj .framer-wqycq0 { min-height: unset; }\",\".framer-sL2VU.framer-v-1g131jk .framer-wqycq0 { display: block; height: 24px; left: calc(50.00000000000002% - 17px / 2); min-height: unset; padding: unset; top: calc(50.00000000000002% - 24px / 2); }\",\".framer-sL2VU.framer-v-1g131jk .framer-1tux83m, .framer-sL2VU.framer-v-1g131jk .framer-13ohhwb { aspect-ratio: unset; height: 2px; position: absolute; right: 0px; top: calc(50.00000000000002% - 2px / 2); width: 17px; }\",\".framer-sL2VU.framer-v-1g131jk .framer-1f1etq4 { aspect-ratio: unset; height: 1px; left: calc(47.05882352941179% - 1px / 2); position: absolute; top: calc(50.00000000000002% - 1px / 2); width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sL2VU.framer-v-1g131jk .framer-wqycq0 { gap: 0px; } .framer-sL2VU.framer-v-1g131jk .framer-wqycq0 > *, .framer-sL2VU.framer-v-1g131jk .framer-wqycq0 > :first-child, .framer-sL2VU.framer-v-1g131jk .framer-wqycq0 > :last-child { margin: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"B55VrPxa_\":{\"layout\":[\"fixed\",\"fixed\"]},\"Dl9FmIfQx\":{\"layout\":[\"fixed\",\"fixed\"]},\"gzNzUBb7A\":{\"layout\":[\"fixed\",\"fixed\"]},\"mXZoG6kpz\":{\"layout\":[\"fixed\",\"fixed\"]},\"HsZcNDo3o\":{\"layout\":[\"fixed\",\"fixed\"]},\"x2FwVbDfA\":{\"layout\":[\"fixed\",\"fixed\"]},\"R_d9IE3XA\":{\"layout\":[\"fixed\",\"fixed\"]},\"rb2srp_U2\":{\"layout\":[\"fixed\",\"fixed\"]},\"A1YWXaHtr\":{\"layout\":[\"fixed\",\"fixed\"]},\"bKX4SlQ9H\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Wm6galrUp\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfPysVn71m=withCSS(Component,css,\"framer-sL2VU\");export default FramerfPysVn71m;FramerfPysVn71m.displayName=\"Misc/Icon\";FramerfPysVn71m.defaultProps={height:24,width:24};addPropertyControls(FramerfPysVn71m,{variant:{options:[\"m3MFKl4v2\",\"B55VrPxa_\",\"Dl9FmIfQx\",\"gzNzUBb7A\",\"mXZoG6kpz\",\"HsZcNDo3o\",\"x2FwVbDfA\",\"R_d9IE3XA\",\"rb2srp_U2\",\"A1YWXaHtr\",\"bKX4SlQ9H\"],optionTitles:[\"Home\",\"Work\",\"Writing\",\"Store\",\"Stack\",\"About\",\"Contact\",\"Search\",\"More\",\"Close\",\"Menu\"],title:\"Variant\",type:ControlType.Enum},Wm6galrUp:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerfPysVn71m,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...SearchFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfPysVn71m\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"24\",\"framerIntrinsicHeight\":\"24\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"B55VrPxa_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Dl9FmIfQx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gzNzUBb7A\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mXZoG6kpz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HsZcNDo3o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"x2FwVbDfA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"R_d9IE3XA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rb2srp_U2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"A1YWXaHtr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bKX4SlQ9H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"Wm6galrUp\\\":\\\"tap\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fPysVn71m.map", "// Generated by Framer (c75d380)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import MiscTooltip from\"https://framerusercontent.com/modules/kMbKz07aUxxBrd1CzZVU/7MuqRIHL52HGrrewY4wB/SJ0ksHul6.js\";const MiscTooltipFonts=getFonts(MiscTooltip);const cycleOrder=[\"uDBBUBKT3\",\"DHVjDjckf\",\"mJEXGb3O8\",\"TZXbRR6NW\",\"AvnfjMHJ9\",\"zpYm4r81n\",\"xFB4awY76\",\"RUqy2GLMF\"];const serializationHash=\"framer-vO4u5\";const variantClassNames={AvnfjMHJ9:\"framer-v-7d1fc6\",DHVjDjckf:\"framer-v-15dri7s\",mJEXGb3O8:\"framer-v-1gty7r8\",RUqy2GLMF:\"framer-v-1hloapr\",TZXbRR6NW:\"framer-v-1y56uct\",uDBBUBKT3:\"framer-v-ri6lw0\",xFB4awY76:\"framer-v-1gl2e8w\",zpYm4r81n:\"framer-v-1qtb0bq\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;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 humanReadableVariantMap={About:\"zpYm4r81n\",Contact:\"xFB4awY76\",Home:\"uDBBUBKT3\",Search:\"RUqy2GLMF\",Stack:\"AvnfjMHJ9\",Store:\"TZXbRR6NW\",Work:\"DHVjDjckf\",Writing:\"mJEXGb3O8\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"uDBBUBKT3\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"uDBBUBKT3\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"DHVjDjckf\",\"mJEXGb3O8\",\"TZXbRR6NW\",\"AvnfjMHJ9\",\"zpYm4r81n\",\"xFB4awY76\",\"RUqy2GLMF\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"DHVjDjckf\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"mJEXGb3O8\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"TZXbRR6NW\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"AvnfjMHJ9\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"zpYm4r81n\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"xFB4awY76\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"RUqy2GLMF\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ri6lw0\",className,classNames),\"data-framer-name\":\"Home\",initial:variant,layoutDependency:layoutDependency,layoutId:\"uDBBUBKT3\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({AvnfjMHJ9:{\"data-framer-name\":\"Stack\"},DHVjDjckf:{\"data-framer-name\":\"Work\"},mJEXGb3O8:{\"data-framer-name\":\"Writing\"},RUqy2GLMF:{\"data-framer-name\":\"Search\"},TZXbRR6NW:{\"data-framer-name\":\"Store\"},xFB4awY76:{\"data-framer-name\":\"Contact\"},zpYm4r81n:{\"data-framer-name\":\"About\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1frbiwa\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"qY7zx0EMZ\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-15k35t9\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"S9m3O6omz\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 24\"><path d=\"M 3 10.963 C 3 10.024 3 9.554 3.129 9.128 C 3.244 8.751 3.432 8.4 3.682 8.095 C 3.965 7.751 4.356 7.49 5.137 6.969 L 9.337 4.169 C 10.3 3.528 10.781 3.207 11.301 3.083 C 11.761 2.972 12.239 2.972 12.699 3.083 C 13.219 3.207 13.7 3.528 14.663 4.169 L 18.863 6.969 C 19.644 7.49 20.035 7.751 20.318 8.095 C 20.568 8.4 20.756 8.751 20.87 9.128 C 21 9.554 21 10.024 21 10.963 L 21 15.595 C 21 17.275 21 18.115 20.673 18.756 C 20.385 19.321 19.927 19.78 19.362 20.067 C 18.72 20.395 17.88 20.395 16.2 20.395 L 7.8 20.395 C 6.12 20.395 5.28 20.395 4.638 20.067 C 4.074 19.78 3.615 19.321 3.327 18.756 C 3 18.115 3 17.275 3 15.595 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:3810879743,withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-i9546c\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"HAwvrb4K4\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 18 3 C 17.204 3 16.441 3.316 15.879 3.879 C 15.316 4.441 15 5.204 15 6 L 15 18 C 15 18.796 15.316 19.559 15.879 20.121 C 16.441 20.684 17.204 21 18 21 C 18.796 21 19.559 20.684 20.121 20.121 C 20.684 19.559 21 18.796 21 18 C 21 17.204 20.684 16.441 20.121 15.879 C 19.559 15.316 18.796 15 18 15 L 6 15 C 5.204 15 4.441 15.316 3.879 15.879 C 3.316 16.441 3 17.204 3 18 C 3 18.796 3.316 19.559 3.879 20.121 C 4.441 20.684 5.204 21 6 21 C 6.796 21 7.559 20.684 8.121 20.121 C 8.684 19.559 9 18.796 9 18 L 9 6 C 9 5.204 8.684 4.441 8.121 3.879 C 7.559 3.316 6.796 3 6 3 C 5.204 3 4.441 3.316 3.879 3.879 C 3.316 4.441 3 5.204 3 6 C 3 6.796 3.316 7.559 3.879 8.121 C 4.441 8.684 5.204 9 6 9 L 18 9 C 18.796 9 19.559 8.684 20.121 8.121 C 20.684 7.559 21 6.796 21 6 C 21 5.204 20.684 4.441 20.121 3.879 C 19.559 3.316 18.796 3 18 3 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:2915540734,withExternalLayout:true,...addPropertyOverrides({DHVjDjckf:{svgContentId:254435866}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-aaazu8\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"NMSTGKgsd\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 2 22 L 22 22 M 6.765 16.887 L 3.776 17.425 C 3.097 17.547 2.5 16.96 2.612 16.278 L 3.113 13.235 L 12.945 3.432 C 13.081 3.295 13.242 3.186 13.42 3.112 C 13.598 3.038 13.789 3 13.982 3 C 14.175 3 14.366 3.038 14.544 3.112 C 14.722 3.186 14.883 3.295 15.019 3.432 L 16.568 4.981 C 16.705 5.117 16.813 5.278 16.888 5.456 C 16.962 5.634 17 5.825 17 6.018 C 17 6.211 16.962 6.402 16.888 6.58 C 16.813 6.758 16.705 6.919 16.568 7.055 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:1511691678,withExternalLayout:true,...addPropertyOverrides({mJEXGb3O8:{svgContentId:1664522166}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-d898j1\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"J9oeFv9H9\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 21 16.418 L 21 11.998 L 21 10 C 21 8.343 19.657 7 18 7 L 6 7 C 4.343 7 3 8.343 3 10 L 3 11.998 L 3 16.418 C 3 18.022 3 18.824 3.327 19.436 C 3.615 19.975 4.074 20.413 4.638 20.688 C 5.28 21 6.12 21 7.8 21 L 16.2 21 C 17.88 21 18.72 21 19.362 20.688 C 19.927 20.413 20.385 19.975 20.673 19.436 C 21 18.824 21 18.022 21 16.418 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 8 11 L 8 7 C 8 4.791 9.791 3 12 3 L 12 3 C 14.209 3 16 4.791 16 7 L 16 11\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:3424839070,withExternalLayout:true,...addPropertyOverrides({TZXbRR6NW:{svgContentId:621113909}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-tpczen\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"N0TIfdMz1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(4 3.074)\" id=\"ss182922772_1\"><path d=\"M 16 8.463 L 10.544 11.873 C 9.621 12.45 9.16 12.738 8.665 12.851 C 8.227 12.95 7.773 12.95 7.335 12.851 C 6.84 12.738 6.379 12.45 5.456 11.873 L 0 8.463\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 16 12.463 L 10.544 15.873 C 9.621 16.45 9.16 16.738 8.665 16.851 C 8.227 16.95 7.773 16.95 7.335 16.851 C 6.84 16.738 6.379 16.45 5.456 15.873 L 0 12.463\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 16 4.462 L 10.544 1.052 C 9.621 0.476 9.16 0.187 8.665 0.075 C 8.227 -0.025 7.773 -0.025 7.335 0.075 C 6.84 0.187 6.379 0.476 5.456 1.052 L 0 4.462 L 5.456 7.872 C 6.379 8.449 6.84 8.738 7.335 8.85 C 7.773 8.949 8.227 8.949 8.665 8.85 C 9.16 8.738 9.621 8.449 10.544 7.872 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:182922772,withExternalLayout:true,...addPropertyOverrides({AvnfjMHJ9:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(4 3.074)\" id=\"ss3363815916_1\"><path d=\"M 16 8.463 L 10.544 11.873 C 9.621 12.45 9.16 12.738 8.665 12.851 C 8.227 12.95 7.773 12.95 7.335 12.851 C 6.84 12.738 6.379 12.45 5.456 11.873 L 0 8.463\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 16 12.463 L 10.544 15.873 C 9.621 16.45 9.16 16.738 8.665 16.851 C 8.227 16.95 7.773 16.95 7.335 16.851 C 6.84 16.738 6.379 16.45 5.456 15.873 L 0 12.463\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 16 4.462 L 10.544 1.052 C 9.621 0.476 9.16 0.187 8.665 0.075 C 8.227 -0.025 7.773 -0.025 7.335 0.075 C 6.84 0.187 6.379 0.476 5.456 1.052 L 0 4.462 L 5.456 7.872 C 6.379 8.449 6.84 8.738 7.335 8.85 C 7.773 8.949 8.227 8.949 8.665 8.85 C 9.16 8.738 9.621 8.449 10.544 7.872 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:3363815916}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-16wr2zb\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"AQqxF3j6Z\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(5.903 3)\" id=\"ss2945980017_1\"><path d=\"M 10.097 4 C 10.097 6.209 8.306 8 6.097 8 C 3.888 8 2.097 6.209 2.097 4 C 2.097 1.791 3.888 0 6.097 0 C 8.306 0 10.097 1.791 10.097 4 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 6.548 11 C 3.72 11 1.284 12.677 0.18 15.09 C -0.51 16.597 0.891 18 2.548 18 L 10.548 18 C 12.205 18 13.606 16.597 12.917 15.09 C 11.812 12.677 9.376 11 6.548 11 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:2945980017,withExternalLayout:true,...addPropertyOverrides({zpYm4r81n:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(5.903 3)\" id=\"ss3077012862_1\"><path d=\"M 10.097 4 C 10.097 6.209 8.306 8 6.097 8 C 3.888 8 2.097 6.209 2.097 4 C 2.097 1.791 3.888 0 6.097 0 C 8.306 0 10.097 1.791 10.097 4 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 6.548 11 C 3.72 11 1.284 12.677 0.18 15.09 C -0.51 16.597 0.891 18 2.548 18 L 10.548 18 C 12.205 18 13.606 16.597 12.917 15.09 C 11.812 12.677 9.376 11 6.548 11 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:3077012862}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-ybilwt\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"nwIblVRYf\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 20.971 8 L 14.947 12.708 C 13.893 13.528 13.366 13.938 12.784 14.095 C 12.271 14.234 11.729 14.234 11.216 14.095 C 10.634 13.938 10.107 13.528 9.053 12.708 L 3.029 8 M 7.8 19 L 16.2 19 C 17.88 19 18.72 19 19.362 18.673 C 19.927 18.385 20.385 17.926 20.673 17.362 C 21 16.72 21 15.88 21 14.2 L 21 9.8 C 21 8.12 21 7.28 20.673 6.638 C 20.385 6.074 19.927 5.615 19.362 5.327 C 18.72 5 17.88 5 16.2 5 L 7.8 5 C 6.12 5 5.28 5 4.638 5.327 C 4.074 5.615 3.615 6.074 3.327 6.638 C 3 7.28 3 8.12 3 9.8 L 3 14.2 C 3 15.88 3 16.72 3.327 17.362 C 3.615 17.926 4.074 18.385 4.638 18.673 C 5.28 19 6.12 19 7.8 19 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:4238294276,withExternalLayout:true,...addPropertyOverrides({xFB4awY76:{svgContentId:2546451453}},baseVariant,gestureVariant)}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-eukkcx\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"xNMPPgx6I\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 21 21 L 15 15 M 17 10 C 17 10.919 16.819 11.829 16.467 12.679 C 16.115 13.528 15.6 14.3 14.95 14.95 C 14.3 15.6 13.528 16.115 12.679 16.467 C 11.829 16.819 10.919 17 10 17 C 9.081 17 8.171 16.819 7.321 16.467 C 6.472 16.115 5.7 15.6 5.05 14.95 C 4.4 14.3 3.885 13.528 3.533 12.679 C 3.181 11.829 3 10.919 3 10 C 3 8.143 3.737 6.363 5.05 5.05 C 6.363 3.737 8.143 3 10 3 C 11.857 3 13.637 3.737 14.95 5.05 C 16.262 6.363 17 8.143 17 10 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-85944b72-087e-4541-9a37-441daa1bc3cf, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;Icon/Active&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:2476013636,withExternalLayout:true,...addPropertyOverrides({RUqy2GLMF:{svgContentId:1896101779}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kixkyc-container\",layoutDependency:layoutDependency,layoutId:\"Dltsga0Fs-container\",style:{opacity:0},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(MiscTooltip,{count:1,height:\"100%\",id:\"Dltsga0Fs\",layoutId:\"Dltsga0Fs\",symbol:\"/\",title:\"Home\",variant:\"y14__d0IV\",width:\"100%\"})})]})})});});const css=['.framer-vO4u5[data-border=\"true\"]::after, .framer-vO4u5 [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-vO4u5.framer-15nei0d, .framer-vO4u5 .framer-15nei0d { display: block; }\",\".framer-vO4u5.framer-ri6lw0 { height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-vO4u5 .framer-1frbiwa { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-vO4u5 .framer-15k35t9 { flex: none; height: 24px; left: calc(45.83333333333336% - 22px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 22px; }\",\".framer-vO4u5 .framer-i9546c, .framer-vO4u5 .framer-d898j1, .framer-vO4u5 .framer-tpczen, .framer-vO4u5 .framer-16wr2zb, .framer-vO4u5 .framer-ybilwt, .framer-vO4u5 .framer-eukkcx { flex: none; height: 24px; left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-vO4u5 .framer-aaazu8 { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-vO4u5 .framer-kixkyc-container { flex: none; height: auto; left: 48px; position: absolute; top: 50%; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"DHVjDjckf\":{\"layout\":[\"fixed\",\"fixed\"]},\"mJEXGb3O8\":{\"layout\":[\"fixed\",\"fixed\"]},\"TZXbRR6NW\":{\"layout\":[\"fixed\",\"fixed\"]},\"AvnfjMHJ9\":{\"layout\":[\"fixed\",\"fixed\"]},\"zpYm4r81n\":{\"layout\":[\"fixed\",\"fixed\"]},\"xFB4awY76\":{\"layout\":[\"fixed\",\"fixed\"]},\"RUqy2GLMF\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const Framerqf1QHAlqq=withCSS(Component,css,\"framer-vO4u5\");export default Framerqf1QHAlqq;Framerqf1QHAlqq.displayName=\"Menu Item/Active\";Framerqf1QHAlqq.defaultProps={height:24,width:24};addPropertyControls(Framerqf1QHAlqq,{variant:{options:[\"uDBBUBKT3\",\"DHVjDjckf\",\"mJEXGb3O8\",\"TZXbRR6NW\",\"AvnfjMHJ9\",\"zpYm4r81n\",\"xFB4awY76\",\"RUqy2GLMF\"],optionTitles:[\"Home\",\"Work\",\"Writing\",\"Store\",\"Stack\",\"About\",\"Contact\",\"Search\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerqf1QHAlqq,[...MiscTooltipFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerqf1QHAlqq\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"24\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DHVjDjckf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mJEXGb3O8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TZXbRR6NW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"AvnfjMHJ9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zpYm4r81n\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xFB4awY76\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RUqy2GLMF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"24\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qf1QHAlqq.map", "// Generated by Framer (b2eeca0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,getPropertyControls,useActiveVariantCallback,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import MiscIcon from\"https://framerusercontent.com/modules/p94NoC8OUBnlBwDRLcgE/YnYbv0sS4esdibbMG4tY/fPysVn71m.js\";import MenuItemActive from\"https://framerusercontent.com/modules/8kzsUxpL1AfhzDX9k0n1/81uVKtpHihMAvhpfgmwL/qf1QHAlqq.js\";const MiscIconFonts=getFonts(MiscIcon);const MenuItemActiveFonts=getFonts(MenuItemActive);const MiscIconControls=getPropertyControls(MiscIcon);const MenuItemActiveControls=getPropertyControls(MenuItemActive);const cycleOrder=[\"Jwr071b5X\",\"vQKupeLne\"];const variantClassNames={Jwr071b5X:\"framer-v-zdy4h0\",vQKupeLne:\"framer-v-13lgh3r\"};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={Active:\"vQKupeLne\",Default:\"Jwr071b5X\"};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=\"Jwr071b5X\",defaultIcon:rb71BTnDS=\"m3MFKl4v2\",activeIcon:K7plXbdal=\"uDBBUBKT3\",tap:K_TPvYrgF,...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"Jwr071b5X\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1sdkxk5=activeVariantCallback(async(...args)=>{if(K_TPvYrgF){const res=await K_TPvYrgF(...args);if(res===false)return false;}});const isDisplayed=()=>{if(baseVariant===\"vQKupeLne\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"vQKupeLne\")return true;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-X5fWX\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(\"framer-zdy4h0\",className),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Jwr071b5X\",onTap:onTap1sdkxk5,ref:ref,style:{...style},transition:transition,...addPropertyOverrides({vQKupeLne:{\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-m8zeqh-container\",layoutDependency:layoutDependency,layoutId:\"B9PROS0hg-container\",transition:transition,children:/*#__PURE__*/_jsx(MiscIcon,{height:\"100%\",id:\"B9PROS0hg\",layoutId:\"B9PROS0hg\",style:{height:\"100%\",width:\"100%\"},variant:rb71BTnDS,width:\"100%\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-b1r3oo-container\",\"data-framer-name\":\"Active\",layoutDependency:layoutDependency,layoutId:\"RgfqXCZ0T-container\",name:\"Active\",transition:transition,children:/*#__PURE__*/_jsx(MenuItemActive,{height:\"100%\",id:\"RgfqXCZ0T\",layoutId:\"RgfqXCZ0T\",name:\"Active\",style:{height:\"100%\",width:\"100%\"},variant:K7plXbdal,width:\"100%\"})})]})})});});const css=['.framer-X5fWX [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-X5fWX .framer-1vix0ix { display: block; }\",\".framer-X5fWX .framer-zdy4h0 { cursor: pointer; height: 24px; position: relative; width: 24px; }\",\".framer-X5fWX .framer-m8zeqh-container, .framer-X5fWX .framer-b1r3oo-container { flex: none; height: 24px; left: 0px; position: absolute; top: 0px; width: 24px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"vQKupeLne\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"rb71BTnDS\":\"defaultIcon\",\"K7plXbdal\":\"activeIcon\",\"K_TPvYrgF\":\"tap\"}\n */const FramerWqAyL1RRr=withCSS(Component,css,\"framer-X5fWX\");export default FramerWqAyL1RRr;FramerWqAyL1RRr.displayName=\"Menu Item/Mobile\";FramerWqAyL1RRr.defaultProps={height:24,width:24};addPropertyControls(FramerWqAyL1RRr,{variant:{options:[\"Jwr071b5X\",\"vQKupeLne\"],optionTitles:[\"Default\",\"Active\"],title:\"Variant\",type:ControlType.Enum},rb71BTnDS:(MiscIconControls===null||MiscIconControls===void 0?void 0:MiscIconControls[\"variant\"])&&{...MiscIconControls[\"variant\"],defaultValue:\"m3MFKl4v2\",hidden:undefined,title:\"Default Icon\"},K7plXbdal:(MenuItemActiveControls===null||MenuItemActiveControls===void 0?void 0:MenuItemActiveControls[\"variant\"])&&{...MenuItemActiveControls[\"variant\"],defaultValue:\"uDBBUBKT3\",hidden:undefined,title:\"Active Icon\"},K_TPvYrgF:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerWqAyL1RRr,[...MiscIconFonts,...MenuItemActiveFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWqAyL1RRr\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vQKupeLne\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"24\",\"framerVariables\":\"{\\\"rb71BTnDS\\\":\\\"defaultIcon\\\",\\\"K7plXbdal\\\":\\\"activeIcon\\\",\\\"K_TPvYrgF\\\":\\\"tap\\\"}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3eae0e1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import MenuItemMobile from\"https://framerusercontent.com/modules/72CQctgfkIbcW3D7EyZt/UwLtfYnmVkWYshJNsi5Y/WqAyL1RRr.js\";const MenuItemMobileFonts=getFonts(MenuItemMobile);const cycleOrder=[\"EljorAqtp\",\"q3SQd1QCm\",\"sSOGiK5Z_\",\"hPbRVJWvZ\",\"tn0PKRZw0\",\"y1lzUkFXl\",\"CA5Ihooy3\",\"xLtz_xJ7R\"];const serializationHash=\"framer-r1KoY\";const variantClassNames={CA5Ihooy3:\"framer-v-i8m3s8\",EljorAqtp:\"framer-v-1pbjfaj\",hPbRVJWvZ:\"framer-v-1e4fvw9\",q3SQd1QCm:\"framer-v-1577jzn\",sSOGiK5Z_:\"framer-v-c3xgvq\",tn0PKRZw0:\"framer-v-1onnl4w\",xLtz_xJ7R:\"framer-v-s3rxni\",y1lzUkFXl:\"framer-v-16w0tpx\"};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 transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;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={About:\"y1lzUkFXl\",Blog:\"sSOGiK5Z_\",Contact:\"CA5Ihooy3\",Home:\"EljorAqtp\",None:\"xLtz_xJ7R\",Stack:\"tn0PKRZw0\",Store:\"hPbRVJWvZ\",Work:\"q3SQd1QCm\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"EljorAqtp\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"EljorAqtp\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1pbjfaj\",className,classNames),\"data-framer-name\":\"Home\",layoutDependency:layoutDependency,layoutId:\"EljorAqtp\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-fc64e1c6-a5ec-440a-b3b8-bb687fb66ad9, rgb(255, 255, 255))\",...style},...addPropertyOverrides({CA5Ihooy3:{\"data-framer-name\":\"Contact\"},hPbRVJWvZ:{\"data-framer-name\":\"Store\"},q3SQd1QCm:{\"data-framer-name\":\"Work\"},sSOGiK5Z_:{\"data-framer-name\":\"Blog\"},tn0PKRZw0:{\"data-framer-name\":\"Stack\"},xLtz_xJ7R:{\"data-framer-name\":\"None\"},y1lzUkFXl:{\"data-framer-name\":\"About\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-11p0u4w\",\"data-framer-name\":\"Border\",layoutDependency:layoutDependency,layoutId:\"anDzaUaYJ\",style:{backgroundColor:\"var(--token-cca6eaa3-b99f-410d-b5ba-bb0e17782c07, rgb(237, 237, 237))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tp2ce1\",\"data-framer-name\":\"Icons\",layoutDependency:layoutDependency,layoutId:\"WDUkhzzrr\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1459f2i-container\",\"data-framer-name\":\"Home\",layoutDependency:layoutDependency,layoutId:\"qNMG8BMmX-container\",name:\"Home\",children:/*#__PURE__*/_jsx(MenuItemMobile,{activeIcon:\"uDBBUBKT3\",defaultIcon:\"m3MFKl4v2\",height:\"100%\",id:\"qNMG8BMmX\",layoutId:\"qNMG8BMmX\",name:\"Home\",style:{height:\"100%\",width:\"100%\"},variant:\"vQKupeLne\",width:\"100%\",...addPropertyOverrides({CA5Ihooy3:{variant:\"Jwr071b5X\"},hPbRVJWvZ:{variant:\"Jwr071b5X\"},q3SQd1QCm:{variant:\"Jwr071b5X\"},sSOGiK5Z_:{variant:\"Jwr071b5X\"},tn0PKRZw0:{variant:\"Jwr071b5X\"},xLtz_xJ7R:{variant:\"Jwr071b5X\"},y1lzUkFXl:{variant:\"Jwr071b5X\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vthxiv-container\",\"data-framer-name\":\"Work\",layoutDependency:layoutDependency,layoutId:\"Of6UG5l60-container\",name:\"Work\",children:/*#__PURE__*/_jsx(MenuItemMobile,{activeIcon:\"DHVjDjckf\",defaultIcon:\"B55VrPxa_\",height:\"100%\",id:\"Of6UG5l60\",layoutId:\"Of6UG5l60\",name:\"Work\",style:{height:\"100%\",width:\"100%\"},variant:\"Jwr071b5X\",width:\"100%\",...addPropertyOverrides({q3SQd1QCm:{variant:\"vQKupeLne\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s6efc5-container\",\"data-framer-name\":\"Stack\",layoutDependency:layoutDependency,layoutId:\"u5DDhDW9h-container\",name:\"Stack\",children:/*#__PURE__*/_jsx(MenuItemMobile,{activeIcon:\"AvnfjMHJ9\",defaultIcon:\"mXZoG6kpz\",height:\"100%\",id:\"u5DDhDW9h\",layoutId:\"u5DDhDW9h\",name:\"Stack\",style:{height:\"100%\",width:\"100%\"},variant:\"Jwr071b5X\",width:\"100%\",...addPropertyOverrides({tn0PKRZw0:{variant:\"vQKupeLne\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-i12duo-container\",\"data-framer-name\":\"About\",layoutDependency:layoutDependency,layoutId:\"gqEIqyF2U-container\",name:\"About\",children:/*#__PURE__*/_jsx(MenuItemMobile,{activeIcon:\"zpYm4r81n\",defaultIcon:\"HsZcNDo3o\",height:\"100%\",id:\"gqEIqyF2U\",layoutId:\"gqEIqyF2U\",name:\"About\",style:{height:\"100%\",width:\"100%\"},variant:\"Jwr071b5X\",width:\"100%\",...addPropertyOverrides({y1lzUkFXl:{variant:\"vQKupeLne\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ivxuk0\",\"data-framer-name\":\"Search\",layoutDependency:layoutDependency,layoutId:\"UuNnivvOa\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15bmb0m-container\",layoutDependency:layoutDependency,layoutId:\"qEGvdWLzN-container\",children:/*#__PURE__*/_jsx(MenuItemMobile,{activeIcon:\"RUqy2GLMF\",defaultIcon:\"R_d9IE3XA\",height:\"100%\",id:\"qEGvdWLzN\",layoutId:\"qEGvdWLzN\",style:{height:\"100%\",width:\"100%\"},variant:\"Jwr071b5X\",width:\"100%\"})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-r1KoY.framer-1e1y2xh, .framer-r1KoY .framer-1e1y2xh { display: block; }\",\".framer-r1KoY.framer-1pbjfaj { height: 64px; overflow: visible; position: relative; width: 810px; }\",\".framer-r1KoY .framer-11p0u4w { flex: none; height: 1px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; }\",\".framer-r1KoY .framer-tp2ce1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 50%; max-width: 720px; overflow: visible; padding: 0px; position: absolute; top: 50%; width: 80%; }\",\".framer-r1KoY .framer-1459f2i-container, .framer-r1KoY .framer-1vthxiv-container, .framer-r1KoY .framer-1s6efc5-container, .framer-r1KoY .framer-i12duo-container { cursor: pointer; flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-r1KoY .framer-ivxuk0 { cursor: pointer; flex: none; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-r1KoY .framer-15bmb0m-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 810\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"q3SQd1QCm\":{\"layout\":[\"fixed\",\"fixed\"]},\"sSOGiK5Z_\":{\"layout\":[\"fixed\",\"fixed\"]},\"hPbRVJWvZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"tn0PKRZw0\":{\"layout\":[\"fixed\",\"fixed\"]},\"y1lzUkFXl\":{\"layout\":[\"fixed\",\"fixed\"]},\"CA5Ihooy3\":{\"layout\":[\"fixed\",\"fixed\"]},\"xLtz_xJ7R\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerj5IaOZgUN=withCSS(Component,css,\"framer-r1KoY\");export default Framerj5IaOZgUN;Framerj5IaOZgUN.displayName=\"Navigation/Tablet\";Framerj5IaOZgUN.defaultProps={height:64,width:810};addPropertyControls(Framerj5IaOZgUN,{variant:{options:[\"EljorAqtp\",\"q3SQd1QCm\",\"sSOGiK5Z_\",\"hPbRVJWvZ\",\"tn0PKRZw0\",\"y1lzUkFXl\",\"CA5Ihooy3\",\"xLtz_xJ7R\"],optionTitles:[\"Home\",\"Work\",\"Blog\",\"Store\",\"Stack\",\"About\",\"Contact\",\"None\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerj5IaOZgUN,[{explicitInter:true,fonts:[]},...MenuItemMobileFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerj5IaOZgUN\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"64\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"810\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"q3SQd1QCm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sSOGiK5Z_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hPbRVJWvZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tn0PKRZw0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"y1lzUkFXl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CA5Ihooy3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xLtz_xJ7R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./j5IaOZgUN.map", "// Generated by Framer (3eae0e1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"bXaYjvI5g\",\"UoCm6cEjI\"];const serializationHash=\"framer-2Yly4\";const variantClassNames={bXaYjvI5g:\"framer-v-338fpd\",UoCm6cEjI:\"framer-v-1184th6\"};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={Default:\"bXaYjvI5g\",Mobile:\"UoCm6cEjI\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"bXaYjvI5g\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bXaYjvI5g\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);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-338fpd\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"bXaYjvI5g\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({UoCm6cEjI:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant)})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2Yly4.framer-mjjkgc, .framer-2Yly4 .framer-mjjkgc { display: block; }\",\".framer-2Yly4.framer-338fpd { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; min-height: 71px; overflow: visible; padding: 16px 0px 32px 0px; position: relative; width: 540px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2Yly4.framer-338fpd { gap: 0px; } .framer-2Yly4.framer-338fpd > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-2Yly4.framer-338fpd > :first-child { margin-top: 0px; } .framer-2Yly4.framer-338fpd > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 70.5\n * @framerIntrinsicWidth 540\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UoCm6cEjI\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTBPKTqzVa=withCSS(Component,css,\"framer-2Yly4\");export default FramerTBPKTqzVa;FramerTBPKTqzVa.displayName=\"Navigation/Footer\";FramerTBPKTqzVa.defaultProps={height:70.5,width:540};addPropertyControls(FramerTBPKTqzVa,{variant:{options:[\"bXaYjvI5g\",\"UoCm6cEjI\"],optionTitles:[\"Default\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerTBPKTqzVa,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTBPKTqzVa\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UoCm6cEjI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"70.5\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"540\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TBPKTqzVa.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"Inter\"]);export const fonts=[];export const css=['.framer-SpZWW .framer-styles-preset-13yc7f5:not(.rich-text-wrapper), .framer-SpZWW .framer-styles-preset-13yc7f5.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 15px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-ad295223-71a1-4c83-8af3-ed488a713d13, #2e2e2e); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-SpZWW .framer-styles-preset-13yc7f5:not(.rich-text-wrapper), .framer-SpZWW .framer-styles-preset-13yc7f5.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 15px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-ad295223-71a1-4c83-8af3-ed488a713d13, #2e2e2e); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-SpZWW .framer-styles-preset-13yc7f5:not(.rich-text-wrapper), .framer-SpZWW .framer-styles-preset-13yc7f5.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 15px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-ad295223-71a1-4c83-8af3-ed488a713d13, #2e2e2e); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-SpZWW\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["withKey", "Component", "key", "props", "btnRef", "pe", "handleKeyDown", "event", "ue", "p", "with1", "with2", "with5", "Component", "withKey", "with6", "withBackSlash", "Component", "props", "handleKeyDown", "event", "modal", "searchButton", "clearButton", "ue", "p", "fontStore", "fonts", "css", "className", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "transformTemplate", "_", "t", "numberToString", "value", "options", "fallbackLocale", "locale", "useGrouping", "notation", "compactDisplay", "style", "currency", "currencyDisplay", "unit", "unitDisplay", "minimumFractionDigits", "maximumFractionDigits", "minimumIntegerDigits", "formatOptions", "number", "Component", "Y", "id", "className", "width", "height", "layoutId", "outerVariant", "bCVqqWcV6", "rwp61Wo7w", "oBrVvkH1j", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "isDisplayed", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "RichText2", "x", "css", "FramerSJ0ksHul6", "withCSS", "SJ0ksHul6_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "MiscTooltipFonts", "getFonts", "SJ0ksHul6_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "SVG", "css", "Framerqf1QHAlqq", "withCSS", "qf1QHAlqq_default", "addPropertyControls", "ControlType", "addFonts", "SearchIcon", "props", "p", "ClearIcon", "u", "SpinnerIcon", "motion", "Storage", "name", "resolve", "reject", "request", "window", "e", "key", "value", "setCachedData", "url", "dataToCache", "cache", "Storage", "cacheKey", "data", "checkForCachedData", "VERSION", "isDefaultLocaleId", "localeId", "INDEX_KEY", "getIndexKey", "METADATA_KEY", "getMetadataKey", "getCachedIndex", "indexKey", "cachedIndex", "checkForCachedData", "setCachedIndex", "index", "setCachedData", "metadata", "VERSION", "metadataKey", "fakeResults", "peq", "myers_32", "a", "b", "n", "m", "lst", "pv", "mv", "sc", "i", "eq", "xv", "myers_x", "mhc", "phc", "hsize", "vsize", "j", "start", "vlen", "k", "i1", "pb", "mb", "xh", "ph", "mh", "k1", "mv1", "pv1", "start1", "vlen1", "k2", "score", "i2", "eq1", "pb1", "mb1", "xv1", "xh1", "ph1", "mh1", "k3", "distance", "tmp", "localStorageDebugFlag", "window", "groupsRegex", "capitalizeFirstLetter", "value", "titleCase", "clampText", "text", "maxLength", "textLength", "slicedText", "isEmptyObject", "object", "createLogger", "showOutput", "log", "data", "time", "label", "timeEnd", "noop", "DEFAULT_FONT_FAMILY", "getFontFamily", "theme", "_theme_inputFont", "_theme_titleFont", "_theme_subtitleFont", "animationKeyFromLayout", "layout", "safeDocument", "safeWindow", "metaTagSelector", "getMetaTagContent", "metaTag", "checkIfOverLimit", "stripLocaleSlugFromPath", "url", "localeSlug", "localeSlugWithSlash", "log", "time", "timeEnd", "createLogger", "localStorageDebugFlag", "isValidUrl", "url", "splitWords", "text", "getUniqueWords", "str", "words", "word", "getNormalizedString", "getNormalizedItem", "item", "normalizedItem", "key", "value", "getMatchRange", "currentRange", "start", "end", "result", "getScoreForSearchIndexItem", "query", "fullQuery", "score", "match", "urlWords", "splitLength", "clamp", "titleWords", "titleIndex", "distance", "titleWord", "headings", "heading", "headingWords", "headingWord", "descriptionIndex", "codeblock", "getSearchIndexItemScore", "normalizedQuery", "queryWords", "total", "queryWord", "useRawSearch", "index", "settings", "se", "path", "safeWindow", "results", "title", "SearchResultTitleType", "itemA", "itemB", "getIndexedScopedToUrl", "rawUrlScope", "localeSlug", "scopedIndex", "baseScopeUrlHasVariable", "urlUpToPathVariable", "urlScope", "stripLocaleSlugFromPath", "useSearch", "searchIndex", "_setSearchIndex", "ye", "status", "setStatus", "activeLocale", "useLocaleInfo", "localeId", "setSearchIndex", "options", "ue", "loadSearchIndex", "metaTag", "safeDocument", "fakeResults", "cachedIndex", "getCachedIndex", "metaTagContent", "isOverLimit", "searchIndexURL", "getSearchIndexURL", "response", "downloadedIndex", "setCachedIndex", "error", "baseURL", "isDefaultLocaleId", "Browser", "isTouch", "window", "navigator", "isChrome", "isWebKit", "isSafari", "isSafariDesktop", "isWindows", "isMacOS", "useCallbackOnMouseMove", "callback", "mousePositionRef", "prevPositionRef", "pe", "te", "event", "Browser", "ref", "clientX", "clientY", "prevCursorPosition", "scrollIntoView", "targetElement", "scrollElement", "offsetTop", "offsetBottom", "targetElementBounds", "scrollElementBounds", "difference", "topAligned", "minOffset", "bottomAligned", "offset", "MAX_DESCRIPTION_LENGTH", "MODAL_MAX_HEIGHT", "VERTICAL_SPACING_MULTIPLIER", "ClearButton", "theme", "type", "onClick", "text", "iconOrText", "p", "ClearIcon", "Divider", "styles", "Input", "Y", "props", "ref", "value", "status", "autofocus", "placeholder", "iconType", "clearButtonType", "onChange", "inputValue", "setInputValue", "ye", "isFocused", "setIsFocused", "inputRef", "pe", "ce", "e", "inputElement", "handleInputClick", "handleClearClick", "ue", "hasInputText", "showClearButton", "verticalSpacing", "searchIcon", "SearchIcon", "u", "inputContainerStyle", "getFontFamily", "SpinnerIcon", "inputStyle", "scrollOffset", "ResultRow", "index", "result", "prevMousePositionRef", "subtitleType", "selected", "localeSlug", "style", "onMouseMove", "onPointerDown", "onNavigateTo", "url", "title", "score", "urlPath", "se", "stripLocaleSlugFromPath", "handleMouseMove", "useCallbackOnMouseMove", "event", "isContained", "borderRadius", "clamp", "subtitleText", "clampText", "handleClick", "focusTrap", "resultContainer", "resultTitle", "localStorageDebugFlag", "QuickMenuSpacer", "layoutContainerStyle", "LayoutContainer", "layoutType", "onKeyDown", "onDismiss", "children", "modalOptions", "layoutStyles", "getLayoutBaseStyles", "innerStyle", "getContainerAnimation", "key", "animationKeyFromLayout", "prop", "Browser", "containerAnimation", "motion", "ModalContainer", "heightIsStatic", "heightTransition", "heightDeps", "scope", "animate", "useAnimate", "fe", "prevHeight", "height", "ScrollView", "isTouch", "canScroll", "setCanScroll", "element", "statusStyle", "StatusMessage", "previewInfoText", "sidebarStyles", "fixedTopStyles", "quickMenuStyles", "layoutOption", "SearchInputClearButtonType", "SearchInputDividerType", "SearchResultTitleType", "SearchResultSubtitleType", "SearchResultItemType", "SearchLayoutType", "SearchEntryType", "SearchIconType", "SearchModal", "urlScope", "inputOptions", "backdropOptions", "resultOptions", "activeLocale", "useLocaleInfo", "localeId", "input", "selectedResultRow", "scrollView", "setSelected", "isKeyboardNavigationDisabled", "setIsKeyboardNavigationDisabled", "query", "setQuery", "deferredQuery", "oe", "results", "useSearch", "selectedResult", "handleResultRowPointerDown", "te", "handleResultRowMouseMove", "previousSelected", "router", "useRouter", "navigateTo", "_router_getRoute", "_route_page_preload", "_route_page", "_router_navigate", "routeId", "pathVariables", "inferInitialRouteFromPath", "route", "window", "handleKeyDown", "maxIndex", "showNoResults", "showDivider", "isItemContained", "spacing", "listPaddingTop", "scrollIntoView", "isSelected", "getViewportSize", "window", "useViewportSizeState", "getState", "state", "setState", "ye", "ue", "handleWindowResize", "EntryPointOptions", "buildShadow", "shadowProperty", "fallback", "x", "y", "blur", "color", "spread", "Overlay", "Y", "props", "ref", "layoutType", "theme", "onDismiss", "ue", "handleKeyDown", "event", "handlePointerDown", "window", "bodyOverflowHidden", "Ga", "u", "backdropStyles", "SearchLayoutType", "p", "motion", "SearchModal", "containerStyle", "EntryPoint", "withCSS", "_props_inputOptions_inputFont", "_props_inputOptions", "_props_resultOptions", "_props_resultOptions_subtitleOptions", "_props_inputOptions1", "overlay", "pe", "isOpen", "setIsOpen", "ye", "isOverLimit", "setIsOverLimit", "isSafariTouchDevice", "setIsSafariTouchDevice", "isOnCanvas", "RenderTarget", "checkIfOverLimit", "Browser", "baseInputFontSize", "inputFontSize", "useViewportSizeState", "size", "isEmptyObject", "DEFAULT_FONT_FAMILY", "handleClick", "SearchIconType", "SearchIcon", "AnimatePresence", "Search_default", "addPropertyControls", "ControlType", "titleCase", "iconType", "SearchInputDividerType", "SearchInputClearButtonType", "heightIsStatic", "animationKeyFromLayout", "SearchResultItemType", "SearchResultTitleType", "SearchResultSubtitleType", "MiscTooltipFonts", "getFonts", "SJ0ksHul6_default", "SearchFonts", "Search_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1dnk575", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "ComponentViewportProvider", "css", "FramerTc9AgKTHx", "withCSS", "Tc9AgKTHx_default", "addPropertyControls", "ControlType", "addFonts", "MenuItemDefaultFonts", "getFonts", "Tc9AgKTHx_default", "MenuItemActiveFonts", "qf1QHAlqq_default", "MenuItemDefaultControls", "getPropertyControls", "MenuItemActiveControls", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "SOU0tMChl", "QuJJKW1A1", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "css", "FramerUp7mEIh0R", "withCSS", "Up7mEIh0R_default", "addPropertyControls", "ControlType", "addFonts", "MenuItemStateFonts", "getFonts", "Up7mEIh0R_default", "MotionAWith1", "with1", "motion", "MotionAWith2", "with2", "MotionAWith6", "with6", "MotionAWith5", "with5", "MotionDivWithBackSlash", "withBackSlash", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Link", "ComponentViewportProvider", "css", "FramergpRp3R8Rl", "withCSS", "gpRp3R8Rl_default", "addPropertyControls", "ControlType", "addFonts", "SearchFonts", "getFonts", "Search_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "tap", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Wm6galrUp", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap11ie4h7", "args", "onTapbwt5ld", "onTapohsvp3", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "SVG", "ComponentViewportProvider", "css", "FramerfPysVn71m", "withCSS", "fPysVn71m_default", "addPropertyControls", "ControlType", "addFonts", "MiscTooltipFonts", "getFonts", "SJ0ksHul6_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "SVG", "css", "Framerqf1QHAlqq", "withCSS", "qf1QHAlqq_default", "addPropertyControls", "ControlType", "addFonts", "MiscIconFonts", "getFonts", "fPysVn71m_default", "MenuItemActiveFonts", "qf1QHAlqq_default", "MiscIconControls", "getPropertyControls", "MenuItemActiveControls", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "rb71BTnDS", "K7plXbdal", "K_TPvYrgF", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1sdkxk5", "args", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "css", "FramerWqAyL1RRr", "withCSS", "WqAyL1RRr_default", "addPropertyControls", "ControlType", "addFonts", "MenuItemMobileFonts", "getFonts", "WqAyL1RRr_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "Framerj5IaOZgUN", "withCSS", "j5IaOZgUN_default", "addPropertyControls", "ControlType", "addFonts", "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", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "css", "FramerTBPKTqzVa", "withCSS", "TBPKTqzVa_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className"]
}
