{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/integrations-styles.js@0.2.0", "ssg:https://framerusercontent.com/modules/bGK4RIr3q7JjhzLaKVL7/BQvHIypWy5ZStrVIwBvW/AppleMusic.js", "ssg:https://framerusercontent.com/modules/tW1ExjbbJRt9YcZ0Gyxk/7xLQ6of7kXWmBUVuRiYG/Spotify.js", "ssg:https://framerusercontent.com/modules/mpZS32fpZyBwzeU0xUbm/NIMR5dFDtdGu8w4pbMIk/uKpA9CLLl.js"],
  "sourcesContent": ["import{containerStyles,emptyStateStyle as defaultEmptyStateStyle}from\"https://framer.com/m/framer/default-utils.js@^0.43.0\";export const emptyStateStyle={...containerStyles,...defaultEmptyStateStyle,textAlign:\"center\",padding:15,width:200,height:100,overflow:\"hidden\"};export const neutralStateStyle={...emptyStateStyle,color:\"#09f\",background:\"rgb(0, 153, 255, 0.1)\",borderColor:\"#09f\"};export const stateTitleStyle={fontSize:12,fontWeight:600,margin:0};export const stateParagraphStyle={fontSize:12,maxWidth:200,lineHeight:1.4,margin:\"5px 0 0 0\"};\nexport const __FramerMetadata__ = {\"exports\":{\"neutralStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"stateTitleStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"stateParagraphStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./styles.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,motion}from\"framer\";import{containerStyles}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useMemo}from\"react\";import{emptyStateStyle,stateParagraphStyle,stateTitleStyle}from\"https://framer.com/m/framer/integrations-styles.js@0.2.0\";const musicRegex=/^https?:\\/\\/music\\.apple\\.com\\/([^\\/]*)\\/(album|playlist)(?:\\/[^\\/]*)?\\/([\\w.-]+)(?:\\?.*i=(\\d+))?/;/**\n * APPLE MUSIC\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 150\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function AppleMusic({urlType,url,style,...props}){const embedUrl=useMemo(()=>{var ref;const[,country,type,id,songId]=(ref=url.match(musicRegex))!==null&&ref!==void 0?ref:[null,\"\",\"\",\"\",\"\",];if(!id)return null;if(urlType===\"song\"){return`https://embed.music.apple.com/${country}/${type}/id${id}?i=${songId}`;}else{return`https://embed.music.apple.com/${country}/${type}/id${id}`;}},[urlType,url]);return /*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles},...props,children:embedUrl?/*#__PURE__*/ _jsx(\"iframe\",{src:embedUrl,width:\"100%\",height:\"100%\",frameBorder:\"0\",sandbox:\"allow-forms allow-popups allow-same-origin allow-scripts allow-top-navigation-by-user-activation\",allow:\"autoplay *; encrypted-media *;\"}):/*#__PURE__*/ _jsxs(motion.div,{style:{...emptyStateStyle,...style},children:[/*#__PURE__*/ _jsx(\"h1\",{style:stateTitleStyle,children:\"Apple Music\"}),/*#__PURE__*/ _jsx(\"p\",{style:stateParagraphStyle,children:\"Set an Apple Music URL in the Properties.\"})]})});};addPropertyControls(AppleMusic,{urlType:{type:ControlType.Enum,title:\"URL\",options:[\"album\",\"song\"],optionTitles:[\"Album\",\"Song\"],displaySegmentedControl:true,defaultValue:\"song\"},url:{type:ControlType.String,title:\" \",placeholder:\"https://music.apple.com/us/album/***/***\",defaultValue:\"https://music.apple.com/us/album/borderline/1497230760?i=1497230972\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"AppleMusic\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"150\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AppleMusic.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useCallback}from\"react\";const urlRegex=/(https?:\\/\\/[^ ]*)/;/**\n * SPOTIFY\n *\n * @framerIntrinsicWidth 280\n * @framerIntrinsicHeight 350\n */ export function Spotify(props){const{theme,url:sourceUrl}=props;const createEmbedUrl=useCallback(()=>{if(sourceUrl.length<5)return null;// If someone pastes the embed code lets still try to render it\nconst strippedUrl=sourceUrl.includes(\"iframe\")?sourceUrl.match(urlRegex)[1].replace(`\"`,\"\"):sourceUrl;const url=new URL(strippedUrl);// Add embed prefix if needed\nif(!url.pathname.includes(\"embed\"))url.pathname=`/embed${url.pathname}`;// Remove params\nurl.search=`theme=${theme}`;// @ben you could add all other bools in here like\n// url.search = `theme=${theme}&dog=${cat}`\nreturn url.toString();},[theme,sourceUrl]);const identifier=createEmbedUrl();return(/*#__PURE__*/ _jsx(\"iframe\",{style:{height:\"100%\",width:\"100%\"},frameBorder:0,src:identifier}));}Spotify.defaultProps={url:\"https://open.spotify.com/album/31qVWUdRrlb8thMvts0yYL?si=Jl-8Mnc3RNGuOtqRC7NXVg\",width:280,height:350,theme:1};addPropertyControls(Spotify,{url:{type:ControlType.String,title:\"URL\"},theme:{type:ControlType.Enum,displaySegmentedControl:true,options:[1,0],optionTitles:[\"On\",\"Off\"]}});\nexport const __FramerMetadata__ = {\"exports\":{\"Spotify\":{\"type\":\"reactComponent\",\"name\":\"Spotify\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"350\",\"framerIntrinsicWidth\":\"280\"}}}}\n//# sourceMappingURL=./Spotify.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import AppleMusic from\"https://framerusercontent.com/modules/bGK4RIr3q7JjhzLaKVL7/BQvHIypWy5ZStrVIwBvW/AppleMusic.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import{Spotify}from\"https://framerusercontent.com/modules/tW1ExjbbJRt9YcZ0Gyxk/7xLQ6of7kXWmBUVuRiYG/Spotify.js\";import Footer22 from\"#framer/local/canvasComponent/dDiossSC0/dDiossSC0.js\";import Header2 from\"#framer/local/canvasComponent/j_rhU5Jpu/j_rhU5Jpu.js\";import metadataProvider from\"#framer/local/webPageMetadata/uKpA9CLLl/uKpA9CLLl.js\";const Header2Fonts=getFonts(Header2);const RichTextWithFX=withFX(RichText);const YouTubeFonts=getFonts(YouTube);const ContainerWithFX=withFX(Container);const AppleMusicFonts=getFonts(AppleMusic);const SpotifyFonts=getFonts(Spotify);const ImageWithFX=withFX(Image);const Footer22Fonts=getFonts(Footer22);const breakpoints={iBYUMTle5:\"(max-width: 1199px)\",w0545giDs:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-oGQQY\";const variantClassNames={iBYUMTle5:\"framer-v-s3qykd\",w0545giDs:\"framer-v-15w19nh\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"w0545giDs\",Phone:\"iBYUMTle5\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"w0545giDs\"};};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);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"iBYUMTle5\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"iBYUMTle5\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"w0545giDs\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(26, 26, 26); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-15w19nh\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:270,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hdu6n8-container\",layoutScroll:true,nodeId:\"MlTkxF9ad\",scopeId:\"uKpA9CLLl\",children:/*#__PURE__*/_jsx(Header2,{height:\"100%\",id:\"MlTkxF9ad\",layoutId:\"MlTkxF9ad\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12eo2s9\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bjtvxp\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oxrkql\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iBYUMTle5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"video installation + experiential design\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"video installation + experiential design\"})}),className:\"framer-1ra6gq2\",fonts:[\"FR;InterDisplay\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iBYUMTle5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LUJvbGQ=\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"CARLICLUB\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LUJvbGQ=\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"CARLICLUB\"})}),className:\"framer-13fes7u\",fonts:[\"FR;InterDisplay-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rri011\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"VGltZXMgTmV3IFJvbWFu\",\"--framer-font-family\":'\"Times New Roman\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"CARLICLUB marks the debut of emerging artist Carli\\xe1n, unveiled during an immersive release event at The Chill Box Brooklyn. This unique experience, crafted in collaboration with videographer Marjorie Matamoros, Carli\\xe1n, and myself, blended projections, installation art, and music to create an unforgettable multisensory evening.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QXJjaGl2by10aGlu\",\"--framer-font-family\":'\"Archivo\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"100\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"VGltZXMgTmV3IFJvbWFu\",\"--framer-font-family\":'\"Times New Roman\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"I led the creation of a custom visualizer using TouchDesigner, seamlessly integrating visuals with the music. I also played a key role in concept development, event planning logistics, and the hands-on setup of installations, ensuring every detail aligned with the artistic vision.\"})]}),className:\"framer-4efrtu hidden-s3qykd\",fonts:[\"Times New Roman\",\"FS;Archivo-thin\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1t7gl0q-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"D3vp0mgrh\",rendersWithMotion:true,scopeId:\"uKpA9CLLl\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"D3vp0mgrh\",isMixedBorderRadius:false,isRed:false,layoutId:\"D3vp0mgrh\",play:\"Off\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/rJsXcPSe0Ec\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1os1hiq-container hidden-s3qykd\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Mc_72RaCO\",rendersWithMotion:true,scopeId:\"uKpA9CLLl\",children:/*#__PURE__*/_jsx(AppleMusic,{height:\"100%\",id:\"Mc_72RaCO\",layoutId:\"Mc_72RaCO\",style:{height:\"100%\",width:\"100%\"},url:\"https://music.apple.com/us/album/carli-club/1777337362\",urlType:\"song\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ljmhi3-container hidden-s3qykd\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mrhEMYCda\",rendersWithMotion:true,scopeId:\"uKpA9CLLl\",children:/*#__PURE__*/_jsx(Spotify,{height:\"100%\",id:\"mrhEMYCda\",layoutId:\"mrhEMYCda\",style:{height:\"100%\",width:\"100%\"},theme:1,url:\"https://open.spotify.com/album/1mLwThi5llUvjCNK96AJuA?si=n1r-_0KUSiiZHOSaiJLzuQ\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2may7h\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w2evy8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yqy0uq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iBYUMTle5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+971+0+0+0+0),pixelHeight:226,pixelWidth:170,src:\"https://framerusercontent.com/images/yo7rz0PLhxN2gOrF3r8DxmmQUk.gif\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1501+0+0+0),pixelHeight:226,pixelWidth:170,src:\"https://framerusercontent.com/images/yo7rz0PLhxN2gOrF3r8DxmmQUk.gif\"},className:\"framer-j1356u\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lg3htd\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qwt5at\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cg4ftl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iBYUMTle5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+971+0+0+628.5+0+0+0+0),pixelHeight:3456,pixelWidth:4608,sizes:\"373px\",src:\"https://framerusercontent.com/images/9HQU7eU6eGAAluSJc2yEIy9UQ.jpg\",srcSet:\"https://framerusercontent.com/images/9HQU7eU6eGAAluSJc2yEIy9UQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9HQU7eU6eGAAluSJc2yEIy9UQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9HQU7eU6eGAAluSJc2yEIy9UQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/9HQU7eU6eGAAluSJc2yEIy9UQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/9HQU7eU6eGAAluSJc2yEIy9UQ.jpg 4608w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1501+0+0+0+0+0+0),pixelHeight:3456,pixelWidth:4608,sizes:\"571px\",src:\"https://framerusercontent.com/images/9HQU7eU6eGAAluSJc2yEIy9UQ.jpg\",srcSet:\"https://framerusercontent.com/images/9HQU7eU6eGAAluSJc2yEIy9UQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9HQU7eU6eGAAluSJc2yEIy9UQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9HQU7eU6eGAAluSJc2yEIy9UQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/9HQU7eU6eGAAluSJc2yEIy9UQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/9HQU7eU6eGAAluSJc2yEIy9UQ.jpg 4608w\"},className:\"framer-1fthvx8\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wririz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iBYUMTle5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:864,intrinsicWidth:1152,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+971+0+0+628.5+0+0+314.25+-.5),pixelHeight:3456,pixelWidth:4608,sizes:\"407px\",src:\"https://framerusercontent.com/images/rcwS6m5XI0QxT69Dn0Ac6BWNs8.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/rcwS6m5XI0QxT69Dn0Ac6BWNs8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rcwS6m5XI0QxT69Dn0Ac6BWNs8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rcwS6m5XI0QxT69Dn0Ac6BWNs8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rcwS6m5XI0QxT69Dn0Ac6BWNs8.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/rcwS6m5XI0QxT69Dn0Ac6BWNs8.jpg 4608w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:864,intrinsicWidth:1152,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1501+0+0+0+0+415.5+405.5-405.5),pixelHeight:3456,pixelWidth:4608,sizes:\"571px\",src:\"https://framerusercontent.com/images/rcwS6m5XI0QxT69Dn0Ac6BWNs8.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/rcwS6m5XI0QxT69Dn0Ac6BWNs8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rcwS6m5XI0QxT69Dn0Ac6BWNs8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rcwS6m5XI0QxT69Dn0Ac6BWNs8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rcwS6m5XI0QxT69Dn0Ac6BWNs8.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/rcwS6m5XI0QxT69Dn0Ac6BWNs8.jpg 4608w\"},className:\"framer-ecekog\",\"data-framer-name\":\"IMGP1607\"})})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1waxus6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w5s74s\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kjnuvd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iBYUMTle5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:864,intrinsicWidth:1152,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2227+0+0+-151.5+431-280),pixelHeight:3456,pixelWidth:4608,sizes:\"372px\",src:\"https://framerusercontent.com/images/SvDQjTnihVWLewEmaxIYVDenzE.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/SvDQjTnihVWLewEmaxIYVDenzE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SvDQjTnihVWLewEmaxIYVDenzE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SvDQjTnihVWLewEmaxIYVDenzE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SvDQjTnihVWLewEmaxIYVDenzE.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/SvDQjTnihVWLewEmaxIYVDenzE.jpg 4608w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:864,intrinsicWidth:1152,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2332+0+0+0+0),pixelHeight:3456,pixelWidth:4608,sizes:\"573px\",src:\"https://framerusercontent.com/images/SvDQjTnihVWLewEmaxIYVDenzE.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/SvDQjTnihVWLewEmaxIYVDenzE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SvDQjTnihVWLewEmaxIYVDenzE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SvDQjTnihVWLewEmaxIYVDenzE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SvDQjTnihVWLewEmaxIYVDenzE.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/SvDQjTnihVWLewEmaxIYVDenzE.jpg 4608w\"},className:\"framer-kr1o7a\",\"data-framer-name\":\"IMGP1756\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ukqhv6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iBYUMTle5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:864,intrinsicWidth:1152,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2227+0+0+289.5+0),pixelHeight:3456,pixelWidth:4608,sizes:\"376px\",src:\"https://framerusercontent.com/images/VWJHn06jAKD5deTzseGlT5fyfvk.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/VWJHn06jAKD5deTzseGlT5fyfvk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VWJHn06jAKD5deTzseGlT5fyfvk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VWJHn06jAKD5deTzseGlT5fyfvk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/VWJHn06jAKD5deTzseGlT5fyfvk.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/VWJHn06jAKD5deTzseGlT5fyfvk.jpg 4608w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:864,intrinsicWidth:1152,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2332+0+0+0+0),pixelHeight:3456,pixelWidth:4608,sizes:\"573px\",src:\"https://framerusercontent.com/images/VWJHn06jAKD5deTzseGlT5fyfvk.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/VWJHn06jAKD5deTzseGlT5fyfvk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VWJHn06jAKD5deTzseGlT5fyfvk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VWJHn06jAKD5deTzseGlT5fyfvk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/VWJHn06jAKD5deTzseGlT5fyfvk.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/VWJHn06jAKD5deTzseGlT5fyfvk.jpg 4608w\"},className:\"framer-1es8wmc\",\"data-framer-name\":\"IMGP1738 copy\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-118p6jz\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pp84u8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iBYUMTle5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2802+0+5.7955+0),pixelHeight:338,pixelWidth:600,sizes:\"374px\",src:\"https://framerusercontent.com/images/daXZ5M4hZaenIJiKKwuVIHTQYk.gif\",srcSet:\"https://framerusercontent.com/images/daXZ5M4hZaenIJiKKwuVIHTQYk.gif?scale-down-to=512 512w,https://framerusercontent.com/images/daXZ5M4hZaenIJiKKwuVIHTQYk.gif 600w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2775+0+0+0),pixelHeight:338,pixelWidth:600,sizes:\"1148px\",src:\"https://framerusercontent.com/images/daXZ5M4hZaenIJiKKwuVIHTQYk.gif\",srcSet:\"https://framerusercontent.com/images/daXZ5M4hZaenIJiKKwuVIHTQYk.gif?scale-down-to=512 512w,https://framerusercontent.com/images/daXZ5M4hZaenIJiKKwuVIHTQYk.gif 600w\"},className:\"framer-mj64a5\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a0hvz5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iBYUMTle5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2802+0+251.7814+236.3558-236.5),pixelHeight:225,pixelWidth:400,src:\"https://framerusercontent.com/images/x9FjVTueqVrVQHi9RlsjX2CQPo.gif\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2775+0+692.5+683-682.4375),pixelHeight:225,pixelWidth:400,src:\"https://framerusercontent.com/images/x9FjVTueqVrVQHi9RlsjX2CQPo.gif\"},className:\"framer-z7lqk4\",\"data-framer-name\":\"2\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bxfpmo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iBYUMTle5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2802+0+498.1372+236.7257-236.5),pixelHeight:225,pixelWidth:400,src:\"https://framerusercontent.com/images/BsRyUg9SrCxRl4iS872W1GsASQ.gif\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2775+0+1385.5+682.5-682.5),pixelHeight:225,pixelWidth:400,src:\"https://framerusercontent.com/images/BsRyUg9SrCxRl4iS872W1GsASQ.gif\"},className:\"framer-wjuu60\",\"data-framer-name\":\"3\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o5mnu6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iBYUMTle5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2802+0+744.8629+236.3558-237),pixelHeight:225,pixelWidth:400,src:\"https://framerusercontent.com/images/b9i5u9ufD4rEBmhqlU7vU0e8Q.gif\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2775+0+2078+682.5-683),pixelHeight:225,pixelWidth:400,src:\"https://framerusercontent.com/images/b9i5u9ufD4rEBmhqlU7vU0e8Q.gif\"},className:\"framer-jf6dqq\",\"data-framer-name\":\"4\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y9r2eh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iBYUMTle5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2802+0+991.2187+235.9859-235.5),pixelHeight:225,pixelWidth:400,src:\"https://framerusercontent.com/images/IqfEbnm3TZXKImGobhkdgFRg.gif\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2775+0+2770.5+683-682.4375),pixelHeight:225,pixelWidth:400,src:\"https://framerusercontent.com/images/IqfEbnm3TZXKImGobhkdgFRg.gif\"},className:\"framer-1t1rjh\",\"data-framer-name\":\"5\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v1c0gj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iBYUMTle5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2802+0+1237.2046+0),pixelHeight:225,pixelWidth:400,src:\"https://framerusercontent.com/images/MB7WkQUEsuUjXoiQobEnKoqQk.gif\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2775+0+3463.5+682.5-681.9375),pixelHeight:225,pixelWidth:400,src:\"https://framerusercontent.com/images/MB7WkQUEsuUjXoiQobEnKoqQk.gif\"},className:\"framer-1gc6kpj\",\"data-framer-name\":\"6\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ca4v4i\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iBYUMTle5:{y:(componentViewport?.y||0)+4623-329}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:329,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+7603.5-329,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16z8ul7-container\",nodeId:\"inQ4eah3A\",scopeId:\"uKpA9CLLl\",children:/*#__PURE__*/_jsx(Footer22,{height:\"100%\",id:\"inQ4eah3A\",layoutId:\"inQ4eah3A\",style:{height:\"100%\",width:\"100%\"},variant:\"viKFYXOhQ\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ahk7ym hidden-15w19nh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7QXJjaGl2by10aGlu\",\"--framer-font-family\":'\"Archivo\", sans-serif',\"--framer-font-weight\":\"100\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"CARLICLUB marks the debut of emerging artist Carli\\xe1n\"}),\", unveiled during an immersive release event at The Chill Box Brooklyn. This unique experience, crafted in collaboration with videographer Marjorie Matamoros, Carli\\xe1n, and myself, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"blended projections, installation art, and music to create an unforgettable multisensory evening.\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QXJjaGl2by10aGlu\",\"--framer-font-family\":'\"Archivo\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"100\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7QXJjaGl2by10aGlu\",\"--framer-font-family\":'\"Archivo\", sans-serif',\"--framer-font-weight\":\"100\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"I led the creation of a custom visualizer \"}),\"using TouchDesigner, seamlessly integrating visuals with the music. I also played a key role in concept development, event planning logistics, and the hands-on setup of installations,\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\" ensuring every detail aligned with the artistic vision.\"})]})]}),className:\"framer-iwmsg9\",fonts:[\"FS;Archivo-thin\",\"FS;Archivo-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7tgw9j-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BQjJzsULW\",scopeId:\"uKpA9CLLl\",children:/*#__PURE__*/_jsx(AppleMusic,{height:\"100%\",id:\"BQjJzsULW\",layoutId:\"BQjJzsULW\",style:{height:\"100%\",width:\"100%\"},url:\"https://music.apple.com/us/album/carli-club/1777337362\",urlType:\"song\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vyrex3-container hidden-15w19nh\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ANubk6C6L\",scopeId:\"uKpA9CLLl\",children:/*#__PURE__*/_jsx(Spotify,{height:\"100%\",id:\"ANubk6C6L\",layoutId:\"ANubk6C6L\",style:{height:\"100%\",width:\"100%\"},theme:1,url:\"https://open.spotify.com/album/1mLwThi5llUvjCNK96AJuA?si=n1r-_0KUSiiZHOSaiJLzuQ\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oGQQY.framer-3sg5v4, .framer-oGQQY .framer-3sg5v4 { display: block; }\",\".framer-oGQQY.framer-15w19nh { align-content: center; align-items: center; background-color: #1a1a1a; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-oGQQY .framer-hdu6n8-container { flex: none; height: 270px; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 2; }\",\".framer-oGQQY .framer-12eo2s9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 306px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oGQQY .framer-bjtvxp, .framer-oGQQY .framer-1oxrkql, .framer-oGQQY .framer-cg4ftl, .framer-oGQQY .framer-wririz { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-oGQQY .framer-1ra6gq2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 2px; flex: none; height: 58px; left: 36px; position: absolute; white-space: pre-wrap; width: 834px; word-break: break-word; word-wrap: break-word; }\",\".framer-oGQQY .framer-13fes7u { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 31px; position: absolute; top: 16px; white-space: pre; width: auto; }\",\".framer-oGQQY .framer-1rri011 { flex: none; height: 1195px; overflow: hidden; position: relative; width: 1200px; }\",\".framer-oGQQY .framer-4efrtu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 130px; flex: none; height: 383px; left: calc(50.00000000000002% - 1153px / 2); position: absolute; white-space: pre-wrap; width: 1153px; word-break: break-word; word-wrap: break-word; }\",\".framer-oGQQY .framer-1t7gl0q-container { flex: none; height: 646px; left: calc(50.416666666666686% - 1166px / 2); position: absolute; top: 12px; width: 1166px; }\",\".framer-oGQQY .framer-1os1hiq-container { bottom: 21px; flex: none; height: 109px; left: 810px; position: absolute; width: 357px; }\",\".framer-oGQQY .framer-1ljmhi3-container { bottom: 21px; flex: none; height: 80px; left: 33px; position: absolute; width: 300px; }\",\".framer-oGQQY .framer-2may7h { flex: none; height: 831px; overflow: hidden; position: relative; width: 1200px; }\",\".framer-oGQQY .framer-w2evy8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 821px; justify-content: center; left: 22px; overflow: hidden; padding: 0px; position: absolute; right: 26px; top: 0px; }\",\".framer-oGQQY .framer-yqy0uq, .framer-oGQQY .framer-lg3htd { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-oGQQY .framer-j1356u { bottom: 0px; flex: none; left: 0px; position: absolute; right: -1px; top: 0px; }\",\".framer-oGQQY .framer-1qwt5at { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-oGQQY .framer-1fthvx8 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-oGQQY .framer-ecekog { aspect-ratio: 1.3333333333333333 / 1; bottom: -22px; flex: none; height: var(--framer-aspect-ratio-supported, 428px); left: 0px; overflow: visible; position: absolute; right: 0px; }\",\".framer-oGQQY .framer-1waxus6 { flex: none; height: 443px; overflow: hidden; position: relative; width: 1200px; }\",\".framer-oGQQY .framer-1w5s74s { display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 443px; justify-content: center; left: calc(49.83333333333336% - 1152px / 2); overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 1152px; }\",\".framer-oGQQY .framer-1kjnuvd { align-self: start; flex: none; height: 431px; justify-self: start; position: relative; width: 571px; }\",\".framer-oGQQY .framer-kr1o7a { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 430px); left: 0px; overflow: visible; position: absolute; right: -1px; top: 0px; }\",\".framer-oGQQY .framer-ukqhv6 { align-self: start; flex: none; height: 431px; justify-self: start; position: relative; width: 100%; }\",\".framer-oGQQY .framer-1es8wmc { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 430px); left: 0px; overflow: visible; position: absolute; right: -2px; top: 0px; }\",\".framer-oGQQY .framer-118p6jz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 4146px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1149px; }\",\".framer-oGQQY .framer-1pp84u8, .framer-oGQQY .framer-1a0hvz5, .framer-oGQQY .framer-1bxfpmo, .framer-oGQQY .framer-o5mnu6, .framer-oGQQY .framer-1y9r2eh, .framer-oGQQY .framer-1v1c0gj, .framer-oGQQY .framer-ca4v4i { flex: none; height: 683px; position: relative; width: 1149px; }\",\".framer-oGQQY .framer-mj64a5 { bottom: 0px; flex: none; left: 0px; position: absolute; top: 0px; width: 1148px; }\",\".framer-oGQQY .framer-z7lqk4, .framer-oGQQY .framer-1t1rjh { aspect-ratio: 1.7777777777777777 / 1; bottom: -1px; flex: none; height: var(--framer-aspect-ratio-supported, 683px); left: -32px; overflow: visible; position: absolute; right: -33px; }\",\".framer-oGQQY .framer-wjuu60 { aspect-ratio: 1.7777777777777777 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 683px); left: -32px; overflow: visible; position: absolute; right: -32px; }\",\".framer-oGQQY .framer-jf6dqq { aspect-ratio: 1.7777777777777777 / 1; bottom: -1px; flex: none; height: var(--framer-aspect-ratio-supported, 684px); left: -33px; overflow: visible; position: absolute; right: -34px; }\",\".framer-oGQQY .framer-1gc6kpj { aspect-ratio: 1.7777777777777777 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 682px); left: -31px; overflow: visible; position: absolute; right: -32px; }\",\".framer-oGQQY .framer-16z8ul7-container { bottom: 0px; flex: none; height: 329px; left: calc(50.00000000000002% - 100% / 2); position: absolute; width: 100%; z-index: 1; }\",\".framer-oGQQY .framer-1ahk7ym { flex: none; height: 505px; overflow: hidden; position: relative; width: 395px; }\",\".framer-oGQQY .framer-iwmsg9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 284px; left: calc(50.12658227848104% - 373px / 2); position: absolute; top: 8px; white-space: pre-wrap; width: 373px; word-break: break-word; word-wrap: break-word; }\",\".framer-oGQQY .framer-7tgw9j-container { bottom: 17px; flex: none; height: 101px; left: 91px; position: absolute; width: 291px; }\",\".framer-oGQQY .framer-1vyrex3-container { bottom: 135px; flex: none; height: 78px; left: 10px; position: absolute; width: 300px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oGQQY.framer-15w19nh, .framer-oGQQY .framer-12eo2s9, .framer-oGQQY .framer-w2evy8, .framer-oGQQY .framer-1qwt5at, .framer-oGQQY .framer-118p6jz { gap: 0px; } .framer-oGQQY.framer-15w19nh > *, .framer-oGQQY .framer-12eo2s9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-oGQQY.framer-15w19nh > :first-child, .framer-oGQQY .framer-12eo2s9 > :first-child, .framer-oGQQY .framer-1qwt5at > :first-child, .framer-oGQQY .framer-118p6jz > :first-child { margin-top: 0px; } .framer-oGQQY.framer-15w19nh > :last-child, .framer-oGQQY .framer-12eo2s9 > :last-child, .framer-oGQQY .framer-1qwt5at > :last-child, .framer-oGQQY .framer-118p6jz > :last-child { margin-bottom: 0px; } .framer-oGQQY .framer-w2evy8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oGQQY .framer-w2evy8 > :first-child { margin-left: 0px; } .framer-oGQQY .framer-w2evy8 > :last-child { margin-right: 0px; } .framer-oGQQY .framer-1qwt5at > *, .framer-oGQQY .framer-118p6jz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\"@media (max-width: 1199px) { .framer-oGQQY.framer-15w19nh { height: 4623px; width: 390px; } .framer-oGQQY .framer-hdu6n8-container { order: 0; } .framer-oGQQY .framer-12eo2s9 { height: 245px; order: 1; } .framer-oGQQY .framer-1oxrkql { width: 390px; } .framer-oGQQY .framer-1ra6gq2 { bottom: unset; height: 29px; left: 18px; top: calc(53.87755102040819% - 29px / 2); width: 216px; } .framer-oGQQY .framer-13fes7u { left: 13px; top: 13px; } .framer-oGQQY .framer-1rri011 { height: 221px; order: 2; width: 387px; } .framer-oGQQY .framer-1t7gl0q-container { height: 210px; left: calc(50.129198966408296% - 380px / 2); top: calc(50.66079295154188% - 210px / 2); width: 380px; } .framer-oGQQY .framer-2may7h { height: 1256px; order: 4; width: 419px; } .framer-oGQQY .framer-w2evy8 { flex-direction: column; height: 1247px; } .framer-oGQQY .framer-yqy0uq, .framer-oGQQY .framer-lg3htd { height: 1px; width: 100%; } .framer-oGQQY .framer-j1356u { bottom: -1px; left: -1px; right: 0px; } .framer-oGQQY .framer-1fthvx8 { bottom: 0px; left: -1px; right: -1px; } .framer-oGQQY .framer-ecekog { bottom: unset; height: var(--framer-aspect-ratio-supported, 305px); left: -18px; right: -18px; top: 0px; } .framer-oGQQY .framer-1waxus6 { height: 575px; order: 5; width: 383px; } .framer-oGQQY .framer-1w5s74s { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: 569px; left: calc(50.00000000000002% - 374px / 2); width: 374px; } .framer-oGQQY .framer-1kjnuvd, .framer-oGQQY .framer-ukqhv6 { align-self: unset; } .framer-oGQQY .framer-kr1o7a { bottom: 1px; height: var(--framer-aspect-ratio-supported, 279px); left: 50%; right: unset; top: unset; transform: translateX(-50%); width: 372px; } .framer-oGQQY .framer-1es8wmc { height: var(--framer-aspect-ratio-supported, 282px); } .framer-oGQQY .framer-118p6jz { height: 1479px; order: 6; width: 373px; } .framer-oGQQY .framer-1pp84u8, .framer-oGQQY .framer-1a0hvz5, .framer-oGQQY .framer-o5mnu6, .framer-oGQQY .framer-1y9r2eh, .framer-oGQQY .framer-1v1c0gj { height: 236px; width: 373px; } .framer-oGQQY .framer-mj64a5 { bottom: 0px; left: 0px; right: 0px; width: unset; } .framer-oGQQY .framer-z7lqk4 { bottom: 0px; height: var(--framer-aspect-ratio-supported, 237px); left: -23px; right: -24px; } .framer-oGQQY .framer-1bxfpmo { height: 237px; width: 373px; } .framer-oGQQY .framer-wjuu60 { height: var(--framer-aspect-ratio-supported, 237px); left: -24px; right: -24px; } .framer-oGQQY .framer-jf6dqq { height: var(--framer-aspect-ratio-supported, 238px); left: -24px; right: -25px; } .framer-oGQQY .framer-1t1rjh { bottom: 0px; height: var(--framer-aspect-ratio-supported, 236px); left: -22px; right: -23px; } .framer-oGQQY .framer-1gc6kpj { bottom: unset; height: var(--framer-aspect-ratio-supported, 237px); left: -23px; right: -24px; top: 0px; } .framer-oGQQY .framer-ca4v4i { height: 236px; order: 7; width: 373px; } .framer-oGQQY .framer-16z8ul7-container { order: 8; } .framer-oGQQY .framer-1ahk7ym { order: 3; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oGQQY .framer-w2evy8, .framer-oGQQY .framer-1w5s74s { gap: 0px; } .framer-oGQQY .framer-w2evy8 > *, .framer-oGQQY .framer-1w5s74s > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-oGQQY .framer-w2evy8 > :first-child, .framer-oGQQY .framer-1w5s74s > :first-child { margin-top: 0px; } .framer-oGQQY .framer-w2evy8 > :last-child, .framer-oGQQY .framer-1w5s74s > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7603.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"iBYUMTle5\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameruKpA9CLLl=withCSS(Component,css,\"framer-oGQQY\");export default FrameruKpA9CLLl;FrameruKpA9CLLl.displayName=\"Page\";FrameruKpA9CLLl.defaultProps={height:7603.5,width:1200};addFonts(FrameruKpA9CLLl,[{explicitInter:true,fonts:[{family:\"Inter Display\",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/2uIBiALfCHVpWbHqRMZutfT7giU.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Zwfz6xbVe5pmcWRJRgBDHnMkOkI.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/U9LaDDmbRhzX3sB8g8glTy5feTE.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tVew2LzXJ1t7QfxP1gdTIdj2o0g.woff2\",weight:\"400\"},{family:\"Inter Display\",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/DF7bjCRmStYPqSb945lAlMfCCVQ.woff2\",weight:\"400\"},{family:\"Inter Display\",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/nCpxWS6DaPlPe0lHzStXAPCo3lw.woff2\",weight:\"400\"},{family:\"Inter Display\",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/vebZUMjGyKkYsfcY73iwWTzLNag.woff2\",weight:\"400\"},{family:\"Inter Display\",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/I11LrmuBDQZweplJ62KkVsklU5Y.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/UjFZPDy3qGuDktQM4q9CxhKfIa8.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/8exwVHJy2DhJ4N5prYlVMrEKmQ.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/UTeedEK21hO5jDxEUldzdScUqpg.woff2\",weight:\"700\"},{family:\"Inter Display\",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/Ig8B8nzy11hzIWEIYnkg91sofjo.woff2\",weight:\"700\"},{family:\"Inter Display\",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/n9CXKI3tsmCPeC6MCT9NziShSuQ.woff2\",weight:\"700\"},{family:\"Inter Display\",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/qctQFoJqJ9aIbRSIp0AhCQpFxn8.woff2\",weight:\"700\"},{family:\"Archivo\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MIPBQXG4KW44HXS6P5SUQD3ALIMF4HRQ/25BHYXP3F3CZD2EVIYPF5HUWHUNKSOZN/SO3MAVGTIMF3Q6QXQJC65GPZFHMZR7LD.woff2\",weight:\"100\"},{family:\"Archivo\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/YSKLU24545WP65XCD7ZVOFPD6AKR3JSM/SPF276V6UKGPA6W5ZNFTEWBJXRSQNXCR/7BTLO3ZVFMNDGT63YATXTEALTKTYZUZG.woff2\",weight:\"400\"}]},...Header2Fonts,...YouTubeFonts,...AppleMusicFonts,...SpotifyFonts,...Footer22Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruKpA9CLLl\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicHeight\":\"7603.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iBYUMTle5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["emptyStateStyle", "containerStyles", "neutralStateStyle", "stateTitleStyle", "stateParagraphStyle", "musicRegex", "AppleMusic", "urlType", "url", "style", "props", "embedUrl", "se", "ref", "country", "type", "id", "songId", "p", "motion", "containerStyles", "u", "emptyStateStyle", "stateTitleStyle", "stateParagraphStyle", "addPropertyControls", "ControlType", "urlRegex", "Spotify", "props", "theme", "sourceUrl", "identifier", "te", "strippedUrl", "url", "p", "addPropertyControls", "ControlType", "Header2Fonts", "getFonts", "j_rhU5Jpu_default", "RichTextWithFX", "withFX", "RichText2", "YouTubeFonts", "Youtube", "ContainerWithFX", "Container", "AppleMusicFonts", "AppleMusic", "SpotifyFonts", "Spotify", "ImageWithFX", "Image2", "Footer22Fonts", "dDiossSC0_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transformTemplate1", "_", "t", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "PropertyOverrides2", "x", "getLoadingLazyAtYPosition", "css", "FrameruKpA9CLLl", "withCSS", "uKpA9CLLl_default", "addFonts", "__FramerMetadata__"]
}
