{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:js-cookie@3.0.5/dist/js.cookie.mjs", "ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/tWxPGoauEDGvb60hKQfR/zUn9YAtvK3T5aDgxSVhg/ThemeToggle.js", "ssg:https://framerusercontent.com/modules/MHUzbiIPh4VwfgFrBE5a/Ky2ZN7w3lFdrcUI7aMOH/JAsa_6sDT.js", "ssg:https://framerusercontent.com/modules/oqvNQpuRboPvk7Qm2c6p/PwvP7ggJgtFO7kYHdf0I/acwIhaj_P.js", "ssg:https://framerusercontent.com/modules/yixe7qww7D024LhQsxtK/mmFxNA991CQfvTvG5euu/JdhZ0OYGi.js", "ssg:https://framerusercontent.com/modules/arhitnKWm6ND6OQDepR1/axznkhxNoPCa5rsAnG1V/g9oIoH2vY.js", "ssg:https://framerusercontent.com/modules/5NcAWi2mtqKNEzAPCqVn/XcUI9nEteF8fwXHfaDIU/H2AzYnN5x.js"],
  "sourcesContent": ["function assign(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)e[r]=n[r]}return e}var e={read:function(e){'\"'===e[0]&&(e=e.slice(1,-1));return e.replace(/(%[\\dA-F]{2})+/gi,decodeURIComponent)},write:function(e){return encodeURIComponent(e).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}};function init(e,t){function set(n,r,i){if(\"undefined\"!==typeof document){i=assign({},t,i);\"number\"===typeof i.expires&&(i.expires=new Date(Date.now()+864e5*i.expires));i.expires&&(i.expires=i.expires.toUTCString());n=encodeURIComponent(n).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var o=\"\";for(var c in i)if(i[c]){o+=\"; \"+c;true!==i[c]&&(o+=\"=\"+i[c].split(\";\")[0])}return document.cookie=n+\"=\"+e.write(r,n)+o}}function get(t){if(\"undefined\"!==typeof document&&(!arguments.length||t)){var n=document.cookie?document.cookie.split(\"; \"):[];var r={};for(var i=0;i<n.length;i++){var o=n[i].split(\"=\");var c=o.slice(1).join(\"=\");try{var a=decodeURIComponent(o[0]);r[a]=e.read(c,a);if(t===a)break}catch(e){}}return t?r[t]:r}}return Object.create({set:set,get:get,remove:function(e,t){set(e,\"\",assign({},t,{expires:-1}))},withAttributes:function(e){return init(this.converter,assign({},this.attributes,e))},withConverter:function(e){return init(assign({},this.converter,e),this.attributes)}},{attributes:{value:Object.freeze(t)},converter:{value:Object.freeze(e)}})}var t=init(e,{path:\"/\"});export{t as default};\n\n//# sourceMappingURL=js.cookie.mjs.map", "import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,Image}from\"framer\";import{motion}from\"framer-motion\";import{useState,useEffect,useRef}from\"react\";import Cookies from\"js-cookie\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";// Sun and moon icons from tabler-icons.io\nconst THEME_ATTRIBUTE=\"framestack-theme\";const COOKIE_NAME=\"framestack-theme\";const STYLE_ID=\"framestack-theme-toggle\";const SIGNAL_NAME=\"framestack-theme-changed\";const THEMES=[\"light\",\"dark\",\"deviceTheme\"];const useThemeStore=createStore(\"deviceTheme\");function extractBodySection(inputString){const searchStr=\"body{\";const startIndex=inputString.indexOf(searchStr);if(startIndex!==-1){const endIndex=inputString.indexOf(\"}\",startIndex+searchStr.length);if(endIndex!==-1){const bodySection=inputString.substring(startIndex+searchStr.length,endIndex);return bodySection;}}return null// Return null if \"body{\" or \"}\" is not found\n;}function makeBorderStyle(border){return border?{borderWidth:border.widthIsMixed?`${border.widthTop}px ${border.widthRight}px ${border.widthBottom}px ${border.widthLeft}px`:`${border.width}px`,borderStyle:border.style,borderColor:border.color}:[];}/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function ThemeToggle(props){var _window;const{toggle,dropdown,dropdownOptions,icons,transition}=props;let isPreview=false;let initialTheme=props.defaultTheme;if(typeof document!==\"undefined\"){if(document.body.hasAttribute(\"data-framer-theme\")){if(initialTheme==\"deviceTheme\"){initialTheme=document.body.getAttribute(\"data-framer-theme\");}isPreview=true;}else if(document.body.hasAttribute(THEME_ATTRIBUTE)){initialTheme=document.body.getAttribute(THEME_ATTRIBUTE);}else if(props.saveTheme){const storedTheme=Cookies.get(COOKIE_NAME);if(THEMES.includes(storedTheme)){initialTheme=storedTheme;}}}let deviceTheme=\"light\";if(isPreview&&document.body.hasAttribute(\"data-framer-theme\")){deviceTheme=document.body.getAttribute(\"data-framer-theme\");}else if(typeof window!=\"undefined\"&&((_window=window)===null||_window===void 0?void 0:_window.matchMedia)){deviceTheme=window.matchMedia(\"(prefers-color-scheme: dark)\").matches?\"dark\":\"light\";}const[theme,setTheme]=useThemeStore();const[activeTheme,setActiveTheme]=useState(initialTheme==\"deviceTheme\"?deviceTheme:initialTheme)// light or dark\n;const[originalPreviewTheme,setOriginalPreviewTheme]=useState(initialTheme);const themeRef=useRef(theme);const selectRef=useRef(null);function changeTheme(newTheme){let newActiveTheme=newTheme;if(newTheme==\"deviceTheme\"){if(isPreview){newActiveTheme=originalPreviewTheme;}else{newActiveTheme=deviceTheme;}}setTheme(newTheme);setActiveTheme(newActiveTheme);if(isPreview){document.body.setAttribute(\"data-framer-theme\",newActiveTheme);}document.body.setAttribute(THEME_ATTRIBUTE,newTheme);document.documentElement.setAttribute(THEME_ATTRIBUTE,newTheme);if(props.saveTheme){Cookies.set(COOKIE_NAME,newTheme,{expires:365})// Expires in 1 year\n;}window.dispatchEvent(new CustomEvent(SIGNAL_NAME));}function toggleTheme(){const newActiveTheme=activeTheme==\"light\"?\"dark\":\"light\";if(props.resetToDeviceTheme){changeTheme(newActiveTheme==deviceTheme?\"deviceTheme\":newActiveTheme);}else{changeTheme(newActiveTheme);}}function onSelectChange(){if(selectRef.current){changeTheme(THEMES[selectRef.current.selectedIndex]);}}const handleThemeChange=event=>{if(themeRef.current==\"deviceTheme\"){setActiveTheme(event.matches?\"dark\":\"light\");}};useEffect(()=>{themeRef.current=theme// Update the ref whenever the theme state changes\n;if(theme==\"deviceTheme\"){if(isPreview){setActiveTheme(originalPreviewTheme);}else{setActiveTheme(deviceTheme);}}else{setActiveTheme(theme);}},[theme]);useEffect(()=>{if(initialTheme!=theme){changeTheme(initialTheme);}// const themeAttr = document.body.getAttribute(THEME_ATTRIBUTE)\n// if (themeAttr) {\n//     changeTheme(themeAttr)\n// }\nconst mediaQuery=window.matchMedia(\"(prefers-color-scheme: dark)\");mediaQuery.addEventListener(\"change\",handleThemeChange);if(!isPreview){let generateStyle=true;// Check if <head> already has theme attribute\nconst headElement=document.querySelector(\"head\");if(headElement){if(headElement.querySelector(`style#${STYLE_ID}`)){generateStyle=false;}}// Generate <style> with color styles\nif(generateStyle){let style=document.querySelector(\"style[data-framer-css-ssr-minified]\");if(style&&(style===null||style===void 0?void 0:style.textContent)){const styleText=style.textContent;const darkLocation=styleText.indexOf(\"@media (prefers-color-scheme: dark){body{--token\");if(darkLocation!==-1){var styleElement=document.createElement(\"style\");styleElement.id=STYLE_ID;styleElement.textContent=`body[${THEME_ATTRIBUTE}=\"light\"] {${extractBodySection(styleText)}} body[${THEME_ATTRIBUTE}=\"dark\"] {${extractBodySection(styleText.substring(darkLocation))}} ${props.setColorScheme?`html {color-scheme: light dark; } html[${THEME_ATTRIBUTE}=\"light\"] { color-scheme: light; } html[${THEME_ATTRIBUTE}=\"dark\"] { color-scheme: dark; } `:\"\"}`;document.head.appendChild(styleElement);}}}}return()=>mediaQuery.removeEventListener(\"change\",handleThemeChange);},[]);switch(props.componentStyle){case\"toggle\":const{height,padding,shadow}=toggle;return /*#__PURE__*/_jsxs(motion.div,{onClick:toggleTheme,style:{position:\"relative\",minHeight:height,minWidth:height*2-padding*2,backgroundColor:toggle.fill,padding:padding,borderRadius:toggle.radius,color:icons===null||icons===void 0?void 0:icons.color,cursor:\"pointer\",...props.style},layout:false,whileHover:{color:(icons===null||icons===void 0?void 0:icons.hoverColor)||(icons===null||icons===void 0?void 0:icons.color)},initial:false,transition:transition,children:[props.border&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,boxSizing:\"border-box\",borderRadius:toggle.radius,...makeBorderStyle(props.border)}}),/*#__PURE__*/_jsx(motion.div,{style:{position:\"absolute\",height:height-padding*2,aspectRatio:1,[activeTheme==\"light\"?\"left\":\"right\"]:padding,backgroundColor:toggle.switch,borderRadius:toggle.radius-padding,boxShadow:shadow?`${shadow.x}px ${shadow.y}px ${shadow.blur}px ${shadow.spread}px ${shadow.color}`:\"none\",boxSizing:\"border-box\",...makeBorderStyle(toggle.switchBorder)},layout:true,initial:false,transition:transition,children:icons&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0},children:/*#__PURE__*/_jsx(Icon,{theme:activeTheme,style:{position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\"},...icons})})})]});case\"dropdown\":var _props_style;const{showDeviceTheme}=dropdownOptions;const themeTitles={light:dropdownOptions.lightText,dark:dropdownOptions.darkText,deviceTheme:dropdownOptions.deviceThemeText};return /*#__PURE__*/_jsxs(motion.div,{style:{display:\"flex\",flexDirection:\"row\",gap:dropdown.gap,alignItems:\"center\",justifyContent:\"space-between\",backgroundColor:dropdown.fill,color:dropdown.fontColor,borderRadius:dropdown.radiusIsMixed?`${dropdown.radiusTopLeft}px ${dropdown.radiusTopRight}px ${dropdown.radiusBottomRight}px ${dropdown.radiusBottomLeft}px`:`${dropdown.radius}px`,padding:dropdown.paddingIsMixed?`${dropdown.paddingTopLeft}px ${dropdown.paddingTopRight}px ${dropdown.paddingBottomRight}px ${dropdown.paddingBottomLeft}px`:`${dropdown.padding}px`,userSelect:\"none\",boxSizing:\"border-box\",cursor:\"pointer\",\"--icon-color\":icons===null||icons===void 0?void 0:icons.color,...makeBorderStyle(props.border),...dropdown.font,...props.style},whileHover:{color:dropdown.fontColorHover||dropdown.fontColor,\"--icon-color\":(icons===null||icons===void 0?void 0:icons.hoverColor)||(icons===null||icons===void 0?void 0:icons.color)},initial:false,transition:transition,children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"row\",alignItems:\"center\",gap:dropdown.gap,textWrap:((_props_style=props.style)===null||_props_style===void 0?void 0:_props_style.width)==\"100%\"?\"wrap\":\"nowrap\"},children:[icons&&/*#__PURE__*/_jsx(\"div\",{style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Icon,{theme:activeTheme,...props.icons,style:{color:\"var(--icon-color)\"}})}),!showDeviceTheme&&theme==\"deviceTheme\"?themeTitles[deviceTheme]:themeTitles[theme]]}),/*#__PURE__*/_jsx(\"div\",{style:{display:\"contents\",color:dropdown.arrow},children:dropdown.arrow&&/*#__PURE__*/_jsx(Icon,{theme:\"arrow\",size:18})}),/*#__PURE__*/_jsxs(\"select\",{ref:selectRef,name:\"theme\",onChange:onSelectChange,style:{position:\"absolute\",inset:0,opacity:0},children:[/*#__PURE__*/_jsx(\"option\",{value:\"light\",selected:theme==\"light\"||!showDeviceTheme&&deviceTheme==\"light\",children:themeTitles.light}),/*#__PURE__*/_jsx(\"option\",{value:\"dark\",selected:theme==\"dark\"||!showDeviceTheme&&deviceTheme==\"dark\",children:themeTitles.dark}),showDeviceTheme&&/*#__PURE__*/_jsx(\"option\",{value:\"deviceTheme\",selected:theme==\"deviceTheme\",children:themeTitles.deviceTheme})]})]});case\"custom\":return /*#__PURE__*/_jsx(\"div\",{onClick:toggleTheme,children:activeTheme==\"light\"?props.customLight:props.customDark});}}ThemeToggle.displayName=\"Theme Toggle\";const borderControls={color:{type:ControlType.Color,defaultValue:\"#222\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}};const toggleShadowDefault={color:\"rgba(0, 0, 0, 0.2)\",x:0,y:2,blur:4,spread:0};const iconsDefault={type:\"default\",color:\"#333333\",size:18,opacity:1};addPropertyControls(ThemeToggle,{defaultTheme:{type:ControlType.Enum,defaultValue:\"deviceTheme\",options:[\"deviceTheme\",\"light\",\"dark\"],optionTitles:[\"Device Theme\",\"Light\",\"Dark\"],title:\"Default\"},saveTheme:{type:ControlType.Boolean,defaultValue:true,title:\"Save Cookie\"},componentStyle:{type:ControlType.Enum,defaultValue:\"toggle\",options:[\"toggle\",\"dropdown\",\"custom\"],optionTitles:[\"Toggle\",\"Dropdown\",\"Custom\"],title:\"Style\"},toggle:{type:ControlType.Object,buttonTitle:\"Options\",icon:\"boolean\",controls:{height:{type:ControlType.Number,defaultValue:32,min:1,step:1},fill:{type:ControlType.Color,defaultValue:\"#EDEDED\",optional:true},switch:{type:ControlType.Color,defaultValue:\"#FFF\"},switchBorder:{type:ControlType.Object,optional:true,controls:borderControls},shadow:{type:ControlType.Object,defaultValue:toggleShadowDefault,optional:true,controls:{color:{type:ControlType.Color,defaultValue:toggleShadowDefault.color},x:{type:ControlType.Number,defaultValue:toggleShadowDefault.x,displayStepper:true},y:{type:ControlType.Number,defaultValue:toggleShadowDefault.y,displayStepper:true},blur:{type:ControlType.Number,defaultValue:toggleShadowDefault.blur,min:0,displayStepper:true},spread:{type:ControlType.Number,defaultValue:toggleShadowDefault.spread,displayStepper:true}}},padding:{type:ControlType.Number,defaultValue:4,min:0,step:1,displayStepper:true},radius:{type:ControlType.Number,defaultValue:16,min:0}},hidden:props=>props.componentStyle!==\"toggle\"},dropdown:{type:ControlType.Object,buttonTitle:\"Options\",controls:{fill:{type:ControlType.Color,defaultValue:\"#EDEDED\",optional:true},fontColor:{type:ControlType.Color,defaultValue:\"#000\"},fontColorHover:{type:ControlType.Color,optional:true,title:\"Hover Font Color\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:16,lineHeight:1}},arrow:{type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.5)\",optional:true},gap:{type:ControlType.Number,defaultValue:8,min:0,step:1},padding:{type:ControlType.FusedNumber,defaultValue:8,toggleKey:\"paddingIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"paddingTopLeft\",\"paddingTopRight\",\"paddingBottomRight\",\"paddingBottomLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},radius:{type:ControlType.FusedNumber,defaultValue:10,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0}},hidden:props=>props.componentStyle!==\"dropdown\"},dropdownOptions:{type:ControlType.Object,title:\"Options\",buttonTitle:\"Options\",// buttonTitle: \"Options\",\ncontrols:{showDeviceTheme:{type:ControlType.Boolean,defaultValue:true},deviceThemeText:{type:ControlType.String,defaultValue:\"Device Theme\",hidden:props=>!props.showDeviceTheme},lightText:{type:ControlType.String,defaultValue:\"Light\"},darkText:{type:ControlType.String,defaultValue:\"Dark\"}},hidden:props=>props.componentStyle!==\"dropdown\"},icons:{type:ControlType.Object,defaultValue:iconsDefault,optional:true,controls:{type:{type:ControlType.Enum,defaultValue:\"default\",options:[\"default\",\"svg\",\"image\"],optionTitles:[\"Default\",\"SVG\",\"Image\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},lightSvg:{type:ControlType.String,placeholder:\"<svg></svg>\",displayTextArea:true,title:\"Light SVG\",hidden:props=>props.type!=\"svg\"},darkSvg:{type:ControlType.String,placeholder:\"<svg></svg>\",displayTextArea:true,title:\"Dark SVG\",hidden:props=>props.type!=\"svg\"},lightImage:{type:ControlType.ResponsiveImage,title:\"Light\",hidden:props=>props.type!=\"image\"},darkImage:{type:ControlType.ResponsiveImage,title:\"Dark\",hidden:props=>props.type!=\"image\"},sizing:{type:ControlType.Enum,defaultValue:\"cover\",options:[\"fill\",\"fit\",\"stretch\"],optionTitles:[\"Fill\",\"Fit\",\"Stretch\"],hidden:props=>props.type!=\"image\"},color:{type:ControlType.Color,defaultValue:iconsDefault.color,hidden:props=>props.type!=\"default\"&&props.type!=\"svg\"},hoverColor:{type:ControlType.Color,optional:true,hidden:props=>props.type!=\"default\"&&props.type!=\"svg\"},size:{type:ControlType.Number,defaultValue:iconsDefault.size,min:1,step:1,displayStepper:true},opacity:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01}},hidden:props=>props.componentStyle==\"custom\"},border:{type:ControlType.Object,optional:true,controls:borderControls,hidden:props=>props.componentStyle==\"custom\"},customLight:{type:ControlType.ComponentInstance,title:\"Light\",hidden:props=>props.componentStyle!==\"custom\"},customDark:{type:ControlType.ComponentInstance,title:\"Dark\",hidden:props=>props.componentStyle!==\"custom\"},resetToDeviceTheme:{type:ControlType.Boolean,defaultValue:true,// description:\n//     \"Uses the device theme when the toggle is switched to the current device theme.\",\nhidden:props=>props.componentStyle!==\"toggle\"},setColorScheme:{type:ControlType.Boolean,defaultValue:true,title:\"Theme Scroll Bars\"},transition:{type:ControlType.Transition,hidden:props=>props.type==\"custom\"}});function Icon(props){const{theme,type,size,lightSvg,darkSvg,lightImage,darkImage,sizing,opacity,style={}}=props;switch(type){case\"svg\":if(theme==\"light\"&&!lightSvg.length||theme==\"dark\"&&!darkSvg.length){return /*#__PURE__*/_jsx(\"div\",{});}return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{className:\"theme-toggle-icon\",style:{width:size,height:size,opacity,pointerEvents:\"none\",...style},dangerouslySetInnerHTML:{__html:(theme==\"light\"?lightSvg:darkSvg).replace(/width=\"(\\d+)\"/,`width=\"${size}\"`).replace(/height=\"(\\d+)\"/,`width=\"${size}\"`)}}),/*#__PURE__*/_jsx(\"style\",{children:`.theme-toggle-icon svg { display: block; }`})]});case\"image\":return /*#__PURE__*/_jsx(Image,{background:{fit:sizing,...theme==\"light\"?lightImage:darkImage},style:{opacity,width:size,height:size,...style}});case\"default\":return /*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:size,height:size,viewBox:\"0 0 24 24\",strokeWidth:\"2\",stroke:\"currentColor\",fill:\"none\",strokeLinecap:\"round\",strokeLinejoin:\"round\",style:{opacity,...style},children:[/*#__PURE__*/_jsx(\"path\",{stroke:\"none\",d:\"M0 0h24v24H0z\",fill:\"none\"}),theme==\"light\"?[/*#__PURE__*/_jsx(\"path\",{d:\"M12 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M18.313 16.91l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.218 -1.567l.102 .07z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M7.007 16.993a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M6.213 4.81l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.217 -1.567l.102 .07z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M19.107 4.893a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z\",strokeWidth:\"0\",fill:\"currentColor\"})]:theme==\"dark\"?/*#__PURE__*/_jsx(\"path\",{d:\"M12 1.992a10 10 0 1 0 9.236 13.838c.341 -.82 -.476 -1.644 -1.298 -1.31a6.5 6.5 0 0 1 -6.864 -10.787l.077 -.08c.551 -.63 .113 -1.653 -.758 -1.653h-.266l-.068 -.006l-.06 -.002z\",strokeWidth:\"0\",fill:\"currentColor\"}):// Arrow\n/*#__PURE__*/_jsx(\"path\",{d:\"M6 9l6 6l6 -6\"})]});}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ThemeToggle\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ThemeToggle.map", "// Generated by Framer (139b156)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"VJBJyDyyw\",\"Ak8eCbc7_\"];const serializationHash=\"framer-Q6Nrr\";const variantClassNames={Ak8eCbc7_:\"framer-v-1ix3x6v\",VJBJyDyyw:\"framer-v-1p5jrin\"};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={bounce:.2,delay:0,duration:.4,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={Dark:\"Ak8eCbc7_\",Light:\"VJBJyDyyw\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"VJBJyDyyw\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"VJBJyDyyw\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1p5jrin\",className,classNames),\"data-framer-name\":\"Light\",layoutDependency:layoutDependency,layoutId:\"VJBJyDyyw\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-81373393-334b-43ee-9fca-c7cf7b1a60e8, rgb(236, 236, 236))\",borderBottomLeftRadius:500,borderBottomRightRadius:500,borderTopLeftRadius:500,borderTopRightRadius:500,...style},...addPropertyOverrides({Ak8eCbc7_:{\"data-framer-name\":\"Dark\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8iayvr\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"JIDTTchwJ\",style:{backgroundColor:\"var(--token-dca875b7-f855-43c1-bf73-97596e452266, rgb(14, 16, 17))\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Q6Nrr.framer-3w3wt7, .framer-Q6Nrr .framer-3w3wt7 { display: block; }\",\".framer-Q6Nrr.framer-1p5jrin { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px; position: relative; width: 30px; }\",\".framer-Q6Nrr .framer-8iayvr { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 8px); position: relative; width: 8px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Q6Nrr.framer-1p5jrin { gap: 0px; } .framer-Q6Nrr.framer-1p5jrin > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Q6Nrr.framer-1p5jrin > :first-child { margin-left: 0px; } .framer-Q6Nrr.framer-1p5jrin > :last-child { margin-right: 0px; } }\",\".framer-Q6Nrr.framer-v-1ix3x6v.framer-1p5jrin { justify-content: flex-end; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 30\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Ak8eCbc7_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJAsa_6sDT=withCSS(Component,css,\"framer-Q6Nrr\");export default FramerJAsa_6sDT;FramerJAsa_6sDT.displayName=\"Layout/Theme Toggle Buttons\";FramerJAsa_6sDT.defaultProps={height:20,width:30};addPropertyControls(FramerJAsa_6sDT,{variant:{options:[\"VJBJyDyyw\",\"Ak8eCbc7_\"],optionTitles:[\"Light\",\"Dark\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerJAsa_6sDT,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJAsa_6sDT\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ak8eCbc7_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"20\",\"framerIntrinsicWidth\":\"30\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JAsa_6sDT.map", "// Generated by Framer (139b156)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ThemeToggle from\"https://framerusercontent.com/modules/tWxPGoauEDGvb60hKQfR/zUn9YAtvK3T5aDgxSVhg/ThemeToggle.js\";import LayoutThemeToggleButtons from\"https://framerusercontent.com/modules/MHUzbiIPh4VwfgFrBE5a/Ky2ZN7w3lFdrcUI7aMOH/JAsa_6sDT.js\";const LayoutThemeToggleButtonsFonts=getFonts(LayoutThemeToggleButtons);const ThemeToggleFonts=getFonts(ThemeToggle);const serializationHash=\"framer-JrCyN\";const variantClassNames={eKEmdB8iD:\"framer-v-fr42c5\"};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={bounce:.2,delay:0,duration:.4,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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"eKEmdB8iD\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-fr42c5\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"eKEmdB8iD\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17d4ezx-container\",layoutDependency:layoutDependency,layoutId:\"UiJbitj5T-container\",children:/*#__PURE__*/_jsx(ThemeToggle,{componentStyle:\"custom\",customDark:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"30px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qwadm5-container\",layoutDependency:layoutDependency,layoutId:\"GEwK2Lco4-container\",children:/*#__PURE__*/_jsx(LayoutThemeToggleButtons,{height:\"100%\",id:\"GEwK2Lco4\",layoutId:\"GEwK2Lco4\",style:{width:\"100%\"},variant:\"Ak8eCbc7_\",width:\"100%\"})})})],customLight:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"30px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fz8aw8-container\",layoutDependency:layoutDependency,layoutId:\"yJiS_2dG8-container\",children:/*#__PURE__*/_jsx(LayoutThemeToggleButtons,{height:\"100%\",id:\"yJiS_2dG8\",layoutId:\"yJiS_2dG8\",style:{width:\"100%\"},variant:\"VJBJyDyyw\",width:\"100%\"})})})],defaultTheme:\"deviceTheme\",dropdown:{arrow:\"rgba(0, 0, 0, 0.5)\",fill:\"rgb(237, 237, 237)\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:\"rgb(0, 0, 0)\",gap:8,padding:8,paddingBottomLeft:8,paddingBottomRight:8,paddingIsMixed:false,paddingTopLeft:8,paddingTopRight:8,radius:10,radiusBottomLeft:10,radiusBottomRight:10,radiusIsMixed:false,radiusTopLeft:10,radiusTopRight:10},dropdownOptions:{darkText:\"Dark\",deviceThemeText:\"Device Theme\",lightText:\"Light\",showDeviceTheme:true},height:\"100%\",icons:{color:\"rgb(51, 51, 51)\",darkSvg:\"\",lightSvg:\"\",opacity:1,size:18,sizing:\"fill\",type:\"default\"},id:\"UiJbitj5T\",layoutId:\"UiJbitj5T\",resetToDeviceTheme:true,saveTheme:true,setColorScheme:true,toggle:{fill:\"rgb(237, 237, 237)\",height:32,padding:4,radius:16,shadow:{blur:4,color:\"rgba(0, 0, 0, 0.2)\",spread:0,x:0,y:2},switch:\"rgb(255, 255, 255)\"},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JrCyN.framer-1wynxk5, .framer-JrCyN .framer-1wynxk5 { display: block; }\",\".framer-JrCyN.framer-fr42c5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-JrCyN .framer-17d4ezx-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-JrCyN .framer-1fz8aw8-container, .framer-JrCyN .framer-1qwadm5-container { height: auto; position: relative; width: 30px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-JrCyN.framer-fr42c5 { gap: 0px; } .framer-JrCyN.framer-fr42c5 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-JrCyN.framer-fr42c5 > :first-child { margin-left: 0px; } .framer-JrCyN.framer-fr42c5 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 30\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameracwIhaj_P=withCSS(Component,css,\"framer-JrCyN\");export default FrameracwIhaj_P;FrameracwIhaj_P.displayName=\"Layout/Theme Toggle\";FrameracwIhaj_P.defaultProps={height:20,width:30};addFonts(FrameracwIhaj_P,[{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\"}]},...LayoutThemeToggleButtonsFonts,...ThemeToggleFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameracwIhaj_P\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"30\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"20\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./acwIhaj_P.map", "// Generated by Framer (64bc75b)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Sans-regular\",\"GF;DM Sans-700\",\"GF;DM Sans-700italic\",\"GF;DM Sans-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm32RmYJpso5.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-JDW32RmYJpso5.woff2\",weight:\"400\"}]}];export const css=['.framer-hmBas .framer-styles-preset-1wle1yq:not(.rich-text-wrapper), .framer-hmBas .framer-styles-preset-1wle1yq.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, #242422); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-hmBas\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (64bc75b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/yixe7qww7D024LhQsxtK/mmFxNA991CQfvTvG5euu/JdhZ0OYGi.js\";const enabledGestures={ZHia6ERgq:{hover:true}};const cycleOrder=[\"ZHia6ERgq\",\"OmdGC4kz7\"];const serializationHash=\"framer-iPMBe\";const variantClassNames={OmdGC4kz7:\"framer-v-1bvablp\",ZHia6ERgq:\"framer-v-1pe829t\"};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={bounce:0,delay:0,duration:.6,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"ZHia6ERgq\",Mobile:\"OmdGC4kz7\"};const getProps=({click,height,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,BS5SaAWg0:link!==null&&link!==void 0?link:props.BS5SaAWg0,hK9FfgVOP:click!==null&&click!==void 0?click:props.hK9FfgVOP,NDS66P9u6:(_ref=title!==null&&title!==void 0?title:props.NDS66P9u6)!==null&&_ref!==void 0?_ref:\"Blog\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"ZHia6ERgq\"};};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,NDS66P9u6,BS5SaAWg0,hK9FfgVOP,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZHia6ERgq\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapwmr67=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(hK9FfgVOP){const res=await hK9FfgVOP(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"OmdGC4kz7\")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__*/_jsx(Link,{href:BS5SaAWg0,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1pe829t\",className,classNames)} framer-uo0awp`,\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ZHia6ERgq\",onTap:onTapwmr67,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"ZHia6ERgq-hover\":{\"data-framer-name\":undefined},OmdGC4kz7:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wle1yq\",\"data-styles-preset\":\"JdhZ0OYGi\",children:\"Blog\"})}),className:\"framer-1jr17sh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I7139:236;7105:1180\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:NDS66P9u6,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wle1yq\",\"data-styles-preset\":\"JdhZ0OYGi\",children:\"Blog\"})}),className:\"framer-18fy5di\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BTbA0RWg9\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:NDS66P9u6,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iPMBe.framer-uo0awp, .framer-iPMBe .framer-uo0awp { display: block; }\",\".framer-iPMBe.framer-1pe829t { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 17px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-iPMBe .framer-1jr17sh, .framer-iPMBe .framer-18fy5di { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iPMBe.framer-1pe829t { gap: 0px; } .framer-iPMBe.framer-1pe829t > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-iPMBe.framer-1pe829t > :first-child { margin-top: 0px; } .framer-iPMBe.framer-1pe829t > :last-child { margin-bottom: 0px; } }\",\".framer-iPMBe.framer-v-1pe829t.hover.framer-1pe829t { justify-content: flex-end; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 17\n * @framerIntrinsicWidth 27.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"OmdGC4kz7\":{\"layout\":[\"auto\",\"fixed\"]},\"YeqqQaThU\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"NDS66P9u6\":\"title\",\"BS5SaAWg0\":\"link\",\"hK9FfgVOP\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerg9oIoH2vY=withCSS(Component,css,\"framer-iPMBe\");export default Framerg9oIoH2vY;Framerg9oIoH2vY.displayName=\"Components/Navbar Item\";Framerg9oIoH2vY.defaultProps={height:17,width:27.5};addPropertyControls(Framerg9oIoH2vY,{variant:{options:[\"ZHia6ERgq\",\"OmdGC4kz7\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},NDS66P9u6:{defaultValue:\"Blog\",displayTextArea:false,title:\"Title\",type:ControlType.String},BS5SaAWg0:{title:\"Link\",type:ControlType.Link},hK9FfgVOP:{title:\"Click\",type:ControlType.EventHandler}});addFonts(Framerg9oIoH2vY,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerg9oIoH2vY\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"NDS66P9u6\\\":\\\"title\\\",\\\"BS5SaAWg0\\\":\\\"link\\\",\\\"hK9FfgVOP\\\":\\\"click\\\"}\",\"framerIntrinsicWidth\":\"27.5\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"17\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"OmdGC4kz7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"YeqqQaThU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./g9oIoH2vY.map", "// Generated by Framer (ae50a0d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,ResolveLinks,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import LayoutThemeToggle from\"https://framerusercontent.com/modules/oqvNQpuRboPvk7Qm2c6p/PwvP7ggJgtFO7kYHdf0I/acwIhaj_P.js\";import ComponentsNavbarItem from\"https://framerusercontent.com/modules/arhitnKWm6ND6OQDepR1/axznkhxNoPCa5rsAnG1V/g9oIoH2vY.js\";const MotionDivWithFX=withFX(motion.div);const ComponentsNavbarItemFonts=getFonts(ComponentsNavbarItem);const LayoutThemeToggleFonts=getFonts(LayoutThemeToggle);const cycleOrder=[\"rQNQqYpOV\",\"bm9e676kA\",\"pFLTzIvEh\",\"Ywme1Tzkc\"];const serializationHash=\"framer-jM1jb\";const variantClassNames={bm9e676kA:\"framer-v-p0bw8z\",pFLTzIvEh:\"framer-v-19r6zfl\",rQNQqYpOV:\"framer-v-l9yfos\",Ywme1Tzkc:\"framer-v-131i4t3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={delay:0,duration:15,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 4\":\"Ywme1Tzkc\",Desktop:\"rQNQqYpOV\",Phone:\"pFLTzIvEh\",Tablet:\"bm9e676kA\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"rQNQqYpOV\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rQNQqYpOV\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"pFLTzIvEh\",\"Ywme1Tzkc\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(baseVariant===\"Ywme1Tzkc\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-l9yfos\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"rQNQqYpOV\",ref:refBinding,style:{...style},...addPropertyOverrides({bm9e676kA:{\"data-framer-name\":\"Tablet\"},pFLTzIvEh:{\"data-framer-name\":\"Phone\"},Ywme1Tzkc:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16ic1f3\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"AvN4r7bJo\",style:{backgroundColor:\"var(--token-4321a524-8651-4268-85f9-e884d8cb6223, rgb(255, 255, 255))\",borderBottomRightRadius:20},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fgk3gp\",\"data-framer-name\":\"Navbar\",layoutDependency:layoutDependency,layoutId:\"gAw73q17U\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"zdGQ0yxki\",scopeId:\"H2AzYnN5x\",...addPropertyOverrides({Ywme1Tzkc:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:201,intrinsicWidth:1392},className:\"framer-h4nfaj framer-iputpu\",\"data-framer-name\":\"LogoBlack\",layoutDependency:layoutDependency,layoutId:\"zdGQ0yxki\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-b28au\",\"data-framer-name\":\"SpinningStar\",layoutDependency:layoutDependency,layoutId:\"xXtAGlwYj\",style:{borderBottomLeftRadius:64,borderBottomRightRadius:64,borderTopLeftRadius:64,borderTopRightRadius:64,rotate:45},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-tzlwtl\",\"data-framer-name\":\"Star\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"b8THteqQS\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5 5\"><path d=\"M 0.537 4.202 L 0 3.274 C 0.168 3.176 0.336 3.1 0.503 3.046 C 0.682 2.98 0.867 2.921 1.057 2.866 C 1.247 2.812 1.454 2.747 1.678 2.671 C 1.902 2.595 2.153 2.492 2.433 2.362 L 2.567 2.622 C 2.321 2.785 2.109 2.942 1.93 3.094 C 1.751 3.236 1.588 3.371 1.443 3.502 C 1.298 3.632 1.152 3.757 1.007 3.876 C 0.872 3.996 0.716 4.104 0.537 4.202 Z M 1.963 0 L 3.054 0 C 3.054 0.195 3.037 0.385 3.003 0.57 C 2.97 0.744 2.931 0.923 2.886 1.107 C 2.841 1.292 2.796 1.498 2.752 1.726 C 2.718 1.944 2.69 2.199 2.668 2.492 L 2.349 2.492 C 2.338 2.199 2.31 1.944 2.265 1.726 C 2.22 1.498 2.176 1.292 2.131 1.107 C 2.086 0.923 2.047 0.744 2.013 0.57 C 1.98 0.385 1.963 0.195 1.963 0 Z M 0 1.71 L 0.554 0.782 C 0.721 0.879 0.872 0.988 1.007 1.107 C 1.152 1.216 1.298 1.341 1.443 1.482 C 1.588 1.612 1.751 1.754 1.93 1.906 C 2.109 2.047 2.327 2.199 2.584 2.362 L 2.433 2.622 C 2.164 2.492 1.918 2.389 1.695 2.313 C 1.471 2.237 1.264 2.172 1.074 2.117 C 0.884 2.063 0.699 2.009 0.52 1.954 C 0.352 1.889 0.179 1.808 0 1.71 Z M 1.946 5 C 1.946 4.805 1.963 4.62 1.997 4.446 C 2.03 4.262 2.069 4.077 2.114 3.893 C 2.159 3.708 2.204 3.502 2.248 3.274 C 2.293 3.046 2.321 2.785 2.332 2.492 L 2.651 2.492 C 2.673 2.785 2.701 3.046 2.735 3.274 C 2.78 3.502 2.824 3.708 2.869 3.893 C 2.914 4.077 2.953 4.262 2.987 4.446 C 3.02 4.62 3.037 4.805 3.037 5 Z M 2.567 2.638 L 2.433 2.378 C 2.69 2.215 2.903 2.063 3.07 1.922 C 3.249 1.77 3.412 1.629 3.557 1.498 C 3.702 1.357 3.842 1.232 3.976 1.124 C 4.122 1.004 4.284 0.896 4.463 0.798 L 5 1.726 C 4.832 1.824 4.659 1.906 4.48 1.971 C 4.312 2.025 4.133 2.079 3.943 2.134 C 3.753 2.188 3.546 2.253 3.322 2.329 C 3.098 2.405 2.847 2.508 2.567 2.638 Z M 4.446 4.218 C 4.279 4.121 4.122 4.012 3.976 3.893 C 3.842 3.773 3.702 3.648 3.557 3.518 C 3.412 3.388 3.249 3.252 3.07 3.111 C 2.891 2.959 2.673 2.801 2.416 2.638 L 2.567 2.378 C 2.836 2.508 3.082 2.611 3.305 2.687 C 3.529 2.763 3.736 2.828 3.926 2.883 C 4.116 2.937 4.295 2.997 4.463 3.062 C 4.642 3.116 4.821 3.192 5 3.29 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 0.537 4.202 L 0 3.274 C 0.168 3.176 0.336 3.1 0.503 3.046 C 0.682 2.98 0.867 2.921 1.057 2.866 C 1.247 2.812 1.454 2.747 1.678 2.671 C 1.902 2.595 2.153 2.492 2.433 2.362 L 2.567 2.622 C 2.321 2.785 2.109 2.942 1.93 3.094 C 1.751 3.236 1.588 3.371 1.443 3.502 C 1.298 3.632 1.152 3.757 1.007 3.876 C 0.872 3.996 0.716 4.104 0.537 4.202 Z M 1.963 0 L 3.054 0 C 3.054 0.195 3.037 0.385 3.003 0.57 C 2.97 0.744 2.931 0.923 2.886 1.107 C 2.841 1.292 2.796 1.498 2.752 1.726 C 2.718 1.944 2.69 2.199 2.668 2.492 L 2.349 2.492 C 2.338 2.199 2.31 1.944 2.265 1.726 C 2.22 1.498 2.176 1.292 2.131 1.107 C 2.086 0.923 2.047 0.744 2.013 0.57 C 1.98 0.385 1.963 0.195 1.963 0 Z M 0 1.71 L 0.554 0.782 C 0.721 0.879 0.872 0.988 1.007 1.107 C 1.152 1.216 1.298 1.341 1.443 1.482 C 1.588 1.612 1.751 1.754 1.93 1.906 C 2.109 2.047 2.327 2.199 2.584 2.362 L 2.433 2.622 C 2.164 2.492 1.918 2.389 1.695 2.313 C 1.471 2.237 1.264 2.172 1.074 2.117 C 0.884 2.063 0.699 2.009 0.52 1.954 C 0.352 1.889 0.179 1.808 0 1.71 Z M 1.946 5 C 1.946 4.805 1.963 4.62 1.997 4.446 C 2.03 4.262 2.069 4.077 2.114 3.893 C 2.159 3.708 2.204 3.502 2.248 3.274 C 2.293 3.046 2.321 2.785 2.332 2.492 L 2.651 2.492 C 2.673 2.785 2.701 3.046 2.735 3.274 C 2.78 3.502 2.824 3.708 2.869 3.893 C 2.914 4.077 2.953 4.262 2.987 4.446 C 3.02 4.62 3.037 4.805 3.037 5 Z M 2.567 2.638 L 2.433 2.378 C 2.69 2.215 2.903 2.063 3.07 1.922 C 3.249 1.77 3.412 1.629 3.557 1.498 C 3.702 1.357 3.842 1.232 3.976 1.124 C 4.122 1.004 4.284 0.896 4.463 0.798 L 5 1.726 C 4.832 1.824 4.659 1.906 4.48 1.971 C 4.312 2.025 4.133 2.079 3.943 2.134 C 3.753 2.188 3.546 2.253 3.322 2.329 C 3.098 2.405 2.847 2.508 2.567 2.638 Z M 4.446 4.218 C 4.279 4.121 4.122 4.012 3.976 3.893 C 3.842 3.773 3.702 3.648 3.557 3.518 C 3.412 3.388 3.249 3.252 3.07 3.111 C 2.891 2.959 2.673 2.801 2.416 2.638 L 2.567 2.378 C 2.836 2.508 3.082 2.611 3.305 2.687 C 3.529 2.763 3.736 2.828 3.926 2.883 C 4.116 2.937 4.295 2.997 4.463 3.062 C 4.642 3.116 4.821 3.192 5 3.29 Z\" fill=\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(14, 16, 17)) /* {&quot;name&quot;:&quot;Default&quot;} */\"></path></svg>',svgContentId:11545771409,withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vquxrl\",\"data-framer-name\":\"LogoBlackalt\",fill:'var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(14, 16, 17)) /* {\"name\":\"Default\"} */',intrinsicHeight:180,intrinsicWidth:1255,layoutDependency:layoutDependency,layoutId:\"tPtKfpH7l\",svg:'<svg data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1254.87 180.32\"><path d=\"M96.14 49.62H60.52V35.93c0-1.43-.54-2.68-1.61-3.76-.89-1.07-2.05-1.61-3.48-1.61H40.7c-1.43 0-2.68.54-3.75 1.61-.89 1.07-1.34 2.33-1.34 3.76v30.86c0 1.43.45 2.68 1.34 3.76 1.07 1.07 2.32 1.61 3.75 1.61h24.1c22.14.36 33.21 12.17 33.21 35.42v37.3c0 23.62-11.07 35.42-33.21 35.42H33.2c-22.14 0-33.21-11.81-33.21-35.42V126.9h35.62v19.32c0 1.43.45 2.68 1.34 3.76 1.07 1.07 2.32 1.61 3.75 1.61h16.6c1.43 0 2.59-.54 3.48-1.61 1.07-1.07 1.61-2.33 1.61-3.76v-34.08c0-1.43-.54-2.68-1.61-3.76-.89-1.07-2.05-1.61-3.48-1.61H33.2C11.07 106.78 0 94.98 0 71.36V36.74C0 13.12 11.07 1.32 33.21 1.32h29.73c22.14 0 33.21 11.81 33.21 35.42v12.88Zm92-45.62c22.14 0 33.21 11.81 33.21 35.42v34.62c0 23.62-11.07 35.42-33.21 35.42h-30.26v68.16h-37.49V4h67.75Zm-4.28 74.34V35.13c0-1.43-.53-2.68-1.61-3.76-.89-1.07-2.05-1.61-3.48-1.61h-20.89V83.7h20.89c1.43 0 2.59-.54 3.48-1.61 1.07-1.07 1.61-2.33 1.61-3.76ZM310 1.32c22.14 0 33.21 11.81 33.21 35.42v140.89h-37.49v-58.24h-27.05v58.24h-37.49V36.74c0-23.62 11.07-35.42 33.21-35.42h35.62Zm-31.33 89.09h27.05V32.17c0-1.43-.54-2.68-1.61-3.76-.89-1.07-2.05-1.61-3.48-1.61h-16.87c-1.43 0-2.68.54-3.75 1.61-.89 1.07-1.34 2.33-1.34 3.76v58.24Zm151.02 58.78v-26.84h35.62v22.54c0 23.62-11.07 35.42-33.21 35.42h-33.74c-22.14 0-33.21-11.81-33.21-35.42V36.74c0-23.62 11.07-35.42 33.21-35.42h33.74c22.14 0 33.21 11.81 33.21 35.42v16.37h-35.62V32.18c0-1.43-.54-2.68-1.61-3.76-.89-1.07-2.05-1.61-3.48-1.61h-16.87c-1.43 0-2.68.54-3.75 1.61-.89 1.07-1.34 2.33-1.34 3.76v117.01c0 1.43.45 2.68 1.34 3.76 1.07 1.07 2.32 1.61 3.75 1.61h16.87c1.43 0 2.59-.54 3.48-1.61 1.07-1.07 1.61-2.33 1.61-3.76Zm95.61-2.69h41.51v31.13h-79V4h79v30.59H525.3v40.79h38.83v29.52H525.3v41.6Zm198.69-38.35v68.16H686.5V2.68h37.49v72.73h29.73V2.68h37.49v173.63h-37.49v-68.16h-29.73Zm198.09-72.73v108.15c0 23.62-11.07 35.42-33.21 35.42h-35.62c-22.14 0-33.21-11.81-33.21-35.42V35.42C820.04 11.8 831.11 0 853.25 0h35.62c22.14 0 33.21 11.81 33.21 35.42Zm-37.49 112.45V30.86c0-1.43-.54-2.68-1.61-3.76-.89-1.07-2.05-1.61-3.48-1.61h-16.87c-1.43 0-2.68.54-3.75 1.61-.89 1.07-1.34 2.33-1.34 3.76v117.01c0 1.43.45 2.68 1.34 3.76 1.07 1.07 2.32 1.61 3.75 1.61h16.87c1.43 0 2.59-.54 3.48-1.61 1.07-1.07 1.61-2.33 1.61-3.76Zm58.27-113.25V2.68h93.73v31.94h-28.12v141.7h-37.49V34.62h-28.12Zm155.35 110.57h41.51v31.13h-79.01V2.68h79.01v30.59h-41.51v40.79h38.83v29.52h-38.83v41.6Zm103.68-.54h52.98v31.67h-90.47V2.68h37.49v141.97Z\"/></svg>',withExternalLayout:true})]})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qw413d\",\"data-framer-name\":\"Navbar Menu\",layoutDependency:layoutDependency,layoutId:\"I7139:236;7135:489\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yceE3jxxg\"},implicitPathVariables:undefined},{href:{webPageId:\"yceE3jxxg\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:17,y:(componentViewport?.y||0)+0+0+4+1.5+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17tgub5-container\",layoutDependency:layoutDependency,layoutId:\"rNXr31wrH-container\",nodeId:\"rNXr31wrH\",rendersWithMotion:true,scopeId:\"H2AzYnN5x\",children:/*#__PURE__*/_jsx(ComponentsNavbarItem,{BS5SaAWg0:resolvedLinks[0],height:\"100%\",id:\"rNXr31wrH\",layoutId:\"rNXr31wrH\",NDS66P9u6:\"About\",variant:\"ZHia6ERgq\",width:\"100%\",...addPropertyOverrides({bm9e676kA:{BS5SaAWg0:resolvedLinks[1],variant:\"OmdGC4kz7\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"bl4BI2dBM\"},implicitPathVariables:undefined},{href:{webPageId:\"bl4BI2dBM\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:17,y:(componentViewport?.y||0)+0+0+4+1.5+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1yz8iet-container\",layoutDependency:layoutDependency,layoutId:\"M1bYKIN7j-container\",nodeId:\"M1bYKIN7j\",rendersWithMotion:true,scopeId:\"H2AzYnN5x\",children:/*#__PURE__*/_jsx(ComponentsNavbarItem,{BS5SaAWg0:resolvedLinks1[0],height:\"100%\",id:\"M1bYKIN7j\",layoutId:\"M1bYKIN7j\",NDS66P9u6:\"Contact\",variant:\"ZHia6ERgq\",width:\"100%\",...addPropertyOverrides({bm9e676kA:{BS5SaAWg0:resolvedLinks1[1],variant:\"OmdGC4kz7\"}},baseVariant,gestureVariant)})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+0+0+4+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jgjbay-container\",layoutDependency:layoutDependency,layoutId:\"pmQE0oSZt-container\",nodeId:\"pmQE0oSZt\",rendersWithMotion:true,scopeId:\"H2AzYnN5x\",children:/*#__PURE__*/_jsx(LayoutThemeToggle,{height:\"100%\",id:\"pmQE0oSZt\",layoutId:\"pmQE0oSZt\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e9gdwz\",\"data-framer-name\":\"Rounded Edge\",layoutDependency:layoutDependency,layoutId:\"eBvUT_hE1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-o0j6sn\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Ww_DEiL9p\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 0 18 C 0 8.059 8.059 0 18 0 Z\" fill=\"var(--token-4321a524-8651-4268-85f9-e884d8cb6223, rgb(255, 255, 255))\"></path></svg>',svgContentId:12391343727,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g3p886\",\"data-framer-name\":\"Rounded Edge\",layoutDependency:layoutDependency,layoutId:\"wEMRZUaXY\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4rviv5\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"xNYOW9eMT\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 0 18 C 0 8.059 8.059 0 18 0 Z\" fill=\"var(--token-4321a524-8651-4268-85f9-e884d8cb6223, rgb(255, 255, 255))\"></path></svg>',svgContentId:10869124812,withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jM1jb.framer-iputpu, .framer-jM1jb .framer-iputpu { display: block; }\",\".framer-jM1jb.framer-l9yfos { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jM1jb .framer-16ic1f3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 4px 16px 12px 16px; position: relative; width: min-content; }\",\".framer-jM1jb .framer-1fgk3gp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jM1jb .framer-h4nfaj { aspect-ratio: 6.9625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); overflow: visible; position: relative; text-decoration: none; width: 104px; }\",\".framer-jM1jb .framer-b28au { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; width: 5%; z-index: 1; }\",\".framer-jM1jb .framer-tzlwtl { flex: none; height: 5px; position: relative; width: 5px; }\",\".framer-jM1jb .framer-1vquxrl { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-jM1jb .framer-1qw413d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jM1jb .framer-17tgub5-container, .framer-jM1jb .framer-1yz8iet-container, .framer-jM1jb .framer-jgjbay-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-jM1jb .framer-1e9gdwz { aspect-ratio: 1 / 1; bottom: -18px; flex: none; height: var(--framer-aspect-ratio-supported, 18px); left: 0px; overflow: hidden; position: absolute; width: 18px; z-index: 1; }\",\".framer-jM1jb .framer-o0j6sn, .framer-jM1jb .framer-4rviv5 { flex: none; height: 18px; left: 0px; position: absolute; top: 0px; width: 18px; }\",\".framer-jM1jb .framer-1g3p886 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: hidden; position: absolute; right: -18px; top: 0px; width: 18px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jM1jb.framer-l9yfos, .framer-jM1jb .framer-16ic1f3, .framer-jM1jb .framer-1fgk3gp, .framer-jM1jb .framer-b28au, .framer-jM1jb .framer-1qw413d { gap: 0px; } .framer-jM1jb.framer-l9yfos > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-jM1jb.framer-l9yfos > :first-child { margin-top: 0px; } .framer-jM1jb.framer-l9yfos > :last-child { margin-bottom: 0px; } .framer-jM1jb .framer-16ic1f3 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-jM1jb .framer-16ic1f3 > :first-child, .framer-jM1jb .framer-1fgk3gp > :first-child, .framer-jM1jb .framer-b28au > :first-child, .framer-jM1jb .framer-1qw413d > :first-child { margin-left: 0px; } .framer-jM1jb .framer-16ic1f3 > :last-child, .framer-jM1jb .framer-1fgk3gp > :last-child, .framer-jM1jb .framer-b28au > :last-child, .framer-jM1jb .framer-1qw413d > :last-child { margin-right: 0px; } .framer-jM1jb .framer-1fgk3gp > *, .framer-jM1jb .framer-1qw413d > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-jM1jb .framer-b28au > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-jM1jb.framer-v-p0bw8z .framer-16ic1f3, .framer-jM1jb.framer-v-19r6zfl .framer-16ic1f3 { order: 0; }\",\".framer-jM1jb.framer-v-19r6zfl.framer-l9yfos { gap: 12px; }\",\".framer-jM1jb.framer-v-19r6zfl .framer-1fgk3gp { gap: 16px; }\",\".framer-jM1jb.framer-v-19r6zfl .framer-1g3p886 { right: -17px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jM1jb.framer-v-19r6zfl.framer-l9yfos, .framer-jM1jb.framer-v-19r6zfl .framer-1fgk3gp { gap: 0px; } .framer-jM1jb.framer-v-19r6zfl.framer-l9yfos > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-jM1jb.framer-v-19r6zfl.framer-l9yfos > :first-child { margin-top: 0px; } .framer-jM1jb.framer-v-19r6zfl.framer-l9yfos > :last-child { margin-bottom: 0px; } .framer-jM1jb.framer-v-19r6zfl .framer-1fgk3gp > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-jM1jb.framer-v-19r6zfl .framer-1fgk3gp > :first-child { margin-left: 0px; } .framer-jM1jb.framer-v-19r6zfl .framer-1fgk3gp > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 319\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"bm9e676kA\":{\"layout\":[\"auto\",\"auto\"]},\"pFLTzIvEh\":{\"layout\":[\"auto\",\"auto\"]},\"Ywme1Tzkc\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerH2AzYnN5x=withCSS(Component,css,\"framer-jM1jb\");export default FramerH2AzYnN5x;FramerH2AzYnN5x.displayName=\"Layout/Header\";FramerH2AzYnN5x.defaultProps={height:36,width:319};addPropertyControls(FramerH2AzYnN5x,{variant:{options:[\"rQNQqYpOV\",\"bm9e676kA\",\"pFLTzIvEh\",\"Ywme1Tzkc\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerH2AzYnN5x,[{explicitInter:true,fonts:[]},...ComponentsNavbarItemFonts,...LayoutThemeToggleFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerH2AzYnN5x\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"319\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"bm9e676kA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pFLTzIvEh\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Ywme1Tzkc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"36\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./H2AzYnN5x.map"],
  "mappings": "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",
  "names": ["assign", "t", "n", "e", "init", "set", "r", "i", "o", "get", "c", "a", "createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "THEME_ATTRIBUTE", "COOKIE_NAME", "STYLE_ID", "SIGNAL_NAME", "THEMES", "useThemeStore", "createStore", "extractBodySection", "inputString", "searchStr", "startIndex", "endIndex", "makeBorderStyle", "border", "ThemeToggle", "props", "_window", "toggle", "dropdown", "dropdownOptions", "icons", "transition", "isPreview", "initialTheme", "storedTheme", "t", "deviceTheme", "window", "theme", "setTheme", "activeTheme", "setActiveTheme", "ye", "originalPreviewTheme", "setOriginalPreviewTheme", "themeRef", "pe", "selectRef", "changeTheme", "newTheme", "newActiveTheme", "toggleTheme", "onSelectChange", "handleThemeChange", "event", "ue", "mediaQuery", "generateStyle", "headElement", "style", "styleText", "darkLocation", "styleElement", "height", "padding", "shadow", "u", "motion", "p", "Icon", "_props_style", "showDeviceTheme", "themeTitles", "borderControls", "ControlType", "toggleShadowDefault", "iconsDefault", "addPropertyControls", "type", "size", "lightSvg", "darkSvg", "lightImage", "darkImage", "sizing", "opacity", "l", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "css", "FramerJAsa_6sDT", "withCSS", "JAsa_6sDT_default", "addPropertyControls", "ControlType", "addFonts", "LayoutThemeToggleButtonsFonts", "getFonts", "JAsa_6sDT_default", "ThemeToggleFonts", "ThemeToggle", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "ThemeToggle", "JAsa_6sDT_default", "css", "FrameracwIhaj_P", "withCSS", "acwIhaj_P_default", "addFonts", "LayoutThemeToggleButtonsFonts", "ThemeToggleFonts", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "NDS66P9u6", "BS5SaAWg0", "hK9FfgVOP", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapwmr67", "args", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "css", "Framerg9oIoH2vY", "withCSS", "g9oIoH2vY_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "ComponentsNavbarItemFonts", "getFonts", "g9oIoH2vY_default", "LayoutThemeToggleFonts", "acwIhaj_P_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "isDisplayed1", "LayoutGroup", "u", "Link", "SVG", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "css", "FramerH2AzYnN5x", "withCSS", "H2AzYnN5x_default", "addPropertyControls", "ControlType", "addFonts"]
}
