{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/sTILHfQjIolFFtpjIwus/mW6HbtjAFXRydfaX9aDR/BuFHZhUXV.js", "ssg:https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/TcQV6SEsl3y6G9Op8tp0/Time.js", "ssg:https://framerusercontent.com/modules/TUpIdJn2rThhE694F85v/JQwDY7O7Q5SUH6jbB1Cd/r_EtFfEU2.js", "ssg:https://framerusercontent.com/modules/34VD9IswQ5ljO2oYzkPT/3DrS0mnF4Kny2VPdXBBm/sjb0ofV05.js", "ssg:https://framerusercontent.com/modules/kAQl188T354nnLF8MZch/g4h4aap9rCx57OZKoeDu/WL05q9yJl.js", "ssg:https://framerusercontent.com/modules/gmM2TfOugAEqNKGc6tDw/5WTeZeRjOkYyoa7jPg9w/pQpCEIBNr.js", "ssg:https://framerusercontent.com/modules/OQfyfqLSs8G4L9wjWIGB/CVVixk0I8E0t7tXoosIh/ZRndiRbm0.js"],
  "sourcesContent": ["import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=[\".framer-RFMSk .framer-styles-preset-18u4d8m:not(.rich-text-wrapper), .framer-RFMSk .framer-styles-preset-18u4d8m.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #000000; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-3a508813-fbad-4a04-8148-9ec72d676918, #000000); --framer-link-text-decoration: none; }\"];export const className=\"framer-RFMSk\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,useLocaleCode}from\"framer\";import{useState,useEffect,useCallback}from\"react\";const fontStack=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;function useForceRender(){const[_,set]=useState(0);return useCallback(()=>set(v=>v+1),[]);}function formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showMinutes,showSeconds},timeFormat,monthFormat,localCode){const date=new Date;const onlyYearIsShown=!showWeekday&&!showMonth&&showYear;switch(outputType){case\"date\":return new Intl.DateTimeFormat(localCode,{weekday:showWeekday?\"long\":undefined,day:onlyYearIsShown?undefined:\"numeric\",month:showMonth?monthFormat:undefined,year:showYear?\"numeric\":undefined}).format(date);case\"time\":return new Intl.DateTimeFormat(localCode,{hour:\"numeric\",minute:showMinutes?\"numeric\":undefined,second:showSeconds&&showMinutes?\"numeric\":undefined,hour12:timeFormat===\"12h\"}).format(date);default:return new Intl.DateTimeFormat(localCode).format(date);}}/**\n * TIME AND DATE\n * FORKED FROM PROTOTYPING\n *\n *\n * @framerIntrinsicWidth 140\n * @framerIntrinsicHeight 20\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export function Time(props){const{outputType,fontFamily,fontSize,fontWeight,timeFormat,showYear,showMonth,showWeekday,showHours,showMinutes,showSeconds,monthFormat,color,font,tabularFont,alignment}=props;const[visible,setIsVisible]=useState(false);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const render=useForceRender();const localCode=useLocaleCode();const textContent=formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showHours,showMinutes,showSeconds},timeFormat,monthFormat,localCode);useEffect(()=>{setIsVisible(true);// Don\u2019t want real time on Canvas\nif(isCanvas)return;const int=setInterval(()=>{render();});return()=>{clearInterval(int);};},[]);return /*#__PURE__*/_jsx(\"p\",{suppressHydrationWarning:true,style:{margin:0,padding:0,color,fontFamily:fontStack,fontWeight:500,fontSize:16,lineHeight:1,visibility:visible?\"visible\":\"hidden\",...font,fontVariantNumeric:tabularFont?\"tabular-nums\":\"normal\",whiteSpace:\"nowrap\"},children:textContent});}Time.defaultProps={height:20,width:140,outputType:\"time\",color:\"#999\",timeFormat:\"24h\",showYear:true,showMonth:true,showWeekday:true,showMinutes:true,showSeconds:true,monthFormat:\"long\",alignment:\"center\"};Time.displayName=\"Time & Date\";addPropertyControls(Time,{outputType:{title:\"Type\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"date\",\"time\"],optionTitles:[\"Date\",\"Time\"],defaultValue:Time.defaultProps.outputType},showWeekday:{title:\"Day\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showWeekday,hidden:props=>props.outputType!==\"date\"},showMonth:{title:\"Month\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showMonth,hidden:props=>props.outputType!==\"date\"},monthFormat:{title:\"Format\",type:ControlType.Enum,options:[\"short\",\"long\",\"numeric\"],optionTitles:[\"Short\",\"Long\",\"Numeric\"],defaultValue:Time.defaultProps.monthFormat,hidden:props=>props.outputType!==\"date\"||!props.showMonth},showYear:{title:\"Year\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showYear,hidden:props=>props.outputType!==\"date\"},timeFormat:{title:\"Format\",type:ControlType.Enum,options:[\"12h\",\"24h\"],optionTitles:[\"12h\",\"24h\"],displaySegmentedControl:true,defaultValue:Time.defaultProps.timeFormat,hidden:props=>props.outputType!==\"time\"},// showHours: {\n//     title: \"Hours\",\n//     type: ControlType.Boolean,\n//     enabledTitle: \"Show\",\n//     disabledTitle: \"Hide\",\n//     defaultValue: Time.defaultProps.showHours,\n//     hidden: (props) => props.outputType !== \"time\",\n// },\nshowMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showMinutes,hidden:props=>props.outputType!==\"time\"},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showSeconds,hidden:props=>props.outputType!==\"time\"||!props.showMinutes},font:{type:ControlType.Font,controls:\"extended\"},tabularFont:{title:\"Tabular\",type:ControlType.Boolean,defaultValue:true},color:{type:ControlType.Color,defaultValue:Time.defaultProps.color}});\nexport const __FramerMetadata__ = {\"exports\":{\"Time\":{\"type\":\"reactComponent\",\"name\":\"Time\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"140\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Time.map", "// Generated by Framer (575e68f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Time as TimeDate}from\"https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/TcQV6SEsl3y6G9Op8tp0/Time.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/sTILHfQjIolFFtpjIwus/mW6HbtjAFXRydfaX9aDR/BuFHZhUXV.js\";const TimeDateFonts=getFonts(TimeDate);const cycleOrder=[\"QAtX1WntN\",\"rLR5co31k\"];const serializationHash=\"framer-CjkTS\";const variantClassNames={QAtX1WntN:\"framer-v-uzrfik\",rLR5co31k:\"framer-v-fl3b92\"};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(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"QAtX1WntN\",Mobile:\"rLR5co31k\"};const getProps=({background,height,id,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,E0LrkbOub:(_ref=background!==null&&background!==void 0?background:props.E0LrkbOub)!==null&&_ref!==void 0?_ref:\"rgb(255, 255, 255)\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"QAtX1WntN\"};};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,E0LrkbOub,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QAtX1WntN\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"rLR5co31k\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-uzrfik\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"QAtX1WntN\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:E0LrkbOub,...style},...addPropertyOverrides({rLR5co31k:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ijkldw\",layoutDependency:layoutDependency,layoutId:\"vHjCNxiQw\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1uhhwe8 framer-1lyxay9\",\"data-framer-name\":\"Group 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"iL1H3P1fJ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 50 50\"><path d=\"M 3.657 9.157 C 2.954 9.157 2.324 8.988 1.769 8.65 C 1.224 8.312 0.793 7.864 0.476 7.304 C 0.159 6.735 0 6.108 0 5.423 C 0 4.748 0.168 4.131 0.505 3.571 C 0.852 3.002 1.318 2.553 1.903 2.225 C 2.488 1.888 3.147 1.719 3.88 1.719 C 4.614 1.719 5.273 1.883 5.858 2.211 C 6.442 2.529 6.903 2.968 7.24 3.528 C 7.587 4.087 7.761 4.719 7.761 5.423 L 7.761 8.983 L 6.363 8.983 L 6.363 6.335 L 6.869 5.959 C 6.869 6.557 6.73 7.097 6.452 7.579 C 6.185 8.062 5.808 8.448 5.322 8.737 C 4.847 9.017 4.292 9.157 3.657 9.157 Z M 3.88 7.796 C 4.336 7.796 4.748 7.69 5.114 7.478 C 5.481 7.266 5.768 6.981 5.977 6.624 C 6.185 6.258 6.289 5.862 6.289 5.438 C 6.289 5.004 6.185 4.608 5.977 4.251 C 5.768 3.894 5.481 3.61 5.114 3.397 C 4.748 3.175 4.336 3.065 3.88 3.065 C 3.424 3.065 3.013 3.175 2.646 3.397 C 2.29 3.61 2.002 3.894 1.784 4.251 C 1.576 4.608 1.472 5.004 1.472 5.438 C 1.472 5.862 1.576 6.258 1.784 6.624 C 2.002 6.981 2.29 7.266 2.646 7.478 C 3.013 7.69 3.424 7.796 3.88 7.796 Z\" fill=\"rgb(7,7,7)\"></path><path d=\"M 25.351 9.157 L 23.879 9.157 L 23.879 4.931 C 23.879 4.352 23.988 3.836 24.206 3.383 C 24.434 2.929 24.761 2.572 25.187 2.312 C 25.623 2.052 26.159 1.921 26.793 1.921 C 27.031 1.921 27.259 1.945 27.477 1.994 C 27.705 2.032 27.913 2.095 28.101 2.182 L 28.101 3.6 C 27.923 3.494 27.73 3.417 27.521 3.368 C 27.323 3.32 27.125 3.296 26.927 3.296 C 26.441 3.296 26.055 3.45 25.767 3.759 C 25.489 4.058 25.351 4.468 25.351 4.989 Z\" fill=\"rgb(7,7,7)\"></path><path d=\"M 47.303 9.116 C 46.708 9.116 46.202 9.001 45.786 8.769 C 45.37 8.538 45.053 8.219 44.835 7.814 C 44.626 7.399 44.522 6.922 44.522 6.381 L 44.522 0 L 45.994 0 L 45.994 6.338 C 45.994 6.801 46.123 7.163 46.381 7.423 C 46.648 7.684 47 7.814 47.436 7.814 C 47.674 7.814 47.912 7.775 48.15 7.698 C 48.398 7.621 48.611 7.52 48.789 7.394 L 48.789 8.711 C 48.601 8.827 48.373 8.923 48.105 9.001 C 47.838 9.078 47.57 9.116 47.303 9.116 Z M 48.789 3.082 L 43.08 3.082 L 43.08 1.838 L 48.789 1.838 Z\" fill=\"rgb(7,7,7)\"></path><path d=\"M 4.058 29.618 L 2.586 29.618 L 2.586 25.393 C 2.586 24.814 2.695 24.298 2.913 23.844 C 3.141 23.391 3.468 23.034 3.894 22.773 C 4.33 22.513 4.866 22.383 5.5 22.383 C 5.738 22.383 5.966 22.407 6.184 22.455 C 6.412 22.494 6.62 22.556 6.808 22.643 L 6.808 24.061 C 6.63 23.955 6.437 23.878 6.228 23.83 C 6.03 23.782 5.832 23.758 5.634 23.758 C 5.148 23.758 4.761 23.912 4.474 24.221 C 4.197 24.52 4.058 24.93 4.058 25.451 Z\" fill=\"rgb(7,7,7)\"></path><path d=\"M 25.292 29.702 C 24.558 29.702 23.899 29.533 23.315 29.196 C 22.73 28.858 22.264 28.409 21.917 27.85 C 21.57 27.281 21.397 26.654 21.397 25.969 C 21.397 25.284 21.57 24.662 21.917 24.102 C 22.264 23.543 22.73 23.099 23.315 22.771 C 23.899 22.433 24.558 22.264 25.292 22.264 C 26.025 22.264 26.684 22.433 27.269 22.771 C 27.854 23.099 28.315 23.547 28.652 24.116 C 28.989 24.676 29.157 25.293 29.157 25.969 C 29.157 26.654 28.989 27.281 28.652 27.85 C 28.315 28.409 27.849 28.858 27.254 29.196 C 26.67 29.533 26.015 29.702 25.292 29.702 Z M 25.292 28.342 C 25.748 28.342 26.154 28.236 26.511 28.024 C 26.878 27.811 27.165 27.527 27.373 27.17 C 27.581 26.803 27.686 26.408 27.686 25.983 C 27.686 25.549 27.581 25.154 27.373 24.797 C 27.165 24.44 26.878 24.155 26.511 23.943 C 26.154 23.721 25.748 23.61 25.292 23.61 C 24.836 23.61 24.425 23.721 24.058 23.943 C 23.701 24.155 23.414 24.44 23.196 24.797 C 22.978 25.154 22.869 25.549 22.869 25.983 C 22.869 26.408 22.978 26.803 23.196 27.17 C 23.414 27.527 23.701 27.811 24.058 28.024 C 24.425 28.236 24.836 28.342 25.292 28.342 Z\" fill=\"rgb(7,7,7)\"></path><path d=\"M 46.117 29.554 C 45.384 29.554 44.725 29.385 44.14 29.048 C 43.555 28.71 43.089 28.262 42.742 27.702 C 42.406 27.142 42.237 26.525 42.237 25.85 C 42.237 25.126 42.401 24.485 42.728 23.925 C 43.055 23.366 43.506 22.927 44.081 22.608 C 44.655 22.28 45.309 22.116 46.043 22.116 C 46.628 22.116 47.163 22.251 47.649 22.521 C 48.144 22.782 48.541 23.134 48.838 23.578 C 49.135 24.022 49.284 24.504 49.284 25.025 L 48.511 24.649 L 48.526 19.034 L 49.998 19.034 L 49.998 25.85 C 49.998 26.544 49.824 27.176 49.477 27.745 C 49.14 28.305 48.679 28.749 48.095 29.077 C 47.51 29.395 46.851 29.554 46.117 29.554 Z M 46.117 28.208 C 46.573 28.208 46.984 28.102 47.351 27.89 C 47.718 27.668 48.005 27.379 48.213 27.022 C 48.422 26.665 48.526 26.269 48.526 25.835 C 48.526 25.411 48.422 25.02 48.213 24.663 C 48.005 24.297 47.718 24.007 47.351 23.795 C 46.984 23.583 46.573 23.477 46.117 23.477 C 45.661 23.477 45.25 23.583 44.883 23.795 C 44.526 24.007 44.239 24.297 44.021 24.663 C 43.813 25.02 43.709 25.411 43.709 25.835 C 43.709 26.269 43.813 26.665 44.021 27.022 C 44.239 27.379 44.526 27.668 44.883 27.89 C 45.25 28.102 45.661 28.208 46.117 28.208 Z\" fill=\"rgb(7,7,7)\"></path><path d=\"M 3.484 42.719 L 4.956 42.719 L 4.956 49.809 L 3.484 49.809 Z M 4.212 41.315 C 4.044 41.315 3.885 41.276 3.737 41.199 C 3.588 41.112 3.469 40.997 3.38 40.852 C 3.291 40.707 3.246 40.548 3.246 40.374 C 3.246 40.201 3.291 40.042 3.38 39.897 C 3.469 39.752 3.588 39.636 3.737 39.55 C 3.885 39.463 4.044 39.419 4.212 39.419 C 4.391 39.419 4.549 39.463 4.688 39.55 C 4.837 39.636 4.951 39.752 5.03 39.897 C 5.119 40.042 5.164 40.201 5.164 40.374 C 5.164 40.548 5.119 40.707 5.03 40.852 C 4.951 40.997 4.837 41.112 4.688 41.199 C 4.549 41.276 4.391 41.315 4.212 41.315 Z\" fill=\"rgb(7,7,7)\"></path><path d=\"M 26.654 49.997 C 26.059 49.997 25.554 49.882 25.137 49.65 C 24.721 49.419 24.404 49.1 24.186 48.695 C 23.978 48.28 23.874 47.803 23.874 47.262 L 23.874 40.881 L 25.345 40.881 L 25.345 47.219 C 25.345 47.682 25.474 48.044 25.732 48.304 C 26 48.565 26.351 48.695 26.788 48.695 C 27.025 48.695 27.263 48.656 27.501 48.579 C 27.749 48.502 27.962 48.401 28.14 48.275 L 28.14 49.592 C 27.952 49.708 27.724 49.804 27.457 49.882 C 27.189 49.959 26.921 49.997 26.654 49.997 Z M 28.14 43.963 L 22.431 43.963 L 22.431 42.719 L 28.14 42.719 Z\" fill=\"rgb(7,7,7)\"></path><path d=\"M 46.431 49.968 C 45.697 49.968 45.038 49.809 44.453 49.491 C 43.869 49.163 43.408 48.719 43.071 48.16 C 42.734 47.59 42.565 46.944 42.565 46.221 C 42.565 45.545 42.719 44.928 43.026 44.368 C 43.333 43.799 43.765 43.35 44.32 43.023 C 44.875 42.685 45.519 42.516 46.252 42.516 C 46.986 42.516 47.615 42.675 48.14 42.994 C 48.676 43.302 49.087 43.727 49.374 44.267 C 49.672 44.798 49.82 45.391 49.82 46.047 L 49.82 46.626 L 43.71 46.626 L 43.978 46.047 C 43.948 46.548 44.032 46.997 44.23 47.393 C 44.429 47.788 44.716 48.106 45.093 48.348 C 45.469 48.579 45.91 48.695 46.416 48.695 C 46.872 48.695 47.283 48.599 47.65 48.406 C 48.026 48.213 48.324 47.923 48.542 47.537 L 49.672 48.102 C 49.355 48.709 48.913 49.172 48.349 49.491 C 47.784 49.809 47.144 49.968 46.431 49.968 Z M 44.052 45.7 L 48.349 45.7 C 48.329 45.323 48.225 44.99 48.036 44.701 C 47.858 44.412 47.61 44.19 47.293 44.035 C 46.986 43.881 46.634 43.804 46.237 43.804 C 45.831 43.804 45.469 43.886 45.152 44.05 C 44.845 44.214 44.597 44.441 44.409 44.73 C 44.23 45.019 44.112 45.343 44.052 45.7 Z\" fill=\"rgb(7,7,7)\"></path></svg>',svgContentId:10679412907,withExternalLayout:true})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hsa3ht\",layoutDependency:layoutDependency,layoutId:\"LpWpZ_kHz\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b1yb1c\",\"data-framer-name\":\"Frame 1265\",layoutDependency:layoutDependency,layoutId:\"YmnauPiQf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif'},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18u4d8m\",\"data-styles-preset\":\"BuFHZhUXV\",children:\"Ana Sayfa\"})})})}),className:\"framer-9urqjk\",\"data-framer-name\":\"Ana Sayfa\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"G1B4LSLWj\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif'},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UbPynmSSw\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18u4d8m\",\"data-styles-preset\":\"BuFHZhUXV\",children:\"Projeler\"})})})}),className:\"framer-16vbjbl\",\"data-framer-name\":\"Projeler\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"Do2FV9lR9\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif'},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Os1y73rNg\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18u4d8m\",\"data-styles-preset\":\"BuFHZhUXV\",children:\"St\\xfcdyo\"})})})}),className:\"framer-8s3yoh\",\"data-framer-name\":\"St\\xfcdyo\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"ZE_o_abCl\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif'},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AJJTWD0UH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18u4d8m\",\"data-styles-preset\":\"BuFHZhUXV\",children:\"\u0130leti\u015Fim\"})})})}),className:\"framer-1ku4syc\",\"data-framer-name\":\"\u0130leti\u015Fim\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"CFZvAzOah\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sibja8\",\"data-framer-name\":\"Frame 1227\",layoutDependency:layoutDependency,layoutId:\"VGkc5vTFH\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/artrodite_studio/\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-x8z3tl framer-1lyxay9\",\"data-framer-name\":\"Frame 1137\",layoutDependency:layoutDependency,layoutId:\"HwnRze3eE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2F0b3NoaSBWYXJpYWJsZS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi Variable\", \"Satoshi Variable Placeholder\", sans-serif'},children:\"Instagram\"})}),className:\"framer-1n369fz\",\"data-framer-name\":\"Instagram\",fonts:[\"GF;Satoshi Variable-regular\"],layoutDependency:layoutDependency,layoutId:\"LVdndEgmu\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hbnm7k\",\"data-framer-name\":\"Arrow 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:10,layoutDependency:layoutDependency,layoutId:\"mgnd5j9AX\",svg:'<svg width=\"10\" height=\"10\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.5 1C9.5 0.723858 9.27614 0.5 9 0.5H4.5C4.22386 0.5 4 0.723858 4 1C4 1.27614 4.22386 1.5 4.5 1.5H8.5V5.5C8.5 5.77614 8.72386 6 9 6C9.27614 6 9.5 5.77614 9.5 5.5V1ZM1.35355 9.35355L9.35355 1.35355L8.64645 0.646447L0.646447 8.64645L1.35355 9.35355Z\" fill=\"#070707\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/artrodite/?viewAsMember=true\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-bzatiw framer-1lyxay9\",\"data-framer-name\":\"Frame 1138\",layoutDependency:layoutDependency,layoutId:\"BnvPp5UWk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2F0b3NoaSBWYXJpYWJsZS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi Variable\", \"Satoshi Variable Placeholder\", sans-serif'},children:\"LinkedIn\"})}),className:\"framer-c7aarf\",\"data-framer-name\":\"LinkedIn\",fonts:[\"GF;Satoshi Variable-regular\"],layoutDependency:layoutDependency,layoutId:\"Kfo5aC_cy\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-yqldwd\",\"data-framer-name\":\"Arrow 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:10,layoutDependency:layoutDependency,layoutId:\"wRNjrzGjl\",svg:'<svg width=\"10\" height=\"10\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.5 1C9.5 0.723858 9.27614 0.5 9 0.5H4.5C4.22386 0.5 4 0.723858 4 1C4 1.27614 4.22386 1.5 4.5 1.5H8.5V5.5C8.5 5.77614 8.72386 6 9 6C9.27614 6 9.5 5.77614 9.5 5.5V1ZM1.35355 9.35355L9.35355 1.35355L8.64645 0.646447L0.646447 8.64645L1.35355 9.35355Z\" fill=\"#070707\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"mailto:info@artrodite.com\",openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1ibjjmg framer-1lyxay9\",\"data-framer-name\":\"Frame 1140\",layoutDependency:layoutDependency,layoutId:\"mxrWOBnPZ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2F0b3NoaSBWYXJpYWJsZS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi Variable\", \"Satoshi Variable Placeholder\", sans-serif'},children:\"E-mail\"})}),className:\"framer-12pj846\",\"data-framer-name\":\"E-mail\",fonts:[\"GF;Satoshi Variable-regular\"],layoutDependency:layoutDependency,layoutId:\"QVHxgCAAH\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-zxf13w\",\"data-framer-name\":\"Arrow 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:10,layoutDependency:layoutDependency,layoutId:\"EcyX8e625\",svg:'<svg width=\"10\" height=\"10\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.5 1C9.5 0.723858 9.27614 0.5 9 0.5H4.5C4.22386 0.5 4 0.723858 4 1C4 1.27614 4.22386 1.5 4.5 1.5H8.5V5.5C8.5 5.77614 8.72386 6 9 6C9.27614 6 9.5 5.77614 9.5 5.5V1ZM1.35355 9.35355L9.35355 1.35355L8.64645 0.646447L0.646447 8.64645L1.35355 9.35355Z\" fill=\"#070707\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/artrodite\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-15txf0k framer-1lyxay9\",\"data-framer-name\":\"Frame 1139\",layoutDependency:layoutDependency,layoutId:\"xIAmvFhKh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2F0b3NoaSBWYXJpYWJsZS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi Variable\", \"Satoshi Variable Placeholder\", sans-serif'},children:\"Twitter\"})}),className:\"framer-118aphf\",\"data-framer-name\":\"Twitter\",fonts:[\"GF;Satoshi Variable-regular\"],layoutDependency:layoutDependency,layoutId:\"xp7SdVFVZ\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-de8jrd\",\"data-framer-name\":\"Arrow 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:10,layoutDependency:layoutDependency,layoutId:\"lDw5IuQGV\",svg:'<svg width=\"10\" height=\"10\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.5 1C9.5 0.723858 9.27614 0.5 9 0.5H4.5C4.22386 0.5 4 0.723858 4 1C4 1.27614 4.22386 1.5 4.5 1.5H8.5V5.5C8.5 5.77614 8.72386 6 9 6C9.27614 6 9.5 5.77614 9.5 5.5V1ZM1.35355 9.35355L9.35355 1.35355L8.64645 0.646447L0.646447 8.64645L1.35355 9.35355Z\" fill=\"#070707\"/>\\n</svg>\\n',withExternalLayout:true})]})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kjpr1a\",layoutDependency:layoutDependency,layoutId:\"aEMwENPHX\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14youpw\",layoutDependency:layoutDependency,layoutId:\"a10i7N3KF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2F0b3NoaSBWYXJpYWJsZS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi Variable\", \"Satoshi Variable Placeholder\", sans-serif'},children:\"\\xa9\"})}),className:\"framer-1nwjy29\",\"data-framer-name\":\"\\xa9 2023 Artrodite, T\\xfcm Haklar\u0131 Sakl\u0131d\u0131r\",fonts:[\"GF;Satoshi Variable-regular\"],layoutDependency:layoutDependency,layoutId:\"HoJUecfpL\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kujriu-container\",layoutDependency:layoutDependency,layoutId:\"KPO_jkJuV-container\",children:/*#__PURE__*/_jsx(TimeDate,{color:\"rgb(0, 0, 0)\",font:{fontFamily:'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"KPO_jkJuV\",layoutId:\"KPO_jkJuV\",monthFormat:\"long\",outputType:\"date\",showMinutes:true,showMonth:false,showSeconds:true,showWeekday:false,showYear:true,tabularFont:true,timeFormat:\"24h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2F0b3NoaSBWYXJpYWJsZS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi Variable\", \"Satoshi Variable Placeholder\", sans-serif'},children:\"Artrodite, T\\xfcm Haklar\u0131 Sakl\u0131d\u0131r\"})}),className:\"framer-1ye8ury\",\"data-framer-name\":\"\\xa9 2023 Artrodite, T\\xfcm Haklar\u0131 Sakl\u0131d\u0131r\",fonts:[\"GF;Satoshi Variable-regular\"],layoutDependency:layoutDependency,layoutId:\"aY4vkpPSv\",verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CjkTS.framer-1lyxay9, .framer-CjkTS .framer-1lyxay9 { display: block; }\",\".framer-CjkTS.framer-uzrfik { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 200px 100px 200px 100px; position: relative; width: 1700px; }\",\".framer-CjkTS .framer-ijkldw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 20%; }\",\".framer-CjkTS .framer-1uhhwe8 { flex: none; height: 50px; position: relative; text-decoration: none; width: 50px; }\",\".framer-CjkTS .framer-hsa3ht { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: 224px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-CjkTS .framer-b1yb1c, .framer-CjkTS .framer-sibja8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-CjkTS .framer-9urqjk, .framer-CjkTS .framer-16vbjbl, .framer-CjkTS .framer-8s3yoh, .framer-CjkTS .framer-1ku4syc, .framer-CjkTS .framer-1n369fz, .framer-CjkTS .framer-c7aarf, .framer-CjkTS .framer-12pj846, .framer-CjkTS .framer-118aphf, .framer-CjkTS .framer-1nwjy29, .framer-CjkTS .framer-1ye8ury { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-CjkTS .framer-x8z3tl, .framer-CjkTS .framer-bzatiw, .framer-CjkTS .framer-1ibjjmg, .framer-CjkTS .framer-15txf0k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-CjkTS .framer-hbnm7k, .framer-CjkTS .framer-yqldwd, .framer-CjkTS .framer-zxf13w, .framer-CjkTS .framer-de8jrd { flex: none; height: 10px; position: relative; width: 10px; }\",\".framer-CjkTS .framer-1kjpr1a { flex: 1 0 0px; height: 48px; overflow: hidden; position: relative; width: 1px; }\",\".framer-CjkTS .framer-14youpw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 20px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-CjkTS .framer-1kujriu-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CjkTS.framer-uzrfik, .framer-CjkTS .framer-ijkldw, .framer-CjkTS .framer-hsa3ht, .framer-CjkTS .framer-b1yb1c, .framer-CjkTS .framer-sibja8, .framer-CjkTS .framer-x8z3tl, .framer-CjkTS .framer-bzatiw, .framer-CjkTS .framer-1ibjjmg, .framer-CjkTS .framer-15txf0k, .framer-CjkTS .framer-14youpw { gap: 0px; } .framer-CjkTS.framer-uzrfik > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-CjkTS.framer-uzrfik > :first-child, .framer-CjkTS .framer-ijkldw > :first-child, .framer-CjkTS .framer-hsa3ht > :first-child, .framer-CjkTS .framer-x8z3tl > :first-child, .framer-CjkTS .framer-bzatiw > :first-child, .framer-CjkTS .framer-1ibjjmg > :first-child, .framer-CjkTS .framer-15txf0k > :first-child, .framer-CjkTS .framer-14youpw > :first-child { margin-left: 0px; } .framer-CjkTS.framer-uzrfik > :last-child, .framer-CjkTS .framer-ijkldw > :last-child, .framer-CjkTS .framer-hsa3ht > :last-child, .framer-CjkTS .framer-x8z3tl > :last-child, .framer-CjkTS .framer-bzatiw > :last-child, .framer-CjkTS .framer-1ibjjmg > :last-child, .framer-CjkTS .framer-15txf0k > :last-child, .framer-CjkTS .framer-14youpw > :last-child { margin-right: 0px; } .framer-CjkTS .framer-ijkldw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-CjkTS .framer-hsa3ht > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-CjkTS .framer-b1yb1c > *, .framer-CjkTS .framer-sibja8 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-CjkTS .framer-b1yb1c > :first-child, .framer-CjkTS .framer-sibja8 > :first-child { margin-top: 0px; } .framer-CjkTS .framer-b1yb1c > :last-child, .framer-CjkTS .framer-sibja8 > :last-child { margin-bottom: 0px; } .framer-CjkTS .framer-x8z3tl > *, .framer-CjkTS .framer-bzatiw > *, .framer-CjkTS .framer-1ibjjmg > *, .framer-CjkTS .framer-15txf0k > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-CjkTS .framer-14youpw > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } }\",\".framer-CjkTS.framer-v-fl3b92.framer-uzrfik { flex-direction: column; gap: 64px; padding: 50px 20px 50px 20px; width: 390px; }\",\".framer-CjkTS.framer-v-fl3b92 .framer-hsa3ht { flex: none; flex-direction: column; height: min-content; width: 100%; }\",\".framer-CjkTS.framer-v-fl3b92 .framer-14youpw { flex: none; gap: 10px; height: min-content; justify-content: flex-start; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CjkTS.framer-v-fl3b92.framer-uzrfik, .framer-CjkTS.framer-v-fl3b92 .framer-hsa3ht, .framer-CjkTS.framer-v-fl3b92 .framer-14youpw { gap: 0px; } .framer-CjkTS.framer-v-fl3b92.framer-uzrfik > *, .framer-CjkTS.framer-v-fl3b92 .framer-hsa3ht > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-CjkTS.framer-v-fl3b92.framer-uzrfik > :first-child, .framer-CjkTS.framer-v-fl3b92 .framer-hsa3ht > :first-child { margin-top: 0px; } .framer-CjkTS.framer-v-fl3b92.framer-uzrfik > :last-child, .framer-CjkTS.framer-v-fl3b92 .framer-hsa3ht > :last-child { margin-bottom: 0px; } .framer-CjkTS.framer-v-fl3b92 .framer-14youpw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-CjkTS.framer-v-fl3b92 .framer-14youpw > :first-child { margin-left: 0px; } .framer-CjkTS.framer-v-fl3b92 .framer-14youpw > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 624\n * @framerIntrinsicWidth 1700\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rLR5co31k\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"E0LrkbOub\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerr_EtFfEU2=withCSS(Component,css,\"framer-CjkTS\");export default Framerr_EtFfEU2;Framerr_EtFfEU2.displayName=\"General/Footer\";Framerr_EtFfEU2.defaultProps={height:624,width:1700};addPropertyControls(Framerr_EtFfEU2,{variant:{options:[\"QAtX1WntN\",\"rLR5co31k\"],optionTitles:[\"Variant 1\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},E0LrkbOub:{defaultValue:\"rgb(255, 255, 255)\",title:\"Background\",type:ControlType.Color}});addFonts(Framerr_EtFfEU2,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]},...TimeDateFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerr_EtFfEU2\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"E0LrkbOub\\\":\\\"background\\\"}\",\"framerIntrinsicWidth\":\"1700\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rLR5co31k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"624\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./r_EtFfEU2.map", "import{fontStore as r}from\"framer\";r.loadWebFontsFromSelectors([]);export const fonts=[];export const css=[\".framer-TCTvW .framer-styles-preset-v31sf2:not(.rich-text-wrapper), .framer-TCTvW .framer-styles-preset-v31sf2.rich-text-wrapper a { --framer-link-current-text-color: #ffffff; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #ffffff; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #ffffff; --framer-link-text-decoration: none; }\"];export const className=\"framer-TCTvW\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (56d1180)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"Ut9mXaA4C\",\"EfAS0t7KM\",\"EJ9qB6YNp\"];const serializationHash=\"framer-ZImwy\";const variantClassNames={EfAS0t7KM:\"framer-v-khnmx5\",EJ9qB6YNp:\"framer-v-mxanyv\",Ut9mXaA4C:\"framer-v-14oxc4t\"};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={\"Variant 2\":\"EfAS0t7KM\",Desktop:\"Ut9mXaA4C\",Variant:\"EJ9qB6YNp\"};const getProps=({_irket,background,color,fontSize,height,id,link,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3,_ref4;return{...props,ByeWP5VU7:(_ref=background!==null&&background!==void 0?background:props.ByeWP5VU7)!==null&&_ref!==void 0?_ref:\"rgb(0, 0, 0)\",rKsfLSPqj:(_ref1=color!==null&&color!==void 0?color:props.rKsfLSPqj)!==null&&_ref1!==void 0?_ref1:\"rgb(0, 0, 0)\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"Ut9mXaA4C\",X0aklyuy3:(_ref3=_irket!==null&&_irket!==void 0?_irket:props.X0aklyuy3)!==null&&_ref3!==void 0?_ref3:\"Proje\",XK7ZAkKVV:(_ref4=fontSize!==null&&fontSize!==void 0?fontSize:props.XK7ZAkKVV)!==null&&_ref4!==void 0?_ref4:16,zHUO88Iud:link!==null&&link!==void 0?link:props.zHUO88Iud};};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,X0aklyuy3,zHUO88Iud,rKsfLSPqj,ByeWP5VU7,XK7ZAkKVV,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Ut9mXaA4C\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter7ljogc=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"EfAS0t7KM\");});const onMouseLeave1pw58o8=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"Ut9mXaA4C\");});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(Link,{href:zHUO88Iud,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-14oxc4t\",className,classNames)} framer-g81681`,\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Ut9mXaA4C\",onMouseEnter:onMouseEnter7ljogc,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({EfAS0t7KM:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeave1pw58o8},EJ9qB6YNp:{\"data-framer-name\":undefined,\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"calc(var(--variable-reference-XK7ZAkKVV-WL05q9yJl) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-rKsfLSPqj-WL05q9yJl))\"},children:\"Proje\"})}),className:\"framer-kpge87\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZbTupag_h\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-rKsfLSPqj-WL05q9yJl)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-rKsfLSPqj-WL05q9yJl\":rKsfLSPqj,\"--variable-reference-XK7ZAkKVV-WL05q9yJl\":XK7ZAkKVV},text:X0aklyuy3,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-co8de4\",layoutDependency:layoutDependency,layoutId:\"Ymut3Jy2A\",style:{backgroundColor:ByeWP5VU7}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZImwy.framer-g81681, .framer-ZImwy .framer-g81681 { display: block; }\",\".framer-ZImwy.framer-14oxc4t { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-ZImwy .framer-kpge87 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ZImwy .framer-co8de4 { flex: none; height: 2px; overflow: hidden; position: relative; width: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZImwy.framer-14oxc4t { gap: 0px; } .framer-ZImwy.framer-14oxc4t > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ZImwy.framer-14oxc4t > :first-child { margin-top: 0px; } .framer-ZImwy.framer-14oxc4t > :last-child { margin-bottom: 0px; } }\",\".framer-ZImwy.framer-v-khnmx5 .framer-co8de4, .framer-ZImwy.framer-v-mxanyv .framer-co8de4 { width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 21\n * @framerIntrinsicWidth 39\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"EfAS0t7KM\":{\"layout\":[\"auto\",\"auto\"]},\"EJ9qB6YNp\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"X0aklyuy3\":\"_irket\",\"zHUO88Iud\":\"link\",\"rKsfLSPqj\":\"color\",\"ByeWP5VU7\":\"background\",\"XK7ZAkKVV\":\"fontSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWL05q9yJl=withCSS(Component,css,\"framer-ZImwy\");export default FramerWL05q9yJl;FramerWL05q9yJl.displayName=\"projects_Sidebar\";FramerWL05q9yJl.defaultProps={height:21,width:39};addPropertyControls(FramerWL05q9yJl,{variant:{options:[\"Ut9mXaA4C\",\"EfAS0t7KM\",\"EJ9qB6YNp\"],optionTitles:[\"Desktop\",\"Variant 2\",\"Variant\"],title:\"Variant\",type:ControlType.Enum},X0aklyuy3:{defaultValue:\"Proje\",displayTextArea:false,title:\"\u015Eirket\",type:ControlType.String},zHUO88Iud:{title:\"Link\",type:ControlType.Link},rKsfLSPqj:{defaultValue:\"rgb(0, 0, 0)\",title:\"Color\",type:ControlType.Color},ByeWP5VU7:{defaultValue:\"rgb(0, 0, 0)\",title:\"Background\",type:ControlType.Color},XK7ZAkKVV:{defaultValue:16,title:\"Font Size\",type:ControlType.Number}});addFonts(FramerWL05q9yJl,[{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWL05q9yJl\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"X0aklyuy3\\\":\\\"_irket\\\",\\\"zHUO88Iud\\\":\\\"link\\\",\\\"rKsfLSPqj\\\":\\\"color\\\",\\\"ByeWP5VU7\\\":\\\"background\\\",\\\"XK7ZAkKVV\\\":\\\"fontSize\\\"}\",\"framerIntrinsicHeight\":\"21\",\"framerIntrinsicWidth\":\"39\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"EfAS0t7KM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"EJ9qB6YNp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WL05q9yJl.map", "// Generated by Framer (315fd46)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"Ny4zXyy5w\",\"RD0oxJnv3\",\"fW6LHX1hE\"];const serializationHash=\"framer-5HI6E\";const variantClassNames={fW6LHX1hE:\"framer-v-9v0ymm\",Ny4zXyy5w:\"framer-v-j48b7x\",RD0oxJnv3:\"framer-v-7d8oaf\"};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(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"Ny4zXyy5w\",Passive:\"RD0oxJnv3\",Variant:\"fW6LHX1hE\"};const getProps=({background,border,height,id,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,A2bHRYQeK:(_ref=title!==null&&title!==void 0?title:props.A2bHRYQeK)!==null&&_ref!==void 0?_ref:\"Bize Ula\u015F\",ir4SgoH23:(_ref1=border!==null&&border!==void 0?border:props.ir4SgoH23)!==null&&_ref1!==void 0?_ref1:{borderColor:\"rgb(0, 0, 0)\",borderStyle:\"solid\",borderWidth:1},variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"Ny4zXyy5w\",WLl4J3Wsv:(_ref3=background!==null&&background!==void 0?background:props.WLl4J3Wsv)!==null&&_ref3!==void 0?_ref3:\"rgb(7, 7, 7)\"};};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,A2bHRYQeK,WLl4J3Wsv,ir4SgoH23,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Ny4zXyy5w\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _ir4SgoH23_borderBottomWidth,_ir4SgoH23_borderLeftWidth,_ir4SgoH23_borderRightWidth,_ir4SgoH23_borderTopWidth;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:\"AJJTWD0UH\"},children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-j48b7x\",className,classNames)} framer-h68aal`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Ny4zXyy5w\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:WLl4J3Wsv,borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,...style},variants:{fW6LHX1hE:{\"--border-bottom-width\":`${(_ir4SgoH23_borderBottomWidth=ir4SgoH23.borderBottomWidth)!==null&&_ir4SgoH23_borderBottomWidth!==void 0?_ir4SgoH23_borderBottomWidth:ir4SgoH23.borderWidth}px`,\"--border-color\":ir4SgoH23.borderColor,\"--border-left-width\":`${(_ir4SgoH23_borderLeftWidth=ir4SgoH23.borderLeftWidth)!==null&&_ir4SgoH23_borderLeftWidth!==void 0?_ir4SgoH23_borderLeftWidth:ir4SgoH23.borderWidth}px`,\"--border-right-width\":`${(_ir4SgoH23_borderRightWidth=ir4SgoH23.borderRightWidth)!==null&&_ir4SgoH23_borderRightWidth!==void 0?_ir4SgoH23_borderRightWidth:ir4SgoH23.borderWidth}px`,\"--border-style\":ir4SgoH23.borderStyle,\"--border-top-width\":`${(_ir4SgoH23_borderTopWidth=ir4SgoH23.borderTopWidth)!==null&&_ir4SgoH23_borderTopWidth!==void 0?_ir4SgoH23_borderTopWidth:ir4SgoH23.borderWidth}px`,backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({fW6LHX1hE:{\"data-border\":true,\"data-framer-name\":undefined},RD0oxJnv3:{\"data-framer-name\":\"Passive\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\"},children:\"Bize Ula\u015F\"})}),className:\"framer-aam55k\",\"data-framer-name\":\"Text\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"I2127:2013;2:3109\",text:A2bHRYQeK,variants:{fW6LHX1hE:{\"--extracted-r6o4lv\":\"rgb(7, 7, 7)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fW6LHX1hE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(7, 7, 7))\"},children:\"Bize Ula\u015F\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5HI6E.framer-h68aal, .framer-5HI6E .framer-h68aal { display: block; }\",\".framer-5HI6E.framer-j48b7x { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 30px; justify-content: center; overflow: visible; padding: 0px 20px 0px 20px; position: relative; text-decoration: none; width: 100px; }\",\".framer-5HI6E .framer-aam55k { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5HI6E.framer-j48b7x { gap: 0px; } .framer-5HI6E.framer-j48b7x > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-5HI6E.framer-j48b7x > :first-child { margin-left: 0px; } .framer-5HI6E.framer-j48b7x > :last-child { margin-right: 0px; } }\",'.framer-5HI6E[data-border=\"true\"]::after, .framer-5HI6E [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"RD0oxJnv3\":{\"layout\":[\"fixed\",\"fixed\"]},\"fW6LHX1hE\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"A2bHRYQeK\":\"title\",\"WLl4J3Wsv\":\"background\",\"ir4SgoH23\":\"border\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerpQpCEIBNr=withCSS(Component,css,\"framer-5HI6E\");export default FramerpQpCEIBNr;FramerpQpCEIBNr.displayName=\"Button/ 1\";FramerpQpCEIBNr.defaultProps={height:30,width:100};addPropertyControls(FramerpQpCEIBNr,{variant:{options:[\"Ny4zXyy5w\",\"RD0oxJnv3\",\"fW6LHX1hE\"],optionTitles:[\"Variant 1\",\"Passive\",\"Variant\"],title:\"Variant\",type:ControlType.Enum},A2bHRYQeK:{defaultValue:\"Bize Ula\u015F\",displayTextArea:false,title:\"Title\",type:ControlType.String},WLl4J3Wsv:{defaultValue:\"rgb(7, 7, 7)\",title:\"Background\",type:ControlType.Color},ir4SgoH23:{defaultValue:{borderColor:\"rgb(0, 0, 0)\",borderStyle:\"solid\",borderWidth:1},title:\"Border\",type:ControlType.Border}});addFonts(FramerpQpCEIBNr,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpQpCEIBNr\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"100\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RD0oxJnv3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fW6LHX1hE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"30\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"A2bHRYQeK\\\":\\\"title\\\",\\\"WLl4J3Wsv\\\":\\\"background\\\",\\\"ir4SgoH23\\\":\\\"border\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pQpCEIBNr.map", "// Generated by Framer (e4277c8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Link,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/34VD9IswQ5ljO2oYzkPT/3DrS0mnF4Kny2VPdXBBm/sjb0ofV05.js\";import Button1 from\"https://framerusercontent.com/modules/gmM2TfOugAEqNKGc6tDw/5WTeZeRjOkYyoa7jPg9w/pQpCEIBNr.js\";import Projects_Sidebar from\"https://framerusercontent.com/modules/kAQl188T354nnLF8MZch/g4h4aap9rCx57OZKoeDu/WL05q9yJl.js\";const Projects_SidebarFonts=getFonts(Projects_Sidebar);const Button1Fonts=getFonts(Button1);const Projects_SidebarControls=getPropertyControls(Projects_Sidebar);const cycleOrder=[\"kZLJ_tMax\",\"mkuhMfOcJ\",\"LK7ttp7wF\",\"d24MTXDty\",\"EiSKsnMw0\",\"a41HWpIb5\"];const serializationHash=\"framer-DlEsG\";const variantClassNames={a41HWpIb5:\"framer-v-iiu2n3\",d24MTXDty:\"framer-v-1r04g0q\",EiSKsnMw0:\"framer-v-1lz412l\",kZLJ_tMax:\"framer-v-7x9v5q\",LK7ttp7wF:\"framer-v-74eqc2\",mkuhMfOcJ:\"framer-v-1thlbar\"};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(React.Fragment);const humanReadableEnumMap={\"Variant 2\":\"EfAS0t7KM\",Desktop:\"Ut9mXaA4C\"};const humanReadableVariantMap={\"Mobile light\":\"d24MTXDty\",\"Variant 6\":\"a41HWpIb5\",Dark:\"kZLJ_tMax\",Light:\"LK7ttp7wF\",Mobil:\"mkuhMfOcJ\"};const getProps=({background,background2,height,home,id,neo,projeler,st_dyo,width,...props})=>{var _ref,_humanReadableEnumMap_neo,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4,_humanReadableEnumMap_projeler,_ref5,_ref6,_humanReadableEnumMap_st_dyo,_ref7,_ref8,_humanReadableEnumMap_home,_ref9,_ref10;return{...props,BUw3zfhYp:(_ref=background2!==null&&background2!==void 0?background2:props.BUw3zfhYp)!==null&&_ref!==void 0?_ref:\"rgb(255, 255, 255)\",C6gjRx5t2:(_ref2=(_ref1=(_humanReadableEnumMap_neo=humanReadableEnumMap[neo])!==null&&_humanReadableEnumMap_neo!==void 0?_humanReadableEnumMap_neo:neo)!==null&&_ref1!==void 0?_ref1:props.C6gjRx5t2)!==null&&_ref2!==void 0?_ref2:\"Ut9mXaA4C\",Nbh_nto6O:(_ref3=background!==null&&background!==void 0?background:props.Nbh_nto6O)!==null&&_ref3!==void 0?_ref3:\"rgb(0, 0, 0)\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"kZLJ_tMax\",vawHQvVIi:(_ref6=(_ref5=(_humanReadableEnumMap_projeler=humanReadableEnumMap[projeler])!==null&&_humanReadableEnumMap_projeler!==void 0?_humanReadableEnumMap_projeler:projeler)!==null&&_ref5!==void 0?_ref5:props.vawHQvVIi)!==null&&_ref6!==void 0?_ref6:\"Ut9mXaA4C\",xtxeeZGzV:(_ref8=(_ref7=(_humanReadableEnumMap_st_dyo=humanReadableEnumMap[st_dyo])!==null&&_humanReadableEnumMap_st_dyo!==void 0?_humanReadableEnumMap_st_dyo:st_dyo)!==null&&_ref7!==void 0?_ref7:props.xtxeeZGzV)!==null&&_ref8!==void 0?_ref8:\"Ut9mXaA4C\",yES61kxjv:(_ref10=(_ref9=(_humanReadableEnumMap_home=humanReadableEnumMap[home])!==null&&_humanReadableEnumMap_home!==void 0?_humanReadableEnumMap_home:home)!==null&&_ref9!==void 0?_ref9:props.yES61kxjv)!==null&&_ref10!==void 0?_ref10:\"Ut9mXaA4C\"};};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,Nbh_nto6O,BUw3zfhYp,yES61kxjv,vawHQvVIi,xtxeeZGzV,C6gjRx5t2,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"kZLJ_tMax\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapv1f9so=activeVariantCallback(async(...args)=>{setVariant(\"mkuhMfOcJ\");});const onTapze2d7l=activeVariantCallback(async(...args)=>{setVariant(\"d24MTXDty\");});const onTapmi8w6u=activeVariantCallback(async(...args)=>{setVariant(\"EiSKsnMw0\");});const onTapo53rk0=activeVariantCallback(async(...args)=>{setVariant(\"a41HWpIb5\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"LK7ttp7wF\",\"d24MTXDty\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"LK7ttp7wF\",\"d24MTXDty\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"EiSKsnMw0\",\"a41HWpIb5\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"mkuhMfOcJ\",\"d24MTXDty\"].includes(baseVariant))return true;return false;};const router=useRouter();const isDisplayed4=()=>{if([\"mkuhMfOcJ\",\"d24MTXDty\",\"EiSKsnMw0\",\"a41HWpIb5\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if([\"mkuhMfOcJ\",\"d24MTXDty\",\"EiSKsnMw0\",\"a41HWpIb5\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-7x9v5q\",className,classNames),\"data-framer-name\":\"Dark\",layoutDependency:layoutDependency,layoutId:\"kZLJ_tMax\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{a41HWpIb5:{backgroundColor:\"rgb(0, 0, 0)\"},d24MTXDty:{backgroundColor:Nbh_nto6O},EiSKsnMw0:{backgroundColor:\"rgb(0, 0, 0)\"},mkuhMfOcJ:{backgroundColor:BUw3zfhYp}},...addPropertyOverrides({a41HWpIb5:{\"data-framer-name\":\"Variant 6\"},d24MTXDty:{\"data-framer-name\":\"Mobile light\"},EiSKsnMw0:{\"data-framer-name\":\"Variant 6\"},LK7ttp7wF:{\"data-framer-name\":\"Light\"},mkuhMfOcJ:{\"data-framer-name\":\"Mobil\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wowaa9\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"ZgFHJOQYP\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1o00lno framer-182xt50\",\"data-framer-name\":\"Group 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"yEsQK4mO8\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 45 44\"><path d=\"M 3.219 8.058 C 2.599 8.058 2.045 7.91 1.557 7.612 C 1.077 7.315 0.698 6.921 0.419 6.428 C 0.14 5.927 0 5.375 0 4.773 C 0 4.178 0.148 3.635 0.445 3.143 C 0.75 2.642 1.16 2.247 1.675 1.958 C 2.189 1.661 2.769 1.513 3.415 1.513 C 4.06 1.513 4.64 1.657 5.155 1.946 C 5.67 2.226 6.075 2.612 6.372 3.104 C 6.677 3.597 6.83 4.153 6.83 4.773 L 6.83 7.905 L 5.6 7.905 L 5.6 5.575 L 6.045 5.244 C 6.045 5.77 5.923 6.246 5.678 6.67 C 5.443 7.095 5.111 7.434 4.684 7.689 C 4.265 7.935 3.777 8.058 3.219 8.058 Z M 3.415 6.861 C 3.816 6.861 4.178 6.768 4.501 6.581 C 4.823 6.394 5.076 6.144 5.26 5.83 C 5.443 5.507 5.534 5.159 5.534 4.785 C 5.534 4.403 5.443 4.055 5.26 3.741 C 5.076 3.427 4.823 3.177 4.501 2.99 C 4.178 2.795 3.816 2.697 3.415 2.697 C 3.014 2.697 2.652 2.795 2.329 2.99 C 2.015 3.177 1.762 3.427 1.57 3.741 C 1.387 4.055 1.295 4.403 1.295 4.785 C 1.295 5.159 1.387 5.507 1.57 5.83 C 1.762 6.144 2.015 6.394 2.329 6.581 C 2.652 6.768 3.014 6.861 3.415 6.861 Z\" fill=\"rgb(7,7,7)\"></path><path d=\"M 22.31 8.058 L 21.014 8.058 L 21.014 4.34 C 21.014 3.83 21.11 3.376 21.302 2.977 C 21.503 2.578 21.791 2.264 22.166 2.035 C 22.549 1.805 23.02 1.691 23.579 1.691 C 23.788 1.691 23.989 1.712 24.181 1.755 C 24.381 1.788 24.564 1.844 24.73 1.92 L 24.73 3.168 C 24.573 3.075 24.403 3.007 24.22 2.964 C 24.045 2.922 23.871 2.901 23.697 2.901 C 23.269 2.901 22.929 3.036 22.676 3.308 C 22.432 3.571 22.31 3.932 22.31 4.391 Z\" fill=\"rgb(7,7,7)\"></path><path d=\"M 41.628 8.023 C 41.105 8.023 40.66 7.921 40.294 7.717 C 39.927 7.513 39.648 7.233 39.456 6.877 C 39.273 6.512 39.181 6.091 39.181 5.616 L 39.181 0 L 40.477 0 L 40.477 5.578 C 40.477 5.985 40.59 6.304 40.817 6.533 C 41.052 6.762 41.362 6.877 41.746 6.877 C 41.955 6.877 42.164 6.843 42.374 6.775 C 42.592 6.707 42.779 6.618 42.936 6.507 L 42.936 7.666 C 42.771 7.768 42.57 7.853 42.335 7.921 C 42.099 7.989 41.864 8.023 41.628 8.023 Z M 42.936 2.712 L 37.912 2.712 L 37.912 1.617 L 42.936 1.617 Z\" fill=\"rgb(7,7,7)\"></path><path d=\"M 3.573 26.065 L 2.277 26.065 L 2.277 22.346 C 2.277 21.837 2.373 21.383 2.565 20.984 C 2.766 20.585 3.054 20.271 3.429 20.041 C 3.813 19.812 4.284 19.698 4.842 19.698 C 5.051 19.698 5.252 19.719 5.444 19.761 C 5.644 19.795 5.827 19.851 5.993 19.927 L 5.993 21.175 C 5.836 21.081 5.666 21.014 5.483 20.971 C 5.308 20.929 5.134 20.907 4.959 20.907 C 4.532 20.907 4.192 21.043 3.939 21.315 C 3.695 21.578 3.573 21.939 3.573 22.397 Z\" fill=\"rgb(7,7,7)\"></path><path d=\"M 22.26 26.139 C 21.614 26.139 21.034 25.99 20.52 25.693 C 20.005 25.396 19.595 25.001 19.29 24.509 C 18.984 24.008 18.832 23.456 18.832 22.853 C 18.832 22.251 18.984 21.703 19.29 21.211 C 19.595 20.718 20.005 20.328 20.52 20.039 C 21.034 19.742 21.614 19.593 22.26 19.593 C 22.905 19.593 23.485 19.742 24 20.039 C 24.514 20.328 24.92 20.723 25.216 21.223 C 25.513 21.716 25.661 22.259 25.661 22.853 C 25.661 23.456 25.513 24.008 25.216 24.509 C 24.92 25.001 24.51 25.396 23.987 25.693 C 23.472 25.99 22.896 26.139 22.26 26.139 Z M 22.26 24.942 C 22.661 24.942 23.018 24.848 23.332 24.662 C 23.655 24.475 23.908 24.224 24.091 23.91 C 24.274 23.588 24.366 23.24 24.366 22.866 C 24.366 22.484 24.274 22.136 24.091 21.822 C 23.908 21.508 23.655 21.257 23.332 21.071 C 23.018 20.875 22.661 20.778 22.26 20.778 C 21.858 20.778 21.496 20.875 21.174 21.071 C 20.86 21.257 20.607 21.508 20.415 21.822 C 20.223 22.136 20.127 22.484 20.127 22.866 C 20.127 23.24 20.223 23.588 20.415 23.91 C 20.607 24.224 20.86 24.475 21.174 24.662 C 21.496 24.848 21.858 24.942 22.26 24.942 Z\" fill=\"rgb(7,7,7)\"></path><path d=\"M 40.587 26.009 C 39.941 26.009 39.361 25.86 38.847 25.563 C 38.332 25.266 37.922 24.871 37.617 24.379 C 37.32 23.886 37.172 23.343 37.172 22.749 C 37.172 22.112 37.316 21.547 37.604 21.055 C 37.892 20.563 38.288 20.176 38.794 19.896 C 39.3 19.608 39.876 19.463 40.521 19.463 C 41.036 19.463 41.507 19.582 41.934 19.82 C 42.37 20.049 42.719 20.359 42.981 20.75 C 43.243 21.14 43.373 21.564 43.373 22.023 L 42.693 21.692 L 42.706 16.751 L 44.002 16.751 L 44.002 22.749 C 44.002 23.36 43.849 23.916 43.544 24.417 C 43.247 24.909 42.841 25.3 42.327 25.589 C 41.812 25.869 41.232 26.009 40.587 26.009 Z M 40.587 24.824 C 40.988 24.824 41.35 24.731 41.673 24.544 C 41.995 24.349 42.248 24.094 42.431 23.78 C 42.615 23.466 42.706 23.118 42.706 22.736 C 42.706 22.362 42.615 22.019 42.431 21.705 C 42.248 21.382 41.995 21.127 41.673 20.94 C 41.35 20.754 40.988 20.66 40.587 20.66 C 40.185 20.66 39.823 20.754 39.501 20.94 C 39.187 21.127 38.934 21.382 38.742 21.705 C 38.559 22.019 38.467 22.362 38.467 22.736 C 38.467 23.118 38.559 23.466 38.742 23.78 C 38.934 24.094 39.187 24.349 39.501 24.544 C 39.823 24.731 40.185 24.824 40.587 24.824 Z\" fill=\"rgb(7,7,7)\"></path><path d=\"M 3.067 37.595 L 4.362 37.595 L 4.362 43.835 L 3.067 43.835 Z M 3.708 36.359 C 3.56 36.359 3.42 36.325 3.289 36.257 C 3.158 36.181 3.054 36.079 2.975 35.952 C 2.897 35.825 2.857 35.684 2.857 35.532 C 2.857 35.379 2.897 35.239 2.975 35.111 C 3.054 34.984 3.158 34.882 3.289 34.806 C 3.42 34.729 3.56 34.691 3.708 34.691 C 3.865 34.691 4.004 34.729 4.127 34.806 C 4.257 34.882 4.358 34.984 4.427 35.111 C 4.506 35.239 4.545 35.379 4.545 35.532 C 4.545 35.684 4.506 35.825 4.427 35.952 C 4.358 36.079 4.257 36.181 4.127 36.257 C 4.004 36.325 3.865 36.359 3.708 36.359 Z\" fill=\"rgb(7,7,7)\"></path><path d=\"M 23.457 44 C 22.934 44 22.489 43.898 22.123 43.694 C 21.756 43.491 21.477 43.211 21.285 42.854 C 21.102 42.489 21.01 42.069 21.01 41.593 L 21.01 35.977 L 22.306 35.977 L 22.306 41.555 C 22.306 41.962 22.419 42.281 22.646 42.51 C 22.881 42.739 23.191 42.854 23.575 42.854 C 23.784 42.854 23.993 42.82 24.203 42.752 C 24.421 42.684 24.608 42.595 24.765 42.485 L 24.765 43.643 C 24.6 43.745 24.399 43.83 24.164 43.898 C 23.928 43.966 23.693 44 23.457 44 Z M 24.765 38.69 L 19.741 38.69 L 19.741 37.595 L 24.765 37.595 Z\" fill=\"rgb(7,7,7)\"></path><path d=\"M 40.862 43.974 C 40.216 43.974 39.636 43.834 39.121 43.554 C 38.607 43.266 38.201 42.875 37.905 42.383 C 37.608 41.882 37.46 41.313 37.46 40.676 C 37.46 40.082 37.595 39.539 37.865 39.046 C 38.136 38.545 38.515 38.151 39.004 37.862 C 39.492 37.565 40.059 37.416 40.705 37.416 C 41.35 37.416 41.904 37.556 42.366 37.837 C 42.837 38.108 43.199 38.482 43.452 38.957 C 43.714 39.424 43.845 39.946 43.845 40.523 L 43.845 41.033 L 38.467 41.033 L 38.703 40.523 C 38.677 40.965 38.751 41.36 38.925 41.708 C 39.1 42.056 39.353 42.336 39.684 42.548 C 40.016 42.752 40.404 42.854 40.849 42.854 C 41.25 42.854 41.612 42.769 41.934 42.599 C 42.266 42.429 42.528 42.175 42.719 41.835 L 43.714 42.332 C 43.435 42.867 43.047 43.274 42.549 43.554 C 42.052 43.834 41.49 43.974 40.862 43.974 Z M 38.768 40.218 L 42.549 40.218 C 42.532 39.887 42.44 39.594 42.275 39.339 C 42.118 39.084 41.9 38.889 41.621 38.753 C 41.35 38.618 41.04 38.55 40.692 38.55 C 40.334 38.55 40.016 38.622 39.736 38.766 C 39.466 38.91 39.248 39.11 39.082 39.365 C 38.925 39.619 38.821 39.904 38.768 40.218 Z\" fill=\"rgb(7,7,7)\"></path></svg>',svgContentId:11486588722,variants:{a41HWpIb5:{backgroundColor:\"rgba(0, 0, 0, 0)\"},EiSKsnMw0:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},withExternalLayout:true,...addPropertyOverrides({a41HWpIb5:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 45 44\"><path d=\"M 3.219 8.058 C 2.599 8.058 2.045 7.91 1.557 7.612 C 1.077 7.315 0.698 6.921 0.419 6.428 C 0.14 5.927 0 5.375 0 4.773 C 0 4.178 0.148 3.635 0.445 3.143 C 0.75 2.642 1.16 2.247 1.675 1.958 C 2.189 1.661 2.769 1.513 3.415 1.513 C 4.06 1.513 4.64 1.657 5.155 1.946 C 5.67 2.226 6.075 2.612 6.372 3.104 C 6.677 3.597 6.83 4.153 6.83 4.773 L 6.83 7.905 L 5.6 7.905 L 5.6 5.575 L 6.045 5.244 C 6.045 5.77 5.923 6.246 5.678 6.67 C 5.443 7.095 5.111 7.434 4.684 7.689 C 4.265 7.935 3.777 8.058 3.219 8.058 Z M 3.415 6.861 C 3.816 6.861 4.178 6.768 4.501 6.581 C 4.823 6.394 5.076 6.144 5.26 5.83 C 5.443 5.507 5.534 5.159 5.534 4.785 C 5.534 4.403 5.443 4.055 5.26 3.741 C 5.076 3.427 4.823 3.177 4.501 2.99 C 4.178 2.795 3.816 2.697 3.415 2.697 C 3.014 2.697 2.652 2.795 2.329 2.99 C 2.015 3.177 1.762 3.427 1.57 3.741 C 1.387 4.055 1.295 4.403 1.295 4.785 C 1.295 5.159 1.387 5.507 1.57 5.83 C 1.762 6.144 2.015 6.394 2.329 6.581 C 2.652 6.768 3.014 6.861 3.415 6.861 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 22.31 8.058 L 21.014 8.058 L 21.014 4.34 C 21.014 3.83 21.11 3.376 21.302 2.977 C 21.503 2.578 21.791 2.264 22.166 2.035 C 22.549 1.805 23.02 1.691 23.579 1.691 C 23.788 1.691 23.989 1.712 24.181 1.755 C 24.381 1.788 24.564 1.844 24.73 1.92 L 24.73 3.168 C 24.573 3.075 24.403 3.007 24.22 2.964 C 24.045 2.922 23.871 2.901 23.697 2.901 C 23.269 2.901 22.929 3.036 22.676 3.308 C 22.432 3.571 22.31 3.932 22.31 4.391 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 41.628 8.023 C 41.105 8.023 40.66 7.921 40.294 7.717 C 39.927 7.513 39.648 7.233 39.456 6.877 C 39.273 6.512 39.181 6.091 39.181 5.616 L 39.181 0 L 40.477 0 L 40.477 5.578 C 40.477 5.985 40.59 6.304 40.817 6.533 C 41.052 6.762 41.362 6.877 41.746 6.877 C 41.955 6.877 42.164 6.843 42.374 6.775 C 42.592 6.707 42.779 6.618 42.936 6.507 L 42.936 7.666 C 42.771 7.768 42.57 7.853 42.335 7.921 C 42.099 7.989 41.864 8.023 41.628 8.023 Z M 42.936 2.712 L 37.912 2.712 L 37.912 1.617 L 42.936 1.617 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 3.573 26.065 L 2.277 26.065 L 2.277 22.346 C 2.277 21.837 2.373 21.383 2.565 20.984 C 2.766 20.585 3.054 20.271 3.429 20.041 C 3.813 19.812 4.284 19.698 4.842 19.698 C 5.051 19.698 5.252 19.719 5.444 19.761 C 5.644 19.795 5.827 19.851 5.993 19.927 L 5.993 21.175 C 5.836 21.081 5.666 21.014 5.483 20.971 C 5.308 20.929 5.134 20.907 4.959 20.907 C 4.532 20.907 4.192 21.043 3.939 21.315 C 3.695 21.578 3.573 21.939 3.573 22.397 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 22.26 26.139 C 21.614 26.139 21.034 25.99 20.52 25.693 C 20.005 25.396 19.595 25.001 19.29 24.509 C 18.984 24.008 18.832 23.456 18.832 22.853 C 18.832 22.251 18.984 21.703 19.29 21.211 C 19.595 20.718 20.005 20.328 20.52 20.039 C 21.034 19.742 21.614 19.593 22.26 19.593 C 22.905 19.593 23.485 19.742 24 20.039 C 24.514 20.328 24.92 20.723 25.216 21.223 C 25.513 21.716 25.661 22.259 25.661 22.853 C 25.661 23.456 25.513 24.008 25.216 24.509 C 24.92 25.001 24.51 25.396 23.987 25.693 C 23.472 25.99 22.896 26.139 22.26 26.139 Z M 22.26 24.942 C 22.661 24.942 23.018 24.848 23.332 24.662 C 23.655 24.475 23.908 24.224 24.091 23.91 C 24.274 23.588 24.366 23.24 24.366 22.866 C 24.366 22.484 24.274 22.136 24.091 21.822 C 23.908 21.508 23.655 21.257 23.332 21.071 C 23.018 20.875 22.661 20.778 22.26 20.778 C 21.858 20.778 21.496 20.875 21.174 21.071 C 20.86 21.257 20.607 21.508 20.415 21.822 C 20.223 22.136 20.127 22.484 20.127 22.866 C 20.127 23.24 20.223 23.588 20.415 23.91 C 20.607 24.224 20.86 24.475 21.174 24.662 C 21.496 24.848 21.858 24.942 22.26 24.942 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 40.587 26.009 C 39.941 26.009 39.361 25.86 38.847 25.563 C 38.332 25.266 37.922 24.871 37.617 24.379 C 37.32 23.886 37.172 23.343 37.172 22.749 C 37.172 22.112 37.316 21.547 37.604 21.055 C 37.892 20.563 38.288 20.176 38.794 19.896 C 39.3 19.608 39.876 19.463 40.521 19.463 C 41.036 19.463 41.507 19.582 41.934 19.82 C 42.37 20.049 42.719 20.359 42.981 20.75 C 43.243 21.14 43.373 21.564 43.373 22.023 L 42.693 21.692 L 42.706 16.751 L 44.002 16.751 L 44.002 22.749 C 44.002 23.36 43.849 23.916 43.544 24.417 C 43.247 24.909 42.841 25.3 42.327 25.589 C 41.812 25.869 41.232 26.009 40.587 26.009 Z M 40.587 24.824 C 40.988 24.824 41.35 24.731 41.673 24.544 C 41.995 24.349 42.248 24.094 42.431 23.78 C 42.615 23.466 42.706 23.118 42.706 22.736 C 42.706 22.362 42.615 22.019 42.431 21.705 C 42.248 21.382 41.995 21.127 41.673 20.94 C 41.35 20.754 40.988 20.66 40.587 20.66 C 40.185 20.66 39.823 20.754 39.501 20.94 C 39.187 21.127 38.934 21.382 38.742 21.705 C 38.559 22.019 38.467 22.362 38.467 22.736 C 38.467 23.118 38.559 23.466 38.742 23.78 C 38.934 24.094 39.187 24.349 39.501 24.544 C 39.823 24.731 40.185 24.824 40.587 24.824 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 3.067 37.595 L 4.362 37.595 L 4.362 43.835 L 3.067 43.835 Z M 3.708 36.359 C 3.56 36.359 3.42 36.325 3.289 36.257 C 3.158 36.181 3.054 36.079 2.975 35.952 C 2.897 35.825 2.857 35.684 2.857 35.532 C 2.857 35.379 2.897 35.239 2.975 35.111 C 3.054 34.984 3.158 34.882 3.289 34.806 C 3.42 34.729 3.56 34.691 3.708 34.691 C 3.865 34.691 4.004 34.729 4.127 34.806 C 4.257 34.882 4.358 34.984 4.427 35.111 C 4.506 35.239 4.545 35.379 4.545 35.532 C 4.545 35.684 4.506 35.825 4.427 35.952 C 4.358 36.079 4.257 36.181 4.127 36.257 C 4.004 36.325 3.865 36.359 3.708 36.359 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 23.457 44 C 22.934 44 22.489 43.898 22.123 43.694 C 21.756 43.491 21.477 43.211 21.285 42.854 C 21.102 42.489 21.01 42.069 21.01 41.593 L 21.01 35.977 L 22.306 35.977 L 22.306 41.555 C 22.306 41.962 22.419 42.281 22.646 42.51 C 22.881 42.739 23.191 42.854 23.575 42.854 C 23.784 42.854 23.993 42.82 24.203 42.752 C 24.421 42.684 24.608 42.595 24.765 42.485 L 24.765 43.643 C 24.6 43.745 24.399 43.83 24.164 43.898 C 23.928 43.966 23.693 44 23.457 44 Z M 24.765 38.69 L 19.741 38.69 L 19.741 37.595 L 24.765 37.595 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 40.862 43.974 C 40.216 43.974 39.636 43.834 39.121 43.554 C 38.607 43.266 38.201 42.875 37.905 42.383 C 37.608 41.882 37.46 41.313 37.46 40.676 C 37.46 40.082 37.595 39.539 37.865 39.046 C 38.136 38.545 38.515 38.151 39.004 37.862 C 39.492 37.565 40.059 37.416 40.705 37.416 C 41.35 37.416 41.904 37.556 42.366 37.837 C 42.837 38.108 43.199 38.482 43.452 38.957 C 43.714 39.424 43.845 39.946 43.845 40.523 L 43.845 41.033 L 38.467 41.033 L 38.703 40.523 C 38.677 40.965 38.751 41.36 38.925 41.708 C 39.1 42.056 39.353 42.336 39.684 42.548 C 40.016 42.752 40.404 42.854 40.849 42.854 C 41.25 42.854 41.612 42.769 41.934 42.599 C 42.266 42.429 42.528 42.175 42.719 41.835 L 43.714 42.332 C 43.435 42.867 43.047 43.274 42.549 43.554 C 42.052 43.834 41.49 43.974 40.862 43.974 Z M 38.768 40.218 L 42.549 40.218 C 42.532 39.887 42.44 39.594 42.275 39.339 C 42.118 39.084 41.9 38.889 41.621 38.753 C 41.35 38.618 41.04 38.55 40.692 38.55 C 40.334 38.55 40.016 38.622 39.736 38.766 C 39.466 38.91 39.248 39.11 39.082 39.365 C 38.925 39.619 38.821 39.904 38.768 40.218 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11442257781},EiSKsnMw0:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 45 44\"><path d=\"M 3.219 8.058 C 2.599 8.058 2.045 7.91 1.557 7.612 C 1.077 7.315 0.698 6.921 0.419 6.428 C 0.14 5.927 0 5.375 0 4.773 C 0 4.178 0.148 3.635 0.445 3.143 C 0.75 2.642 1.16 2.247 1.675 1.958 C 2.189 1.661 2.769 1.513 3.415 1.513 C 4.06 1.513 4.64 1.657 5.155 1.946 C 5.67 2.226 6.075 2.612 6.372 3.104 C 6.677 3.597 6.83 4.153 6.83 4.773 L 6.83 7.905 L 5.6 7.905 L 5.6 5.575 L 6.045 5.244 C 6.045 5.77 5.923 6.246 5.678 6.67 C 5.443 7.095 5.111 7.434 4.684 7.689 C 4.265 7.935 3.777 8.058 3.219 8.058 Z M 3.415 6.861 C 3.816 6.861 4.178 6.768 4.501 6.581 C 4.823 6.394 5.076 6.144 5.26 5.83 C 5.443 5.507 5.534 5.159 5.534 4.785 C 5.534 4.403 5.443 4.055 5.26 3.741 C 5.076 3.427 4.823 3.177 4.501 2.99 C 4.178 2.795 3.816 2.697 3.415 2.697 C 3.014 2.697 2.652 2.795 2.329 2.99 C 2.015 3.177 1.762 3.427 1.57 3.741 C 1.387 4.055 1.295 4.403 1.295 4.785 C 1.295 5.159 1.387 5.507 1.57 5.83 C 1.762 6.144 2.015 6.394 2.329 6.581 C 2.652 6.768 3.014 6.861 3.415 6.861 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 22.31 8.058 L 21.014 8.058 L 21.014 4.34 C 21.014 3.83 21.11 3.376 21.302 2.977 C 21.503 2.578 21.791 2.264 22.166 2.035 C 22.549 1.805 23.02 1.691 23.579 1.691 C 23.788 1.691 23.989 1.712 24.181 1.755 C 24.381 1.788 24.564 1.844 24.73 1.92 L 24.73 3.168 C 24.573 3.075 24.403 3.007 24.22 2.964 C 24.045 2.922 23.871 2.901 23.697 2.901 C 23.269 2.901 22.929 3.036 22.676 3.308 C 22.432 3.571 22.31 3.932 22.31 4.391 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 41.628 8.023 C 41.105 8.023 40.66 7.921 40.294 7.717 C 39.927 7.513 39.648 7.233 39.456 6.877 C 39.273 6.512 39.181 6.091 39.181 5.616 L 39.181 0 L 40.477 0 L 40.477 5.578 C 40.477 5.985 40.59 6.304 40.817 6.533 C 41.052 6.762 41.362 6.877 41.746 6.877 C 41.955 6.877 42.164 6.843 42.374 6.775 C 42.592 6.707 42.779 6.618 42.936 6.507 L 42.936 7.666 C 42.771 7.768 42.57 7.853 42.335 7.921 C 42.099 7.989 41.864 8.023 41.628 8.023 Z M 42.936 2.712 L 37.912 2.712 L 37.912 1.617 L 42.936 1.617 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 3.573 26.065 L 2.277 26.065 L 2.277 22.346 C 2.277 21.837 2.373 21.383 2.565 20.984 C 2.766 20.585 3.054 20.271 3.429 20.041 C 3.813 19.812 4.284 19.698 4.842 19.698 C 5.051 19.698 5.252 19.719 5.444 19.761 C 5.644 19.795 5.827 19.851 5.993 19.927 L 5.993 21.175 C 5.836 21.081 5.666 21.014 5.483 20.971 C 5.308 20.929 5.134 20.907 4.959 20.907 C 4.532 20.907 4.192 21.043 3.939 21.315 C 3.695 21.578 3.573 21.939 3.573 22.397 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 22.26 26.139 C 21.614 26.139 21.034 25.99 20.52 25.693 C 20.005 25.396 19.595 25.001 19.29 24.509 C 18.984 24.008 18.832 23.456 18.832 22.853 C 18.832 22.251 18.984 21.703 19.29 21.211 C 19.595 20.718 20.005 20.328 20.52 20.039 C 21.034 19.742 21.614 19.593 22.26 19.593 C 22.905 19.593 23.485 19.742 24 20.039 C 24.514 20.328 24.92 20.723 25.216 21.223 C 25.513 21.716 25.661 22.259 25.661 22.853 C 25.661 23.456 25.513 24.008 25.216 24.509 C 24.92 25.001 24.51 25.396 23.987 25.693 C 23.472 25.99 22.896 26.139 22.26 26.139 Z M 22.26 24.942 C 22.661 24.942 23.018 24.848 23.332 24.662 C 23.655 24.475 23.908 24.224 24.091 23.91 C 24.274 23.588 24.366 23.24 24.366 22.866 C 24.366 22.484 24.274 22.136 24.091 21.822 C 23.908 21.508 23.655 21.257 23.332 21.071 C 23.018 20.875 22.661 20.778 22.26 20.778 C 21.858 20.778 21.496 20.875 21.174 21.071 C 20.86 21.257 20.607 21.508 20.415 21.822 C 20.223 22.136 20.127 22.484 20.127 22.866 C 20.127 23.24 20.223 23.588 20.415 23.91 C 20.607 24.224 20.86 24.475 21.174 24.662 C 21.496 24.848 21.858 24.942 22.26 24.942 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 40.587 26.009 C 39.941 26.009 39.361 25.86 38.847 25.563 C 38.332 25.266 37.922 24.871 37.617 24.379 C 37.32 23.886 37.172 23.343 37.172 22.749 C 37.172 22.112 37.316 21.547 37.604 21.055 C 37.892 20.563 38.288 20.176 38.794 19.896 C 39.3 19.608 39.876 19.463 40.521 19.463 C 41.036 19.463 41.507 19.582 41.934 19.82 C 42.37 20.049 42.719 20.359 42.981 20.75 C 43.243 21.14 43.373 21.564 43.373 22.023 L 42.693 21.692 L 42.706 16.751 L 44.002 16.751 L 44.002 22.749 C 44.002 23.36 43.849 23.916 43.544 24.417 C 43.247 24.909 42.841 25.3 42.327 25.589 C 41.812 25.869 41.232 26.009 40.587 26.009 Z M 40.587 24.824 C 40.988 24.824 41.35 24.731 41.673 24.544 C 41.995 24.349 42.248 24.094 42.431 23.78 C 42.615 23.466 42.706 23.118 42.706 22.736 C 42.706 22.362 42.615 22.019 42.431 21.705 C 42.248 21.382 41.995 21.127 41.673 20.94 C 41.35 20.754 40.988 20.66 40.587 20.66 C 40.185 20.66 39.823 20.754 39.501 20.94 C 39.187 21.127 38.934 21.382 38.742 21.705 C 38.559 22.019 38.467 22.362 38.467 22.736 C 38.467 23.118 38.559 23.466 38.742 23.78 C 38.934 24.094 39.187 24.349 39.501 24.544 C 39.823 24.731 40.185 24.824 40.587 24.824 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 3.067 37.595 L 4.362 37.595 L 4.362 43.835 L 3.067 43.835 Z M 3.708 36.359 C 3.56 36.359 3.42 36.325 3.289 36.257 C 3.158 36.181 3.054 36.079 2.975 35.952 C 2.897 35.825 2.857 35.684 2.857 35.532 C 2.857 35.379 2.897 35.239 2.975 35.111 C 3.054 34.984 3.158 34.882 3.289 34.806 C 3.42 34.729 3.56 34.691 3.708 34.691 C 3.865 34.691 4.004 34.729 4.127 34.806 C 4.257 34.882 4.358 34.984 4.427 35.111 C 4.506 35.239 4.545 35.379 4.545 35.532 C 4.545 35.684 4.506 35.825 4.427 35.952 C 4.358 36.079 4.257 36.181 4.127 36.257 C 4.004 36.325 3.865 36.359 3.708 36.359 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 23.457 44 C 22.934 44 22.489 43.898 22.123 43.694 C 21.756 43.491 21.477 43.211 21.285 42.854 C 21.102 42.489 21.01 42.069 21.01 41.593 L 21.01 35.977 L 22.306 35.977 L 22.306 41.555 C 22.306 41.962 22.419 42.281 22.646 42.51 C 22.881 42.739 23.191 42.854 23.575 42.854 C 23.784 42.854 23.993 42.82 24.203 42.752 C 24.421 42.684 24.608 42.595 24.765 42.485 L 24.765 43.643 C 24.6 43.745 24.399 43.83 24.164 43.898 C 23.928 43.966 23.693 44 23.457 44 Z M 24.765 38.69 L 19.741 38.69 L 19.741 37.595 L 24.765 37.595 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 40.862 43.974 C 40.216 43.974 39.636 43.834 39.121 43.554 C 38.607 43.266 38.201 42.875 37.905 42.383 C 37.608 41.882 37.46 41.313 37.46 40.676 C 37.46 40.082 37.595 39.539 37.865 39.046 C 38.136 38.545 38.515 38.151 39.004 37.862 C 39.492 37.565 40.059 37.416 40.705 37.416 C 41.35 37.416 41.904 37.556 42.366 37.837 C 42.837 38.108 43.199 38.482 43.452 38.957 C 43.714 39.424 43.845 39.946 43.845 40.523 L 43.845 41.033 L 38.467 41.033 L 38.703 40.523 C 38.677 40.965 38.751 41.36 38.925 41.708 C 39.1 42.056 39.353 42.336 39.684 42.548 C 40.016 42.752 40.404 42.854 40.849 42.854 C 41.25 42.854 41.612 42.769 41.934 42.599 C 42.266 42.429 42.528 42.175 42.719 41.835 L 43.714 42.332 C 43.435 42.867 43.047 43.274 42.549 43.554 C 42.052 43.834 41.49 43.974 40.862 43.974 Z M 38.768 40.218 L 42.549 40.218 C 42.532 39.887 42.44 39.594 42.275 39.339 C 42.118 39.084 41.9 38.889 41.621 38.753 C 41.35 38.618 41.04 38.55 40.692 38.55 C 40.334 38.55 40.016 38.622 39.736 38.766 C 39.466 38.91 39.248 39.11 39.082 39.365 C 38.925 39.619 38.821 39.904 38.768 40.218 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11442257781}},baseVariant,gestureVariant)})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1yheq3u framer-182xt50\",\"data-framer-name\":\"Logo light\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:45,layoutDependency:layoutDependency,layoutId:\"RoNML93rs\",svg:'<svg width=\"45\" height=\"44\" viewBox=\"0 0 45 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.21856 8.05815C2.59927 8.05815 2.0454 7.90958 1.55694 7.61245C1.07721 7.31531 0.69779 6.92054 0.418674 6.42813C0.139558 5.92724 0 5.37542 0 4.77265C0 4.17837 0.14828 3.63503 0.444841 3.14263C0.750125 2.64174 1.16008 2.24697 1.6747 1.95832C2.18932 1.66118 2.76936 1.51261 3.41481 1.51261C4.06027 1.51261 4.64031 1.65694 5.15493 1.94559C5.66955 2.22575 6.07514 2.61203 6.3717 3.10443C6.67698 3.59683 6.82962 4.1529 6.82962 4.77265V7.90534H5.59977V5.57492L6.04461 5.24383C6.04461 5.77019 5.9225 6.24561 5.67827 6.67009C5.44277 7.09457 5.11132 7.43416 4.68392 7.68885C4.26524 7.93505 3.77679 8.05815 3.21856 8.05815ZM3.41481 6.86111C3.81604 6.86111 4.17802 6.76772 4.50075 6.58095C4.82348 6.39418 5.07643 6.14373 5.2596 5.82961C5.44277 5.50701 5.53435 5.15893 5.53435 4.78538C5.53435 4.40335 5.44277 4.05527 5.2596 3.74115C5.07643 3.42703 4.82348 3.17659 4.50075 2.98982C4.17802 2.79455 3.81604 2.69692 3.41481 2.69692C3.01358 2.69692 2.6516 2.79455 2.32888 2.98982C2.01487 3.17659 1.76192 3.42703 1.57003 3.74115C1.38686 4.05527 1.29527 4.40335 1.29527 4.78538C1.29527 5.15893 1.38686 5.50701 1.57003 5.82961C1.76192 6.14373 2.01487 6.39418 2.32888 6.58095C2.6516 6.76772 3.01358 6.86111 3.41481 6.86111Z\" fill=\"#F1F1F1\"/>\\n<path d=\"M22.3097 8.05811H21.0144V4.33963C21.0144 3.83025 21.1103 3.37605 21.3022 2.97703C21.5029 2.57802 21.7907 2.2639 22.1658 2.03468C22.5495 1.80546 23.0205 1.69085 23.5788 1.69085C23.7881 1.69085 23.9887 1.71207 24.1806 1.75452C24.3812 1.78848 24.5644 1.84366 24.7301 1.92007V3.16805C24.5731 3.07466 24.403 3.00675 24.2199 2.9643C24.0454 2.92185 23.871 2.90063 23.6965 2.90063C23.2691 2.90063 22.929 3.03646 22.676 3.30813C22.4318 3.57131 22.3097 3.93212 22.3097 4.39056V8.05811Z\" fill=\"#F1F1F1\"/>\\n<path d=\"M41.6281 8.02274C41.1047 8.02274 40.6599 7.92087 40.2936 7.71712C39.9272 7.51336 39.6481 7.2332 39.4562 6.87664C39.273 6.51158 39.1815 6.09134 39.1815 5.61592V0H40.4767V5.57772C40.4767 5.98522 40.5901 6.30358 40.8169 6.53281C41.0524 6.76203 41.362 6.87664 41.7458 6.87664C41.9552 6.87664 42.1645 6.84268 42.3738 6.77476C42.5919 6.70684 42.7794 6.6177 42.9364 6.50734V7.66618C42.7707 7.76805 42.5701 7.85295 42.3346 7.92087C42.0991 7.98879 41.8636 8.02274 41.6281 8.02274ZM42.9364 2.71245H37.9124V1.61728H42.9364V2.71245Z\" fill=\"#F1F1F1\"/>\\n<path d=\"M3.57263 26.065H2.27736V22.3465C2.27736 21.8371 2.3733 21.3829 2.56519 20.9839C2.76581 20.5849 3.05365 20.2708 3.42871 20.0416C3.8125 19.8124 4.2835 19.6977 4.84174 19.6977C5.05107 19.6977 5.25169 19.719 5.44358 19.7614C5.6442 19.7954 5.82737 19.8506 5.99309 19.927V21.175C5.83609 21.0816 5.666 21.0136 5.48283 20.9712C5.30838 20.9287 5.13394 20.9075 4.95949 20.9075C4.53209 20.9075 4.19192 21.0434 3.93897 21.315C3.69474 21.5782 3.57263 21.939 3.57263 22.3975V26.065Z\" fill=\"#F1F1F1\"/>\\n<path d=\"M22.2596 26.139C21.6141 26.139 21.0341 25.9904 20.5195 25.6933C20.0048 25.3961 19.5949 25.0014 19.2896 24.509C18.9843 24.0081 18.8317 23.4562 18.8317 22.8535C18.8317 22.2507 18.9843 21.7031 19.2896 21.2107C19.5949 20.7183 20.0048 20.3278 20.5195 20.0392C21.0341 19.742 21.6141 19.5934 22.2596 19.5934C22.905 19.5934 23.4851 19.742 23.9997 20.0392C24.5143 20.3278 24.9199 20.7226 25.2164 21.2235C25.513 21.7159 25.6613 22.2592 25.6613 22.8535C25.6613 23.4562 25.513 24.0081 25.2164 24.509C24.9199 25.0014 24.5099 25.3961 23.9866 25.6933C23.472 25.9904 22.8963 26.139 22.2596 26.139ZM22.2596 24.9419C22.6608 24.9419 23.0184 24.8486 23.3324 24.6618C23.6551 24.475 23.9081 24.2246 24.0913 23.9104C24.2744 23.5878 24.366 23.2398 24.366 22.8662C24.366 22.4842 24.2744 22.1361 24.0913 21.822C23.9081 21.5079 23.6551 21.2574 23.3324 21.0706C23.0184 20.8754 22.6608 20.7778 22.2596 20.7778C21.8583 20.7778 21.4964 20.8754 21.1736 21.0706C20.8596 21.2574 20.6067 21.5079 20.4148 21.822C20.2229 22.1361 20.1269 22.4842 20.1269 22.8662C20.1269 23.2398 20.2229 23.5878 20.4148 23.9104C20.6067 24.2246 20.8596 24.475 21.1736 24.6618C21.4964 24.8486 21.8583 24.9419 22.2596 24.9419Z\" fill=\"#F1F1F1\"/>\\n<path d=\"M40.5867 26.0088C39.9412 26.0088 39.3612 25.8603 38.8466 25.5631C38.3319 25.266 37.922 24.8712 37.6167 24.3788C37.3201 23.8864 37.1719 23.3431 37.1719 22.7488C37.1719 22.1121 37.3158 21.5475 37.6036 21.0551C37.8915 20.5627 38.2883 20.1764 38.7942 19.8963C39.3001 19.6076 39.8758 19.4633 40.5213 19.4633C41.0359 19.4633 41.5069 19.5822 41.9343 19.8199C42.3704 20.0491 42.7193 20.359 42.981 20.7495C43.2426 21.14 43.3735 21.5645 43.3735 22.0229L42.6931 21.6918L42.7062 16.7509H44.0015V22.7488C44.0015 23.3601 43.8488 23.9161 43.5436 24.417C43.247 24.9094 42.8414 25.3 42.3268 25.5886C41.8122 25.8688 41.2321 26.0088 40.5867 26.0088ZM40.5867 24.8245C40.9879 24.8245 41.3499 24.7312 41.6726 24.5444C41.9953 24.3491 42.2483 24.0944 42.4315 23.7803C42.6146 23.4662 42.7062 23.1181 42.7062 22.7361C42.7062 22.3625 42.6146 22.0187 42.4315 21.7046C42.2483 21.382 41.9953 21.1273 41.6726 20.9405C41.3499 20.7537 40.9879 20.6604 40.5867 20.6604C40.1854 20.6604 39.8235 20.7537 39.5007 20.9405C39.1867 21.1273 38.9338 21.382 38.7419 21.7046C38.5587 22.0187 38.4671 22.3625 38.4671 22.7361C38.4671 23.1181 38.5587 23.4662 38.7419 23.7803C38.9338 24.0944 39.1867 24.3491 39.5007 24.5444C39.8235 24.7312 40.1854 24.8245 40.5867 24.8245Z\" fill=\"#F1F1F1\"/>\\n<path d=\"M3.06676 37.5945H4.36203V43.8344H3.06676V37.5945ZM3.70785 36.3593C3.55957 36.3593 3.42002 36.3253 3.28918 36.2574C3.15834 36.181 3.05368 36.0791 2.97517 35.9518C2.89667 35.8244 2.85742 35.6843 2.85742 35.5315C2.85742 35.3787 2.89667 35.2386 2.97517 35.1113C3.05368 34.9839 3.15834 34.8821 3.28918 34.8057C3.42002 34.7292 3.55957 34.691 3.70785 34.691C3.86486 34.691 4.00442 34.7292 4.12653 34.8057C4.25736 34.8821 4.35767 34.9839 4.42745 35.1113C4.50595 35.2386 4.5452 35.3787 4.5452 35.5315C4.5452 35.6843 4.50595 35.8244 4.42745 35.9518C4.35767 36.0791 4.25736 36.181 4.12653 36.2574C4.00442 36.3253 3.86486 36.3593 3.70785 36.3593Z\" fill=\"#F1F1F1\"/>\\n<path d=\"M23.4571 44C22.9337 44 22.4889 43.8981 22.1226 43.6943C21.7562 43.4906 21.4771 43.2104 21.2852 42.8539C21.102 42.4888 21.0105 42.0686 21.0105 41.5931V35.9772H22.3057V41.5549C22.3057 41.9624 22.4191 42.2808 22.6459 42.51C22.8814 42.7392 23.1911 42.8539 23.5748 42.8539C23.7842 42.8539 23.9935 42.8199 24.2029 42.752C24.4209 42.6841 24.6084 42.5949 24.7654 42.4846V43.6434C24.5997 43.7453 24.3991 43.8302 24.1636 43.8981C23.9281 43.966 23.6926 44 23.4571 44ZM24.7654 38.6897H19.7414V37.5945H24.7654V38.6897Z\" fill=\"#F1F1F1\"/>\\n<path d=\"M40.8616 43.9745C40.2162 43.9745 39.6361 43.8344 39.1215 43.5543C38.6069 43.2656 38.2013 42.8751 37.9047 42.3827C37.6082 41.8818 37.4599 41.313 37.4599 40.6763C37.4599 40.082 37.5951 39.5386 37.8655 39.0462C38.1359 38.5453 38.5153 38.1506 39.0037 37.8619C39.4922 37.5648 40.0591 37.4162 40.7046 37.4162C41.3501 37.4162 41.9039 37.5563 42.3662 37.8365C42.8372 38.1081 43.1992 38.4817 43.4522 38.9571C43.7138 39.424 43.8447 39.9461 43.8447 40.5234V41.0328H38.4673L38.7028 40.5234C38.6766 40.9649 38.7508 41.3597 38.9252 41.7078C39.0997 42.0558 39.3526 42.336 39.6841 42.5482C40.0155 42.752 40.4037 42.8539 40.8485 42.8539C41.2498 42.8539 41.6117 42.769 41.9345 42.5992C42.2659 42.4294 42.5276 42.1747 42.7195 41.8351L43.7138 42.3317C43.4347 42.8666 43.0466 43.2741 42.5494 43.5543C42.0522 43.8344 41.4896 43.9745 40.8616 43.9745ZM38.7682 40.2178H42.5494C42.5319 39.8867 42.4404 39.5938 42.2746 39.3391C42.1176 39.0844 41.8996 38.8892 41.6205 38.7533C41.3501 38.6175 41.0404 38.5496 40.6915 38.5496C40.3339 38.5496 40.0155 38.6218 39.7364 38.7661C39.466 38.9104 39.248 39.1099 39.0822 39.3646C38.9252 39.6193 38.8206 39.9037 38.7682 40.2178Z\" fill=\"#F1F1F1\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ixma56\",\"data-framer-name\":\"Icon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"m1ffKvPjk\",onTap:onTapv1f9so,...addPropertyOverrides({a41HWpIb5:{onTap:onTapze2d7l}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-nkh6na\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"gjLUttEzu\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:-45}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-e320c6\",\"data-framer-name\":\"Mid\",layoutDependency:layoutDependency,layoutId:\"QtzxnpO9T\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10z9gxb\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"E3HmVADXg\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:45}})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ezg5bt\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"NNdTcm9v3\",...addPropertyOverrides({d24MTXDty:{\"data-highlight\":true,onTap:onTapo53rk0},mkuhMfOcJ:{\"data-highlight\":true,onTap:onTapmi8w6u}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13m6ey4\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"FS4UnyzvV\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{d24MTXDty:{backgroundColor:\"rgb(255, 255, 255)\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u50ac0\",\"data-framer-name\":\"Mid\",layoutDependency:layoutDependency,layoutId:\"iCcLPbARO\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{d24MTXDty:{backgroundColor:\"rgb(255, 255, 255)\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bv767x\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"XKfx_8pRI\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{d24MTXDty:{backgroundColor:\"rgb(255, 255, 255)\"}}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vnwxk4\",\"data-framer-name\":\"Linkler\",layoutDependency:layoutDependency,layoutId:\"y5q3Rj23H\",style:{opacity:1},variants:{d24MTXDty:{opacity:0},mkuhMfOcJ:{opacity:0}},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||100)-0-21)/2)+0,...addPropertyOverrides({a41HWpIb5:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+44+50+0},d24MTXDty:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+44+50+0},EiSKsnMw0:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+44+50+0},mkuhMfOcJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+44+50+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11phxup-container\",layoutDependency:layoutDependency,layoutId:\"AK5ikvYgZ-container\",children:/*#__PURE__*/_jsx(Projects_Sidebar,{ByeWP5VU7:\"rgb(0, 0, 0)\",height:\"100%\",id:\"AK5ikvYgZ\",layoutId:\"AK5ikvYgZ\",rKsfLSPqj:\"rgb(0, 0, 0)\",variant:yES61kxjv,width:\"100%\",X0aklyuy3:\"Ana Sayfa\",XK7ZAkKVV:16,zHUO88Iud:resolvedLinks[0],...addPropertyOverrides({a41HWpIb5:{ByeWP5VU7:\"rgb(255, 255, 255)\",rKsfLSPqj:\"rgb(255, 255, 255)\",XK7ZAkKVV:32,zHUO88Iud:resolvedLinks[5]},d24MTXDty:{zHUO88Iud:resolvedLinks[3]},EiSKsnMw0:{ByeWP5VU7:\"rgb(255, 255, 255)\",rKsfLSPqj:\"rgb(255, 255, 255)\",XK7ZAkKVV:32,zHUO88Iud:resolvedLinks[4]},LK7ttp7wF:{ByeWP5VU7:\"rgb(255, 255, 255)\",rKsfLSPqj:\"rgb(255, 255, 255)\",zHUO88Iud:resolvedLinks[2]},mkuhMfOcJ:{zHUO88Iud:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UbPynmSSw\"},implicitPathVariables:undefined},{href:{webPageId:\"UbPynmSSw\"},implicitPathVariables:undefined},{href:{webPageId:\"UbPynmSSw\"},implicitPathVariables:undefined},{href:{webPageId:\"UbPynmSSw\"},implicitPathVariables:undefined},{href:{webPageId:\"UbPynmSSw\"},implicitPathVariables:undefined},{href:{webPageId:\"UbPynmSSw\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||100)-0-21)/2)+0,...addPropertyOverrides({a41HWpIb5:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+44+50+53},d24MTXDty:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+44+50+53},EiSKsnMw0:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+44+50+53},mkuhMfOcJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+44+50+53}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qui5nw-container\",layoutDependency:layoutDependency,layoutId:\"w3MFW_2n2-container\",children:/*#__PURE__*/_jsx(Projects_Sidebar,{ByeWP5VU7:\"rgb(0, 0, 0)\",height:\"100%\",id:\"w3MFW_2n2\",layoutId:\"w3MFW_2n2\",rKsfLSPqj:\"rgb(0, 0, 0)\",variant:vawHQvVIi,width:\"100%\",X0aklyuy3:\"Projeler\",XK7ZAkKVV:16,zHUO88Iud:resolvedLinks1[0],...addPropertyOverrides({a41HWpIb5:{ByeWP5VU7:\"rgb(255, 255, 255)\",rKsfLSPqj:\"rgb(255, 255, 255)\",XK7ZAkKVV:32,zHUO88Iud:resolvedLinks1[5]},d24MTXDty:{zHUO88Iud:resolvedLinks1[3]},EiSKsnMw0:{ByeWP5VU7:\"rgb(255, 255, 255)\",rKsfLSPqj:\"rgb(255, 255, 255)\",XK7ZAkKVV:32,zHUO88Iud:resolvedLinks1[4]},LK7ttp7wF:{ByeWP5VU7:\"rgb(255, 255, 255)\",rKsfLSPqj:\"rgb(255, 255, 255)\",zHUO88Iud:resolvedLinks1[2]},mkuhMfOcJ:{zHUO88Iud:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Os1y73rNg\"},implicitPathVariables:undefined},{href:{webPageId:\"Os1y73rNg\"},implicitPathVariables:undefined},{href:{webPageId:\"Os1y73rNg\"},implicitPathVariables:undefined},{href:{webPageId:\"Os1y73rNg\"},implicitPathVariables:undefined},{href:{webPageId:\"Os1y73rNg\"},implicitPathVariables:undefined},{href:{webPageId:\"Os1y73rNg\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||100)-0-21)/2)+0,...addPropertyOverrides({a41HWpIb5:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+44+50+106},d24MTXDty:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+44+50+106},EiSKsnMw0:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+44+50+106},mkuhMfOcJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+44+50+106}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tnvezm-container\",layoutDependency:layoutDependency,layoutId:\"jNeOjx8t7-container\",children:/*#__PURE__*/_jsx(Projects_Sidebar,{ByeWP5VU7:\"rgb(0, 0, 0)\",height:\"100%\",id:\"jNeOjx8t7\",layoutId:\"jNeOjx8t7\",rKsfLSPqj:\"rgb(0, 0, 0)\",variant:xtxeeZGzV,width:\"100%\",X0aklyuy3:\"St\\xfcdyo\",XK7ZAkKVV:16,zHUO88Iud:resolvedLinks2[0],...addPropertyOverrides({a41HWpIb5:{ByeWP5VU7:\"rgb(255, 255, 255)\",rKsfLSPqj:\"rgb(255, 255, 255)\",XK7ZAkKVV:32,zHUO88Iud:resolvedLinks2[5]},d24MTXDty:{zHUO88Iud:resolvedLinks2[3]},EiSKsnMw0:{ByeWP5VU7:\"rgb(255, 255, 255)\",rKsfLSPqj:\"rgb(255, 255, 255)\",XK7ZAkKVV:32,zHUO88Iud:resolvedLinks2[4]},LK7ttp7wF:{ByeWP5VU7:\"rgb(255, 255, 255)\",rKsfLSPqj:\"rgb(255, 255, 255)\",zHUO88Iud:resolvedLinks2[2]},mkuhMfOcJ:{zHUO88Iud:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gbVtlsHio\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-v31sf2\",\"data-styles-preset\":\"sjb0ofV05\",children:\"neophiliac*\"})})})}),className:\"framer-cc5tsw\",\"data-framer-name\":\"neophiliac*\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"nkh0THZ_L\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed5()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bli51c\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"CQklDjFbf\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hxqc4v\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"Xz9QNOXFs\",style:{opacity:1},variants:{d24MTXDty:{opacity:0},mkuhMfOcJ:{opacity:0}},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gbVtlsHio\"},implicitPathVariables:undefined},{href:{webPageId:\"gbVtlsHio\"},implicitPathVariables:undefined},{href:{webPageId:\"gbVtlsHio\"},implicitPathVariables:undefined},{href:{webPageId:\"gbVtlsHio\"},implicitPathVariables:undefined},{href:{webPageId:\"gbVtlsHio\"},implicitPathVariables:undefined},{href:{webPageId:\"gbVtlsHio\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||100)-0-35)/2)+7,...addPropertyOverrides({a41HWpIb5:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+341.4+0+0},d24MTXDty:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+341.4+0+0},EiSKsnMw0:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+341.4+0+0},mkuhMfOcJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+341.4+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1koe1ux-container\",layoutDependency:layoutDependency,layoutId:\"uLWnonD1f-container\",children:/*#__PURE__*/_jsx(Projects_Sidebar,{ByeWP5VU7:\"rgb(0, 0, 0)\",height:\"100%\",id:\"uLWnonD1f\",layoutId:\"uLWnonD1f\",rKsfLSPqj:\"rgb(0, 0, 0)\",variant:C6gjRx5t2,width:\"100%\",X0aklyuy3:\"neophiliac*\",XK7ZAkKVV:16,zHUO88Iud:resolvedLinks3[0],...addPropertyOverrides({a41HWpIb5:{zHUO88Iud:resolvedLinks3[5]},d24MTXDty:{zHUO88Iud:resolvedLinks3[3]},EiSKsnMw0:{zHUO88Iud:resolvedLinks3[4]},LK7ttp7wF:{ByeWP5VU7:\"rgb(255, 255, 255)\",rKsfLSPqj:\"rgb(255, 255, 255)\",zHUO88Iud:resolvedLinks3[2]},mkuhMfOcJ:{zHUO88Iud:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,width:\"140px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||100)-0-35)/2)+1,...addPropertyOverrides({a41HWpIb5:{height:44,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 36px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+341.4+0+41},d24MTXDty:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+341.4+0+41},EiSKsnMw0:{height:44,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 36px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+341.4+0+41},mkuhMfOcJ:{height:44,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 36px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+341.4+0+41}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15vuhys-container\",layoutDependency:layoutDependency,layoutId:\"wZN_MlPSf-container\",children:/*#__PURE__*/_jsx(Button1,{A2bHRYQeK:\"Bize Ula\u015F\",height:\"100%\",id:\"wZN_MlPSf\",ir4SgoH23:{borderColor:\"rgb(0, 0, 0)\",borderStyle:\"solid\",borderWidth:1},layoutId:\"wZN_MlPSf\",style:{height:\"100%\",width:\"100%\"},variant:\"Ny4zXyy5w\",width:\"100%\",WLl4J3Wsv:\"rgb(249, 255, 0)\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DlEsG.framer-182xt50, .framer-DlEsG .framer-182xt50 { display: block; }\",\".framer-DlEsG.framer-7x9v5q { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 100px; justify-content: flex-start; overflow: visible; padding: 0px 100px 0px 100px; position: relative; width: 1200px; }\",\".framer-DlEsG .framer-1wowaa9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 44px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 20%; }\",\".framer-DlEsG .framer-1o00lno, .framer-DlEsG .framer-1yheq3u { flex: none; height: 44px; position: relative; text-decoration: none; width: 45px; }\",\".framer-DlEsG .framer-1ixma56 { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: hidden; position: relative; width: 32px; }\",\".framer-DlEsG .framer-nkh6na { bottom: 15px; flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-DlEsG .framer-e320c6 { flex: none; height: 2px; left: calc(50.00000000000002% - 2px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 2px; will-change: var(--framer-will-change-override, transform); }\",\".framer-DlEsG .framer-10z9gxb { flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; top: 15px; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-DlEsG .framer-ezg5bt { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: hidden; position: relative; width: 32px; }\",\".framer-DlEsG .framer-13m6ey4 { bottom: 7px; flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-DlEsG .framer-1u50ac0 { flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-DlEsG .framer-bv767x { flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; top: 7px; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-DlEsG .framer-1vnwxk4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-DlEsG .framer-11phxup-container, .framer-DlEsG .framer-1qui5nw-container, .framer-DlEsG .framer-1tnvezm-container, .framer-DlEsG .framer-1koe1ux-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-DlEsG .framer-cc5tsw { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-DlEsG .framer-1bli51c { flex: 1 0 0px; height: 73px; overflow: hidden; position: relative; width: 1px; }\",\".framer-DlEsG .framer-hxqc4v { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 35px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-DlEsG .framer-15vuhys-container { flex: none; height: 33px; position: relative; width: 140px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DlEsG.framer-7x9v5q, .framer-DlEsG .framer-1vnwxk4 { gap: 0px; } .framer-DlEsG.framer-7x9v5q > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-DlEsG.framer-7x9v5q > :first-child, .framer-DlEsG .framer-1vnwxk4 > :first-child { margin-left: 0px; } .framer-DlEsG.framer-7x9v5q > :last-child, .framer-DlEsG .framer-1vnwxk4 > :last-child { margin-right: 0px; } .framer-DlEsG .framer-1vnwxk4 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",\".framer-DlEsG.framer-v-1thlbar.framer-7x9v5q { flex-direction: column; gap: 0px; padding: 30px 16px 0px 20px; width: 390px; }\",\".framer-DlEsG.framer-v-1thlbar .framer-1wowaa9, .framer-DlEsG.framer-v-1r04g0q .framer-1wowaa9, .framer-DlEsG.framer-v-1lz412l .framer-1wowaa9, .framer-DlEsG.framer-v-iiu2n3 .framer-1wowaa9 { width: 100%; }\",\".framer-DlEsG.framer-v-1thlbar .framer-ezg5bt, .framer-DlEsG.framer-v-1r04g0q .framer-ezg5bt { cursor: pointer; }\",\".framer-DlEsG.framer-v-1thlbar .framer-1vnwxk4, .framer-DlEsG.framer-v-1lz412l .framer-1vnwxk4, .framer-DlEsG.framer-v-iiu2n3 .framer-1vnwxk4 { flex: none; flex-direction: column; gap: 32px; padding: 50px 0px 50px 0px; width: 100%; }\",\".framer-DlEsG.framer-v-1thlbar .framer-hxqc4v, .framer-DlEsG.framer-v-1lz412l .framer-hxqc4v, .framer-DlEsG.framer-v-iiu2n3 .framer-hxqc4v { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; gap: 20px; height: min-content; justify-content: center; padding: 0px 0px 50px 0px; width: 100%; }\",\".framer-DlEsG.framer-v-1thlbar .framer-15vuhys-container, .framer-DlEsG.framer-v-1lz412l .framer-15vuhys-container, .framer-DlEsG.framer-v-iiu2n3 .framer-15vuhys-container { height: 44px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DlEsG.framer-v-1thlbar.framer-7x9v5q, .framer-DlEsG.framer-v-1thlbar .framer-1vnwxk4, .framer-DlEsG.framer-v-1thlbar .framer-hxqc4v { gap: 0px; } .framer-DlEsG.framer-v-1thlbar.framer-7x9v5q > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-DlEsG.framer-v-1thlbar.framer-7x9v5q > :first-child, .framer-DlEsG.framer-v-1thlbar .framer-1vnwxk4 > :first-child, .framer-DlEsG.framer-v-1thlbar .framer-hxqc4v > :first-child { margin-top: 0px; } .framer-DlEsG.framer-v-1thlbar.framer-7x9v5q > :last-child, .framer-DlEsG.framer-v-1thlbar .framer-1vnwxk4 > :last-child, .framer-DlEsG.framer-v-1thlbar .framer-hxqc4v > :last-child { margin-bottom: 0px; } .framer-DlEsG.framer-v-1thlbar .framer-1vnwxk4 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-DlEsG.framer-v-1thlbar .framer-hxqc4v > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-DlEsG.framer-v-1r04g0q.framer-7x9v5q { flex-direction: column; gap: 0px; padding: 30px 20px 0px 20px; width: 390px; }\",\".framer-DlEsG.framer-v-1r04g0q .framer-1vnwxk4 { align-content: center; align-items: center; flex: none; flex-direction: column; gap: 32px; padding: 50px 0px 50px 0px; width: 100%; }\",\".framer-DlEsG.framer-v-1r04g0q .framer-hxqc4v { flex: none; flex-direction: column; gap: 20px; height: min-content; justify-content: center; padding: 0px 0px 50px 0px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DlEsG.framer-v-1r04g0q.framer-7x9v5q, .framer-DlEsG.framer-v-1r04g0q .framer-1vnwxk4, .framer-DlEsG.framer-v-1r04g0q .framer-hxqc4v { gap: 0px; } .framer-DlEsG.framer-v-1r04g0q.framer-7x9v5q > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-DlEsG.framer-v-1r04g0q.framer-7x9v5q > :first-child, .framer-DlEsG.framer-v-1r04g0q .framer-1vnwxk4 > :first-child, .framer-DlEsG.framer-v-1r04g0q .framer-hxqc4v > :first-child { margin-top: 0px; } .framer-DlEsG.framer-v-1r04g0q.framer-7x9v5q > :last-child, .framer-DlEsG.framer-v-1r04g0q .framer-1vnwxk4 > :last-child, .framer-DlEsG.framer-v-1r04g0q .framer-hxqc4v > :last-child { margin-bottom: 0px; } .framer-DlEsG.framer-v-1r04g0q .framer-1vnwxk4 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-DlEsG.framer-v-1r04g0q .framer-hxqc4v > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-DlEsG.framer-v-1lz412l.framer-7x9v5q, .framer-DlEsG.framer-v-iiu2n3.framer-7x9v5q { flex-direction: column; gap: 0px; height: min-content; min-height: calc(var(--framer-viewport-height, 100vh) * 1); padding: 30px 16px 0px 20px; width: 390px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DlEsG.framer-v-1lz412l.framer-7x9v5q, .framer-DlEsG.framer-v-1lz412l .framer-1vnwxk4, .framer-DlEsG.framer-v-1lz412l .framer-hxqc4v { gap: 0px; } .framer-DlEsG.framer-v-1lz412l.framer-7x9v5q > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-DlEsG.framer-v-1lz412l.framer-7x9v5q > :first-child, .framer-DlEsG.framer-v-1lz412l .framer-1vnwxk4 > :first-child, .framer-DlEsG.framer-v-1lz412l .framer-hxqc4v > :first-child { margin-top: 0px; } .framer-DlEsG.framer-v-1lz412l.framer-7x9v5q > :last-child, .framer-DlEsG.framer-v-1lz412l .framer-1vnwxk4 > :last-child, .framer-DlEsG.framer-v-1lz412l .framer-hxqc4v > :last-child { margin-bottom: 0px; } .framer-DlEsG.framer-v-1lz412l .framer-1vnwxk4 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-DlEsG.framer-v-1lz412l .framer-hxqc4v > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DlEsG.framer-v-iiu2n3.framer-7x9v5q, .framer-DlEsG.framer-v-iiu2n3 .framer-1vnwxk4, .framer-DlEsG.framer-v-iiu2n3 .framer-hxqc4v { gap: 0px; } .framer-DlEsG.framer-v-iiu2n3.framer-7x9v5q > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-DlEsG.framer-v-iiu2n3.framer-7x9v5q > :first-child, .framer-DlEsG.framer-v-iiu2n3 .framer-1vnwxk4 > :first-child, .framer-DlEsG.framer-v-iiu2n3 .framer-hxqc4v > :first-child { margin-top: 0px; } .framer-DlEsG.framer-v-iiu2n3.framer-7x9v5q > :last-child, .framer-DlEsG.framer-v-iiu2n3 .framer-1vnwxk4 > :last-child, .framer-DlEsG.framer-v-iiu2n3 .framer-hxqc4v > :last-child { margin-bottom: 0px; } .framer-DlEsG.framer-v-iiu2n3 .framer-1vnwxk4 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-DlEsG.framer-v-iiu2n3 .framer-hxqc4v > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 100\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"mkuhMfOcJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"LK7ttp7wF\":{\"layout\":[\"fixed\",\"fixed\"]},\"d24MTXDty\":{\"layout\":[\"fixed\",\"fixed\"]},\"EiSKsnMw0\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"a41HWpIb5\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]}}}\n * @framerVariables {\"Nbh_nto6O\":\"background\",\"BUw3zfhYp\":\"background2\",\"yES61kxjv\":\"home\",\"vawHQvVIi\":\"projeler\",\"xtxeeZGzV\":\"st_dyo\",\"C6gjRx5t2\":\"neo\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZRndiRbm0=withCSS(Component,css,\"framer-DlEsG\");export default FramerZRndiRbm0;FramerZRndiRbm0.displayName=\"General/ Nav Bar\";FramerZRndiRbm0.defaultProps={height:100,width:1200};addPropertyControls(FramerZRndiRbm0,{variant:{options:[\"kZLJ_tMax\",\"mkuhMfOcJ\",\"LK7ttp7wF\",\"d24MTXDty\",\"EiSKsnMw0\",\"a41HWpIb5\"],optionTitles:[\"Dark\",\"Mobil\",\"Light\",\"Mobile light\",\"Variant 6\",\"Variant 6\"],title:\"Variant\",type:ControlType.Enum},Nbh_nto6O:{defaultValue:\"rgb(0, 0, 0)\",title:\"Background\",type:ControlType.Color},BUw3zfhYp:{defaultValue:\"rgb(255, 255, 255)\",title:\"Background 2\",type:ControlType.Color},yES61kxjv:(Projects_SidebarControls===null||Projects_SidebarControls===void 0?void 0:Projects_SidebarControls[\"variant\"])&&{...Projects_SidebarControls[\"variant\"],defaultValue:\"Ut9mXaA4C\",description:undefined,hidden:undefined,title:\"Home\"},vawHQvVIi:(Projects_SidebarControls===null||Projects_SidebarControls===void 0?void 0:Projects_SidebarControls[\"variant\"])&&{...Projects_SidebarControls[\"variant\"],defaultValue:\"Ut9mXaA4C\",description:undefined,hidden:undefined,title:\"Projeler\"},xtxeeZGzV:(Projects_SidebarControls===null||Projects_SidebarControls===void 0?void 0:Projects_SidebarControls[\"variant\"])&&{...Projects_SidebarControls[\"variant\"],defaultValue:\"Ut9mXaA4C\",description:undefined,hidden:undefined,title:\"St\\xfcdyo\"},C6gjRx5t2:(Projects_SidebarControls===null||Projects_SidebarControls===void 0?void 0:Projects_SidebarControls[\"variant\"])&&{...Projects_SidebarControls[\"variant\"],defaultValue:\"Ut9mXaA4C\",description:undefined,hidden:undefined,title:\"Neo\"}});addFonts(FramerZRndiRbm0,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...Projects_SidebarFonts,...Button1Fonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZRndiRbm0\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"Nbh_nto6O\\\":\\\"background\\\",\\\"BUw3zfhYp\\\":\\\"background2\\\",\\\"yES61kxjv\\\":\\\"home\\\",\\\"vawHQvVIi\\\":\\\"projeler\\\",\\\"xtxeeZGzV\\\":\\\"st_dyo\\\",\\\"C6gjRx5t2\\\":\\\"neo\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mkuhMfOcJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LK7ttp7wF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"d24MTXDty\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EiSKsnMw0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"a41HWpIb5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"100\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["fontStore", "fonts", "css", "className", "fontStack", "useForceRender", "_", "set", "ye", "te", "v", "formatTimeOrDate", "outputType", "showYear", "showMonth", "showWeekday", "showMinutes", "showSeconds", "timeFormat", "monthFormat", "localCode", "date", "onlyYearIsShown", "Time", "props", "fontFamily", "fontSize", "fontWeight", "showHours", "color", "font", "tabularFont", "alignment", "visible", "setIsVisible", "isCanvas", "RenderTarget", "render", "useLocaleCode", "textContent", "ue", "int", "p", "addPropertyControls", "ControlType", "TimeDateFonts", "getFonts", "Time", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "height", "id", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "E0LrkbOub", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Link", "SVG", "RichText2", "ComponentViewportProvider", "css", "Framerr_EtFfEU2", "withCSS", "r_EtFfEU2_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "_irket", "background", "color", "fontSize", "height", "id", "link", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "X0aklyuy3", "zHUO88Iud", "rKsfLSPqj", "ByeWP5VU7", "XK7ZAkKVV", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter7ljogc", "args", "onMouseLeave1pw58o8", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "css", "FramerWL05q9yJl", "withCSS", "WL05q9yJl_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", "background", "border", "height", "id", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "A2bHRYQeK", "WLl4J3Wsv", "ir4SgoH23", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_ir4SgoH23_borderBottomWidth", "_ir4SgoH23_borderLeftWidth", "_ir4SgoH23_borderRightWidth", "_ir4SgoH23_borderTopWidth", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerpQpCEIBNr", "withCSS", "pQpCEIBNr_default", "addPropertyControls", "ControlType", "addFonts", "Projects_SidebarFonts", "getFonts", "WL05q9yJl_default", "Button1Fonts", "pQpCEIBNr_default", "Projects_SidebarControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "background", "background2", "height", "home", "id", "neo", "projeler", "st_dyo", "width", "props", "_ref", "_humanReadableEnumMap_neo", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "_humanReadableEnumMap_projeler", "_ref5", "_ref6", "_humanReadableEnumMap_st_dyo", "_ref7", "_ref8", "_humanReadableEnumMap_home", "_ref9", "_ref10", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Nbh_nto6O", "BUw3zfhYp", "yES61kxjv", "vawHQvVIi", "xtxeeZGzV", "C6gjRx5t2", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapv1f9so", "args", "onTapze2d7l", "onTapmi8w6u", "onTapo53rk0", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "router", "useRouter", "isDisplayed4", "isDisplayed5", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Link", "SVG", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "resolvedLinks1", "resolvedLinks2", "RichText2", "resolvedLinks3", "css", "FramerZRndiRbm0", "withCSS", "ZRndiRbm0_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
