{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/I4beUW6qV1IypY03i0JK/5vCH2aCrr4siItyBxEl7/New_auto_copyright.js", "ssg:https://framerusercontent.com/modules/31JY6MizZWq2APNTSA2m/PPCYtvWnSpztmomX8gE5/Switch.js", "ssg:https://framerusercontent.com/modules/iWZUFTE6dc3SnVHOTlzY/YKVJuk8LHBHoDLRFZyiA/usuQLil1D.js"],
  "sourcesContent": ["import{jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";// @framerDisableUnlink\nexport default function CurrentYear(props){const year=props.autoYear?new Date().getFullYear():props.manualYear;return /*#__PURE__*/_jsxs(\"div\",{style:{...props.style,fontFamily:props.font.fontFamily,fontWeight:props.font.fontWeight,fontSize:props.fontSize,color:props.color},children:[\"\\xa9 \",year,\" \",props.suffix,\".\"]});}CurrentYear.defaultProps={font:{fontFamily:\"Inter\",fontWeight:\"Regular\"},fontSize:16,color:\"#000000\",suffix:\"All rights reserved.\",autoYear:true,manualYear:new Date().getFullYear()};addPropertyControls(CurrentYear,{font:{title:\"Font\",type:ControlType.Font,defaultValue:CurrentYear.defaultProps.font},fontSize:{title:\"Size\",type:ControlType.Number,defaultValue:CurrentYear.defaultProps.fontSize,min:10,max:36,step:1},color:{title:\"Color\",type:ControlType.Color,defaultValue:CurrentYear.defaultProps.color},suffix:{title:\"Suffix Text\",type:ControlType.String,defaultValue:CurrentYear.defaultProps.suffix},autoYear:{title:\"Year Mode\",type:ControlType.Boolean,defaultValue:CurrentYear.defaultProps.autoYear,enabledTitle:\"Auto\",disabledTitle:\"Manual\"},manualYear:{title:\"Manual Year\",type:ControlType.Number,defaultValue:CurrentYear.defaultProps.manualYear,hidden(props){return props.autoYear===true;}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CurrentYear\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./New_auto_copyright.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{Frame,addPropertyControls,ControlType}from\"framer\";function getStoredTheme(){return localStorage.getItem(\"currentToggleState\");}function SystemThemeDetector({onThemeDetected}){const[systemTheme,setSystemTheme]=React.useState(null);const[errorMessage,setErrorMessage]=React.useState(null);React.useEffect(()=>{const darkModeMediaQuery=window.matchMedia(\"(prefers-color-scheme: dark)\");const handleThemeChange=e=>{const theme=e.matches?\"dark\":\"light\";setSystemTheme(theme);setErrorMessage(null);onThemeDetected(theme);};try{if(darkModeMediaQuery.media===\"not all\"){setErrorMessage(\"System theme detection not supported\");onThemeDetected(null);}else{handleThemeChange(darkModeMediaQuery);darkModeMediaQuery.addListener(handleThemeChange);}}catch(error){setErrorMessage(\"Error detecting system theme\");onThemeDetected(null);}return()=>{darkModeMediaQuery.removeListener(handleThemeChange);};},[onThemeDetected]);return null;}export function ThemeSwitch({backgroundColor,iconColor,switchSize,iconPadding,circleColor}){const[isOn,setIsOn]=React.useState(false);const[isThemeSet,setIsThemeSet]=React.useState(false);const[systemTheme,setSystemTheme]=React.useState(null);const toggle=()=>{const newToggleState=isOn?\"light\":\"dark\";setIsOn(!isOn);localStorage.setItem(\"currentToggleState\",newToggleState);updateTheme(newToggleState);};const updateTheme=theme=>{if(typeof document!==\"undefined\"){const styleTag=document.getElementsByTagName(\"style\")[0];const newCSS=styleTag.innerHTML.replace(/prefers-color-scheme: \\w+/,`prefers-color-scheme: ${theme}`);styleTag.innerHTML=newCSS;}window.dispatchEvent(new CustomEvent(\"themeChange\"));};const handleSystemThemeChange=theme=>{setSystemTheme(theme);if(!isThemeSet){setIsOn(theme===\"light\");updateTheme(theme);setIsThemeSet(true);}};React.useEffect(()=>{const storedTheme=getStoredTheme();if(storedTheme){setIsOn(storedTheme===\"dark\");updateTheme(storedTheme);setIsThemeSet(true);}else{handleSystemThemeChange(null);}},[]);const circleSize=switchSize/2-switchSize/8;const iconSize=circleSize-iconPadding*2;return /*#__PURE__*/_jsx(Frame,{width:switchSize,height:switchSize/2,background:backgroundColor,style:{borderRadius:switchSize/4,cursor:\"pointer\",position:\"relative\",display:\"flex\",alignItems:\"center\",justifyContent:\"space-between\",padding:`0 ${switchSize/8}px`},onClick:toggle,children:isThemeSet&&/*#__PURE__*/_jsx(Frame,{width:circleSize,height:circleSize,background:circleColor,style:{borderRadius:\"50%\",position:\"absolute\",left:isOn?`calc(100% - ${circleSize+switchSize/16}px)`:`${switchSize/16}px`,transition:\"left 0.2s\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\"},initial:false,animate:{left:isOn?`calc(100% - ${circleSize+switchSize/16}px)`:`${switchSize/16}px`},children:/*#__PURE__*/_jsx(Frame,{width:iconSize,height:iconSize,background:\"transparent\",style:{overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 24 24\",fill:iconColor,width:iconSize,height:iconSize,children:/*#__PURE__*/_jsx(\"path\",{d:\"M12 21.9967C6.47715 21.9967 2 17.5196 2 11.9967C2 6.47386 6.47715 1.9967 12 1.9967C17.5228 1.9967 22 6.47386 22 11.9967C22 17.5196 17.5228 21.9967 12 21.9967ZM12 19.9967C16.4183 19.9967 20 16.415 20 11.9967C20 7.57843 16.4183 3.9967 12 3.9967C7.58172 3.9967 4 7.57843 4 11.9967C4 16.415 7.58172 19.9967 12 19.9967ZM12 17.9967V5.9967C15.3137 5.9967 18 8.683 18 11.9967C18 15.3104 15.3137 17.9967 12 17.9967Z\"})})})})});}ThemeSwitch.defaultProps={backgroundColor:\"#e0e0e0\",iconColor:\"#000000\",switchSize:60,iconPadding:4,circleColor:\"#ffffff\"};addPropertyControls(ThemeSwitch,{backgroundColor:{title:\"Background Color\",type:ControlType.Color,defaultValue:\"#e0e0e0\"},iconColor:{title:\"Icon Color\",type:ControlType.Color,defaultValue:\"#000000\"},switchSize:{title:\"Switch Size\",type:ControlType.Number,defaultValue:60,min:20,max:200,step:1},iconPadding:{title:\"Icon Padding\",type:ControlType.Number,defaultValue:4,min:0,max:20,step:1},circleColor:{title:\"Circle Color\",type:ControlType.Color,defaultValue:\"#ffffff\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"ThemeSwitch\":{\"type\":\"reactComponent\",\"name\":\"ThemeSwitch\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Switch.map", "// Generated by Framer (fed3180)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,PathVariablesContext,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import CurrentYear from\"https://framerusercontent.com/modules/I4beUW6qV1IypY03i0JK/5vCH2aCrr4siItyBxEl7/New_auto_copyright.js\";import{ThemeSwitch}from\"https://framerusercontent.com/modules/31JY6MizZWq2APNTSA2m/PPCYtvWnSpztmomX8gE5/Switch.js\";import Title from\"https://framerusercontent.com/modules/mZTRlH4ZjXDd8KilY1GC/02JFONTS2w798sCdRZ71/CoOBKc03h.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/lK8Q4j9FgT9uvaNCbg7S/GyuiT6tL3Sd1pOTOiJo8/hGwDNgZTx.js\";import ElementsLink from\"https://framerusercontent.com/modules/3SykKcvixLmRhnk9LrlU/hReTUznlxagaeHNWq1tu/mgz7WGEGu.js\";const ElementsLinkFonts=getFonts(ElementsLink);const CurrentYearFonts=getFonts(CurrentYear);const ThemeSwitchFonts=getFonts(ThemeSwitch);const cycleOrder=[\"u11bDmhQ8\",\"kLaQx9xex\",\"BT_EPvxK6\"];const serializationHash=\"framer-FYFeA\";const variantClassNames={BT_EPvxK6:\"framer-v-1ml197i\",kLaQx9xex:\"framer-v-ki0yql\",u11bDmhQ8:\"framer-v-ph3iwv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const query=prequery=>prequery({from:{alias:\"ZR56TdNQ9\",data:Title,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:16},select:[{collection:\"ZR56TdNQ9\",name:\"uZozBgAC5\",type:\"Identifier\"},{collection:\"ZR56TdNQ9\",name:\"NOqSapojl\",type:\"Identifier\"},{collection:\"ZR56TdNQ9\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"ZR56TdNQ9\",name:\"qpi2FLUBp\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"Folk\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};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={Desktop:\"u11bDmhQ8\",Phone:\"BT_EPvxK6\",Tablet:\"kLaQx9xex\"};const getProps=({height,id,visible,width,...props})=>{return{...props,uxY9gV2Pq:visible??props.uxY9gV2Pq??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"u11bDmhQ8\"};};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,uxY9gV2Pq,uZozBgAC5ZR56TdNQ9,NOqSapojlZR56TdNQ9,idZR56TdNQ9,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"u11bDmhQ8\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();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.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ph3iwv\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"u11bDmhQ8\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-1ae38199-cbce-439f-ab23-4f321f5e3f62, rgb(36, 36, 36))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-025ca988-d28b-41d1-9072-9bb5169a98cf, rgb(255, 255, 255))\",...style},...addPropertyOverrides({BT_EPvxK6:{\"data-framer-name\":\"Phone\"},kLaQx9xex:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gq1r1o\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"vZM1lr2b5\",children:[uxY9gV2Pq&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w9qazs\",\"data-framer-name\":\"Frame 199\",layoutDependency:layoutDependency,layoutId:\"pDssSwJjd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-750kt2\",layoutDependency:layoutDependency,layoutId:\"zASOXaYvC\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-efbjpx\",\"data-framer-name\":\"Frame 201\",layoutDependency:layoutDependency,layoutId:\"MhAJ2P0R4\",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\"},variants:{BT_EPvxK6:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-1ae38199-cbce-439f-ab23-4f321f5e3f62, rgb(36, 36, 36))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"}},...addPropertyOverrides({BT_EPvxK6:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-pzl6ic\",layoutDependency:layoutDependency,layoutId:\"h7_IMkyiI\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-styles-preset-1a16yi\",\"data-styles-preset\":\"hGwDNgZTx\",style:{\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-b62b1fb2-b453-4dc0-ad4d-1c0085661e3b, rgb(8, 8, 16)))\"},children:\"Music\"})}),className:\"framer-yyjtim\",\"data-framer-name\":\"Index\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yXr3fwcsS\",style:{\"--extracted-tcooor\":\"var(--token-b62b1fb2-b453-4dc0-ad4d-1c0085661e3b, rgb(8, 8, 16))\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10mnisb\",layoutDependency:layoutDependency,layoutId:\"ZVlMhShkk\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QPd8pOXmt\"},implicitPathVariables:undefined},{href:{webPageId:\"QPd8pOXmt\"},implicitPathVariables:undefined},{href:{webPageId:\"QPd8pOXmt\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+0+48+0+0+0+0+89+0+0,...addPropertyOverrides({BT_EPvxK6:{y:(componentViewport?.y||0)+0+0+32+0+0+0+0+24+92+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1p2ug6m-container\",layoutDependency:layoutDependency,layoutId:\"fA81upqWz-container\",nodeId:\"fA81upqWz\",rendersWithMotion:true,scopeId:\"usuQLil1D\",children:/*#__PURE__*/_jsx(ElementsLink,{fbUc0fl1y:false,GuYGJEUax:false,height:\"100%\",HVQ4jRRRA:\"Browse\",id:\"fA81upqWz\",layoutId:\"fA81upqWz\",Sz4Hzw5wt:resolvedLinks[0],width:\"100%\",...addPropertyOverrides({BT_EPvxK6:{Sz4Hzw5wt:resolvedLinks[2]},kLaQx9xex:{Sz4Hzw5wt:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"IrJ8rmK3F\"},implicitPathVariables:undefined},{href:{webPageId:\"IrJ8rmK3F\"},implicitPathVariables:undefined},{href:{webPageId:\"IrJ8rmK3F\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+0+48+0+0+0+0+89+0+24,...addPropertyOverrides({BT_EPvxK6:{y:(componentViewport?.y||0)+0+0+32+0+0+0+0+24+92+0+28}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15hiqoh-container\",layoutDependency:layoutDependency,layoutId:\"weIwlpaS5-container\",nodeId:\"weIwlpaS5\",rendersWithMotion:true,scopeId:\"usuQLil1D\",children:/*#__PURE__*/_jsx(ElementsLink,{fbUc0fl1y:false,GuYGJEUax:false,height:\"100%\",HVQ4jRRRA:\"Collections\",id:\"weIwlpaS5\",layoutId:\"weIwlpaS5\",Sz4Hzw5wt:resolvedLinks1[0],width:\"100%\",...addPropertyOverrides({BT_EPvxK6:{Sz4Hzw5wt:resolvedLinks1[2]},kLaQx9xex:{Sz4Hzw5wt:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"aYI9xoAOY\"},implicitPathVariables:undefined},{href:{webPageId:\"aYI9xoAOY\"},implicitPathVariables:undefined},{href:{webPageId:\"aYI9xoAOY\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+0+48+0+0+0+0+89+0+48,...addPropertyOverrides({BT_EPvxK6:{y:(componentViewport?.y||0)+0+0+32+0+0+0+0+24+92+0+56}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1w8jlhd-container\",layoutDependency:layoutDependency,layoutId:\"I4mWFAzBU-container\",nodeId:\"I4mWFAzBU\",rendersWithMotion:true,scopeId:\"usuQLil1D\",children:/*#__PURE__*/_jsx(ElementsLink,{fbUc0fl1y:false,GuYGJEUax:false,height:\"100%\",HVQ4jRRRA:\"Playlists\",id:\"I4mWFAzBU\",layoutId:\"I4mWFAzBU\",Sz4Hzw5wt:resolvedLinks2[0],width:\"100%\",...addPropertyOverrides({BT_EPvxK6:{Sz4Hzw5wt:resolvedLinks2[2]},kLaQx9xex:{Sz4Hzw5wt:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"nIvJzupXK\"},implicitPathVariables:undefined},{href:{webPageId:\"nIvJzupXK\"},implicitPathVariables:undefined},{href:{webPageId:\"nIvJzupXK\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+0+48+0+0+0+0+89+0+72,...addPropertyOverrides({BT_EPvxK6:{y:(componentViewport?.y||0)+0+0+32+0+0+0+0+24+92+0+84}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1go3rjw-container\",layoutDependency:layoutDependency,layoutId:\"ZvEuuaXNV-container\",nodeId:\"ZvEuuaXNV\",rendersWithMotion:true,scopeId:\"usuQLil1D\",children:/*#__PURE__*/_jsx(ElementsLink,{fbUc0fl1y:false,GuYGJEUax:false,height:\"100%\",HVQ4jRRRA:\"Artists\",id:\"ZvEuuaXNV\",layoutId:\"ZvEuuaXNV\",Sz4Hzw5wt:resolvedLinks3[0],width:\"100%\",...addPropertyOverrides({BT_EPvxK6:{Sz4Hzw5wt:resolvedLinks3[2]},kLaQx9xex:{Sz4Hzw5wt:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cj5ln0\",\"data-framer-name\":\"Frame 201\",layoutDependency:layoutDependency,layoutId:\"tgvEN_VbW\",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\"},variants:{BT_EPvxK6:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-1ae38199-cbce-439f-ab23-4f321f5e3f62, rgb(36, 36, 36))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"}},...addPropertyOverrides({BT_EPvxK6:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10giwiz\",layoutDependency:layoutDependency,layoutId:\"k4L_AnCKn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-styles-preset-1a16yi\",\"data-styles-preset\":\"hGwDNgZTx\",style:{\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-b62b1fb2-b453-4dc0-ad4d-1c0085661e3b, rgb(8, 8, 16)))\"},children:\"Recent\"})}),className:\"framer-1qtlcx4\",\"data-framer-name\":\"Index\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BicKaGn6m\",style:{\"--extracted-tcooor\":\"var(--token-b62b1fb2-b453-4dc0-ad4d-1c0085661e3b, rgb(8, 8, 16))\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-h36rcw\",layoutDependency:layoutDependency,layoutId:\"ncLOcE2QY\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r4aa92\",layoutDependency:layoutDependency,layoutId:\"ZR56TdNQ9\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ZR56TdNQ9\",data:Title,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:16},select:[{collection:\"ZR56TdNQ9\",name:\"uZozBgAC5\",type:\"Identifier\"},{collection:\"ZR56TdNQ9\",name:\"NOqSapojl\",type:\"Identifier\"},{collection:\"ZR56TdNQ9\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"ZR56TdNQ9\",name:\"qpi2FLUBp\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"Folk\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idZR56TdNQ9,NOqSapojl:NOqSapojlZR56TdNQ9,uZozBgAC5:uZozBgAC5ZR56TdNQ9},index)=>{uZozBgAC5ZR56TdNQ9??=\"\";NOqSapojlZR56TdNQ9??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ZR56TdNQ9-${idZR56TdNQ9}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{NOqSapojl:NOqSapojlZR56TdNQ9},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{NOqSapojl:NOqSapojlZR56TdNQ9},webPageId:\"usJpW96QP\"},implicitPathVariables:undefined},{href:{pathVariables:{NOqSapojl:NOqSapojlZR56TdNQ9},webPageId:\"usJpW96QP\"},implicitPathVariables:undefined},{href:{pathVariables:{NOqSapojl:NOqSapojlZR56TdNQ9},webPageId:\"usJpW96QP\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+0+48+0+0+0+0+89+0+0+0+0,...addPropertyOverrides({BT_EPvxK6:{y:(componentViewport?.y||0)+0+0+32+0+0+0+0+24+92+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zedkwr-container\",layoutDependency:layoutDependency,layoutId:\"SgqxA1mgz-container\",nodeId:\"SgqxA1mgz\",rendersWithMotion:true,scopeId:\"usuQLil1D\",children:/*#__PURE__*/_jsx(ElementsLink,{fbUc0fl1y:false,GuYGJEUax:false,height:\"100%\",HVQ4jRRRA:uZozBgAC5ZR56TdNQ9,id:\"SgqxA1mgz\",layoutId:\"SgqxA1mgz\",Sz4Hzw5wt:resolvedLinks4[0],width:\"100%\",...addPropertyOverrides({BT_EPvxK6:{Sz4Hzw5wt:resolvedLinks4[2]},kLaQx9xex:{Sz4Hzw5wt:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})})})},idZR56TdNQ9);})})})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-162qvt1\",layoutDependency:layoutDependency,layoutId:\"akm7mBFIC\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sltoe5\",\"data-framer-name\":\"Frame 202\",layoutDependency:layoutDependency,layoutId:\"zEepD4OKQ\",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\"},variants:{BT_EPvxK6:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1ae38199-cbce-439f-ab23-4f321f5e3f62, rgb(36, 36, 36))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"}},...addPropertyOverrides({BT_EPvxK6:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rv89bm\",layoutDependency:layoutDependency,layoutId:\"k8xORSoPZ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-styles-preset-1a16yi\",\"data-styles-preset\":\"hGwDNgZTx\",style:{\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-b62b1fb2-b453-4dc0-ad4d-1c0085661e3b, rgb(8, 8, 16)))\"},children:\"Info\"})}),className:\"framer-6u052x\",\"data-framer-name\":\"Resources\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Hs2muUWZW\",style:{\"--extracted-tcooor\":\"var(--token-b62b1fb2-b453-4dc0-ad4d-1c0085661e3b, rgb(8, 8, 16))\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s4vcbo\",layoutDependency:layoutDependency,layoutId:\"CNGzqHJfd\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"R8ugfAvNC\"},implicitPathVariables:undefined},{href:{webPageId:\"R8ugfAvNC\"},implicitPathVariables:undefined},{href:{webPageId:\"R8ugfAvNC\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+0+48+0+0+0+0+89+0+0,...addPropertyOverrides({BT_EPvxK6:{y:(componentViewport?.y||0)+0+0+32+0+0+248+0+24+92+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12wag2h-container\",layoutDependency:layoutDependency,layoutId:\"rKeYqtgLS-container\",nodeId:\"rKeYqtgLS\",rendersWithMotion:true,scopeId:\"usuQLil1D\",children:/*#__PURE__*/_jsx(ElementsLink,{fbUc0fl1y:false,GuYGJEUax:false,height:\"100%\",HVQ4jRRRA:\"Feed\",id:\"rKeYqtgLS\",layoutId:\"rKeYqtgLS\",Sz4Hzw5wt:resolvedLinks5[0],width:\"100%\",...addPropertyOverrides({BT_EPvxK6:{Sz4Hzw5wt:resolvedLinks5[2]},kLaQx9xex:{Sz4Hzw5wt:resolvedLinks5[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Wx32Cyewh\"},implicitPathVariables:undefined},{href:{webPageId:\"Wx32Cyewh\"},implicitPathVariables:undefined},{href:{webPageId:\"Wx32Cyewh\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+0+48+0+0+0+0+89+0+24,...addPropertyOverrides({BT_EPvxK6:{y:(componentViewport?.y||0)+0+0+32+0+0+248+0+24+92+0+28}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4pud20-container\",layoutDependency:layoutDependency,layoutId:\"ENfgWatRp-container\",nodeId:\"ENfgWatRp\",rendersWithMotion:true,scopeId:\"usuQLil1D\",children:/*#__PURE__*/_jsx(ElementsLink,{fbUc0fl1y:false,GuYGJEUax:false,height:\"100%\",HVQ4jRRRA:\"Thoughts\",id:\"ENfgWatRp\",layoutId:\"ENfgWatRp\",Sz4Hzw5wt:resolvedLinks6[0],width:\"100%\",...addPropertyOverrides({BT_EPvxK6:{Sz4Hzw5wt:resolvedLinks6[2]},kLaQx9xex:{Sz4Hzw5wt:resolvedLinks6[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"NkZ0gL2E7\"},implicitPathVariables:undefined},{href:{webPageId:\"NkZ0gL2E7\"},implicitPathVariables:undefined},{href:{webPageId:\"NkZ0gL2E7\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+0+48+0+0+0+0+89+0+48,...addPropertyOverrides({BT_EPvxK6:{y:(componentViewport?.y||0)+0+0+32+0+0+248+0+24+92+0+56}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5l11yq-container\",layoutDependency:layoutDependency,layoutId:\"ozKL0sa75-container\",nodeId:\"ozKL0sa75\",rendersWithMotion:true,scopeId:\"usuQLil1D\",children:/*#__PURE__*/_jsx(ElementsLink,{fbUc0fl1y:false,GuYGJEUax:false,height:\"100%\",HVQ4jRRRA:\"About\",id:\"ozKL0sa75\",layoutId:\"ozKL0sa75\",Sz4Hzw5wt:resolvedLinks7[0],width:\"100%\",...addPropertyOverrides({BT_EPvxK6:{Sz4Hzw5wt:resolvedLinks7[2]},kLaQx9xex:{Sz4Hzw5wt:resolvedLinks7[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Iz1F1OCfZ\"},implicitPathVariables:undefined},{href:{webPageId:\"Iz1F1OCfZ\"},implicitPathVariables:undefined},{href:{webPageId:\"Iz1F1OCfZ\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+0+48+0+0+0+0+89+0+72,...addPropertyOverrides({BT_EPvxK6:{y:(componentViewport?.y||0)+0+0+32+0+0+248+0+24+92+0+84}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-h03q76-container\",layoutDependency:layoutDependency,layoutId:\"swfz85rxY-container\",nodeId:\"swfz85rxY\",rendersWithMotion:true,scopeId:\"usuQLil1D\",children:/*#__PURE__*/_jsx(ElementsLink,{fbUc0fl1y:false,GuYGJEUax:false,height:\"100%\",HVQ4jRRRA:\"Services\",id:\"swfz85rxY\",layoutId:\"swfz85rxY\",Sz4Hzw5wt:resolvedLinks8[0],width:\"100%\",...addPropertyOverrides({BT_EPvxK6:{Sz4Hzw5wt:resolvedLinks8[2]},kLaQx9xex:{Sz4Hzw5wt:resolvedLinks8[1]}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b9s5gn\",\"data-framer-name\":\"Frame 204\",layoutDependency:layoutDependency,layoutId:\"lU8xCt79L\",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\"},variants:{BT_EPvxK6:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1ae38199-cbce-439f-ab23-4f321f5e3f62, rgb(36, 36, 36))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"}},...addPropertyOverrides({BT_EPvxK6:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-xfcrvm\",layoutDependency:layoutDependency,layoutId:\"BHtmYLcbR\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-styles-preset-1a16yi\",\"data-styles-preset\":\"hGwDNgZTx\",style:{\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-b62b1fb2-b453-4dc0-ad4d-1c0085661e3b, rgb(8, 8, 16)))\"},children:\"Connect\"})}),className:\"framer-1ch72h8\",\"data-framer-name\":\"Connect\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EDUHcZaV0\",style:{\"--extracted-tcooor\":\"var(--token-b62b1fb2-b453-4dc0-ad4d-1c0085661e3b, rgb(8, 8, 16))\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ou4zdg\",layoutDependency:layoutDependency,layoutId:\"ZMOJJ7sdm\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"cgvyLXh8p\"},implicitPathVariables:undefined},{href:{webPageId:\"cgvyLXh8p\"},implicitPathVariables:undefined},{href:{webPageId:\"cgvyLXh8p\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+0+48+0+0+0+0+89+0+0,...addPropertyOverrides({BT_EPvxK6:{y:(componentViewport?.y||0)+0+0+32+0+0+248+0+24+92+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14m4vhl-container\",layoutDependency:layoutDependency,layoutId:\"dbCmUnu61-container\",nodeId:\"dbCmUnu61\",rendersWithMotion:true,scopeId:\"usuQLil1D\",children:/*#__PURE__*/_jsx(ElementsLink,{fbUc0fl1y:false,GuYGJEUax:false,height:\"100%\",HVQ4jRRRA:\"Contact\",id:\"dbCmUnu61\",layoutId:\"dbCmUnu61\",Sz4Hzw5wt:resolvedLinks9[0],width:\"100%\",...addPropertyOverrides({BT_EPvxK6:{Sz4Hzw5wt:resolvedLinks9[2]},kLaQx9xex:{Sz4Hzw5wt:resolvedLinks9[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+0+48+0+0+0+0+89+0+24,...addPropertyOverrides({BT_EPvxK6:{y:(componentViewport?.y||0)+0+0+32+0+0+248+0+24+92+0+28}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10vjis-container\",layoutDependency:layoutDependency,layoutId:\"ljUfE_Aev-container\",nodeId:\"ljUfE_Aev\",rendersWithMotion:true,scopeId:\"usuQLil1D\",children:/*#__PURE__*/_jsx(ElementsLink,{fbUc0fl1y:false,GuYGJEUax:false,height:\"100%\",HVQ4jRRRA:\"Twitter\",id:\"ljUfE_Aev\",layoutId:\"ljUfE_Aev\",Sz4Hzw5wt:\"https://x.com/protomuse.music\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+0+48+0+0+0+0+89+0+48,...addPropertyOverrides({BT_EPvxK6:{y:(componentViewport?.y||0)+0+0+32+0+0+248+0+24+92+0+56}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1960kc4-container\",layoutDependency:layoutDependency,layoutId:\"TXFbO9cj9-container\",nodeId:\"TXFbO9cj9\",rendersWithMotion:true,scopeId:\"usuQLil1D\",children:/*#__PURE__*/_jsx(ElementsLink,{fbUc0fl1y:false,GuYGJEUax:false,height:\"100%\",HVQ4jRRRA:\"Instagram\",id:\"TXFbO9cj9\",layoutId:\"TXFbO9cj9\",Sz4Hzw5wt:\"www.instagram.com/protomuse.music\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+0+48+0+0+0+0+89+0+72,...addPropertyOverrides({BT_EPvxK6:{y:(componentViewport?.y||0)+0+0+32+0+0+248+0+24+92+0+84}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15nvk15-container\",layoutDependency:layoutDependency,layoutId:\"uLAhVCr1c-container\",nodeId:\"uLAhVCr1c\",rendersWithMotion:true,scopeId:\"usuQLil1D\",children:/*#__PURE__*/_jsx(ElementsLink,{fbUc0fl1y:false,GuYGJEUax:false,height:\"100%\",HVQ4jRRRA:\"Facebook\",id:\"uLAhVCr1c\",layoutId:\"uLAhVCr1c\",Sz4Hzw5wt:\"www.facebook.com/protomuse.music\",width:\"100%\"})})})]})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c4x15a\",layoutDependency:layoutDependency,layoutId:\"rEb4wftv3\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-h0djno\",\"data-border\":true,\"data-framer-name\":\"Meta Links\",layoutDependency:layoutDependency,layoutId:\"rPe9z4Bwx\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-1ae38199-cbce-439f-ab23-4f321f5e3f62, rgb(36, 36, 36))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},variants:{BT_EPvxK6:{\"--border-top-width\":\"0px\"}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2ktx1t\",\"data-framer-name\":\"Meta Link Wrap\",layoutDependency:layoutDependency,layoutId:\"jgrgykCoL\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2a3sl2\",layoutDependency:layoutDependency,layoutId:\"Tyrl3lzzm\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mxw1pt\",layoutDependency:layoutDependency,layoutId:\"qaWhGLrhc\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"NkZ0gL2E7\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+0+48+225+0+36+0+0+0+88,...addPropertyOverrides({BT_EPvxK6:{y:(componentViewport?.y||0)+0+0+32+496+40+0+0+0+0+0+0+0+0+0},kLaQx9xex:{y:(componentViewport?.y||0)+0+0+48+225+0+0+-48+0+0+88}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14tgwlw-container\",layoutDependency:layoutDependency,layoutId:\"VApwDNe5Q-container\",nodeId:\"VApwDNe5Q\",rendersWithMotion:true,scopeId:\"usuQLil1D\",children:/*#__PURE__*/_jsx(ElementsLink,{fbUc0fl1y:true,GuYGJEUax:false,height:\"100%\",HVQ4jRRRA:\"Protomuse Ltd\",id:\"VApwDNe5Q\",layoutId:\"VApwDNe5Q\",width:\"100%\",...addPropertyOverrides({BT_EPvxK6:{GuYGJEUax:true,Sz4Hzw5wt:resolvedLinks10[0]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zvethl-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"rkh48VLma-container\",nodeId:\"rkh48VLma\",rendersWithMotion:true,scopeId:\"usuQLil1D\",children:/*#__PURE__*/_jsx(CurrentYear,{autoYear:true,color:\"var(--token-1103eab9-1384-4e53-8ad9-d060dcee532a, rgb(101, 101, 101))\",font:{fontFamily:'\"Inter\", sans-serif',fontStyle:\"normal\"},fontSize:14,height:\"100%\",id:\"rkh48VLma\",layoutId:\"rkh48VLma\",manualYear:2025,suffix:\"All rights reserved.\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nirhg3\",layoutDependency:layoutDependency,layoutId:\"YFoGCzZT4\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10lpk20-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"ECtak_eqD-container\",nodeId:\"ECtak_eqD\",rendersWithMotion:true,scopeId:\"usuQLil1D\",children:/*#__PURE__*/_jsx(ThemeSwitch,{backgroundColor:\"var(--token-7da30547-4673-4b68-90cc-0020047cfc1f, rgb(185, 187, 193))\",circleColor:\"var(--token-2546f2ec-502d-4b32-8634-ef8a4d8c3ed0, rgb(255, 255, 255))\",height:\"100%\",iconColor:\"var(--token-61e5ee56-3594-4358-94d0-c3752e3672e3, rgb(15, 15, 16))\",iconPadding:0,id:\"ECtak_eqD\",layoutId:\"ECtak_eqD\",switchSize:60,width:\"100%\"})})})})]})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FYFeA.framer-rgjshi, .framer-FYFeA .framer-rgjshi { display: block; }\",\".framer-FYFeA.framer-ph3iwv { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-FYFeA .framer-1gq1r1o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 48px; position: relative; width: 100%; }\",\".framer-FYFeA .framer-w9qazs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FYFeA .framer-750kt2, .framer-FYFeA .framer-162qvt1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-FYFeA .framer-efbjpx, .framer-FYFeA .framer-1cj5ln0, .framer-FYFeA .framer-sltoe5, .framer-FYFeA .framer-b9s5gn { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-FYFeA .framer-pzl6ic, .framer-FYFeA .framer-10giwiz, .framer-FYFeA .framer-1rv89bm, .framer-FYFeA .framer-xfcrvm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 4px 0px; position: relative; width: 100%; }\",\".framer-FYFeA .framer-yyjtim, .framer-FYFeA .framer-1qtlcx4, .framer-FYFeA .framer-6u052x, .framer-FYFeA .framer-1ch72h8 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-FYFeA .framer-10mnisb, .framer-FYFeA .framer-h36rcw, .framer-FYFeA .framer-1s4vcbo, .framer-FYFeA .framer-ou4zdg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FYFeA .framer-1p2ug6m-container, .framer-FYFeA .framer-15hiqoh-container, .framer-FYFeA .framer-1w8jlhd-container, .framer-FYFeA .framer-1go3rjw-container, .framer-FYFeA .framer-zedkwr-container, .framer-FYFeA .framer-12wag2h-container, .framer-FYFeA .framer-4pud20-container, .framer-FYFeA .framer-5l11yq-container, .framer-FYFeA .framer-h03q76-container, .framer-FYFeA .framer-14m4vhl-container, .framer-FYFeA .framer-10vjis-container, .framer-FYFeA .framer-1960kc4-container, .framer-FYFeA .framer-15nvk15-container, .framer-FYFeA .framer-14tgwlw-container, .framer-FYFeA .framer-zvethl-container, .framer-FYFeA .framer-10lpk20-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-FYFeA .framer-1r4aa92 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-FYFeA .framer-c4x15a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FYFeA .framer-h0djno { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: auto; justify-content: flex-start; overflow: visible; padding: 36px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-FYFeA .framer-2ktx1t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FYFeA .framer-2a3sl2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-FYFeA .framer-mxw1pt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-FYFeA .framer-1nirhg3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-FYFeA.framer-v-ki0yql.framer-ph3iwv { gap: 30px; width: 678px; }\",\".framer-FYFeA.framer-v-ki0yql .framer-1gq1r1o { align-content: center; align-items: center; padding: 48px 48px 10px 48px; }\",\".framer-FYFeA.framer-v-ki0yql .framer-c4x15a { gap: 10px; height: 104px; }\",\".framer-FYFeA.framer-v-ki0yql .framer-h0djno { align-content: center; align-items: center; align-self: unset; height: 100%; justify-content: center; padding: 0px; }\",\".framer-FYFeA.framer-v-ki0yql .framer-2ktx1t { align-content: center; align-items: center; }\",\".framer-FYFeA.framer-v-ki0yql .framer-2a3sl2 { order: 0; }\",\".framer-FYFeA.framer-v-ki0yql .framer-1nirhg3, .framer-FYFeA.framer-v-1ml197i .framer-1nirhg3 { order: 1; }\",\".framer-FYFeA.framer-v-1ml197i.framer-ph3iwv { gap: 24px; width: 375px; }\",\".framer-FYFeA.framer-v-1ml197i .framer-1gq1r1o { gap: 0px; padding: 32px 24px 32px 24px; }\",\".framer-FYFeA.framer-v-1ml197i .framer-w9qazs { flex-direction: column; gap: 0px; order: 0; }\",\".framer-FYFeA.framer-v-1ml197i .framer-750kt2 { flex: none; gap: 0px; width: 100%; }\",\".framer-FYFeA.framer-v-1ml197i .framer-efbjpx, .framer-FYFeA.framer-v-1ml197i .framer-1cj5ln0, .framer-FYFeA.framer-v-1ml197i .framer-b9s5gn { gap: 12px; padding: 24px 0px 24px 0px; }\",\".framer-FYFeA.framer-v-1ml197i .framer-pzl6ic, .framer-FYFeA.framer-v-1ml197i .framer-10giwiz, .framer-FYFeA.framer-v-1ml197i .framer-1rv89bm, .framer-FYFeA.framer-v-1ml197i .framer-xfcrvm { padding: 0px; }\",\".framer-FYFeA.framer-v-1ml197i .framer-10mnisb, .framer-FYFeA.framer-v-1ml197i .framer-h36rcw, .framer-FYFeA.framer-v-1ml197i .framer-1s4vcbo, .framer-FYFeA.framer-v-1ml197i .framer-ou4zdg { gap: 4px; }\",\".framer-FYFeA.framer-v-1ml197i .framer-162qvt1 { flex: none; width: 100%; }\",\".framer-FYFeA.framer-v-1ml197i .framer-sltoe5 { align-self: stretch; gap: 12px; height: auto; padding: 24px 0px 24px 0px; }\",\".framer-FYFeA.framer-v-1ml197i .framer-c4x15a { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 16px; justify-content: flex-start; order: 1; padding: 40px 0px 0px 0px; }\",\".framer-FYFeA.framer-v-1ml197i .framer-h0djno { align-self: unset; flex: none; height: min-content; order: 0; padding: 0px; width: 100%; }\",\".framer-FYFeA.framer-v-1ml197i .framer-2ktx1t { align-content: flex-end; align-items: flex-end; gap: 24px; }\",\".framer-FYFeA.framer-v-1ml197i .framer-2a3sl2 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: flex-end; order: 0; }\",\".framer-FYFeA.framer-v-1ml197i .framer-mxw1pt { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; width: 150%; }\",...sharedStyle.css,'.framer-FYFeA[data-border=\"true\"]::after, .framer-FYFeA [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 323\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kLaQx9xex\":{\"layout\":[\"fixed\",\"auto\"]},\"BT_EPvxK6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"uxY9gV2Pq\":\"visible\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerusuQLil1D=withCSS(Component,css,\"framer-FYFeA\");export default FramerusuQLil1D;FramerusuQLil1D.displayName=\"Sections/Footer\";FramerusuQLil1D.defaultProps={height:323,width:1200};addPropertyControls(FramerusuQLil1D,{variant:{options:[\"u11bDmhQ8\",\"kLaQx9xex\",\"BT_EPvxK6\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},uxY9gV2Pq:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean}});addFonts(FramerusuQLil1D,[{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\"}]},...ElementsLinkFonts,...CurrentYearFonts,...ThemeSwitchFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerusuQLil1D\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"323\",\"framerVariables\":\"{\\\"uxY9gV2Pq\\\":\\\"visible\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kLaQx9xex\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BT_EPvxK6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["CurrentYear", "props", "year", "u", "addPropertyControls", "ControlType", "getStoredTheme", "ThemeSwitch", "backgroundColor", "iconColor", "switchSize", "iconPadding", "circleColor", "isOn", "setIsOn", "ye", "isThemeSet", "setIsThemeSet", "systemTheme", "setSystemTheme", "toggle", "newToggleState", "updateTheme", "theme", "styleTag", "newCSS", "window", "handleSystemThemeChange", "ue", "storedTheme", "getStoredTheme", "circleSize", "iconSize", "p", "Frame", "addPropertyControls", "ControlType", "ElementsLinkFonts", "getFonts", "mgz7WGEGu_default", "CurrentYearFonts", "CurrentYear", "ThemeSwitchFonts", "ThemeSwitch", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "visible", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "uxY9gV2Pq", "uZozBgAC5ZR56TdNQ9", "NOqSapojlZR56TdNQ9", "idZR56TdNQ9", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "router", "useRouter", "LayoutGroup", "transition1", "addPropertyOverrides", "u", "RichText", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "mgz7WGEGu_default", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "ChildrenCanSuspend", "CoOBKc03h_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "CurrentYear", "ThemeSwitch", "css", "FramerusuQLil1D", "withCSS", "usuQLil1D_default", "addPropertyControls", "ControlType", "addFonts", "ElementsLinkFonts", "CurrentYearFonts", "ThemeSwitchFonts", "getFontsFromSharedStyle", "fonts"]
}
