{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/ww5shImRaov0I7Rs4keG/8qI8a392ZY8fdBA74kcC/YJnC3QxUx.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (c76752e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import BlurGradient from\"https://framerusercontent.com/modules/rofp3mS0LNY15cjhHzia/mqQEarGIByho1rG31aTv/BlurGradient_Prod.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import FooterFooter from\"#framer/local/canvasComponent/EqdmMqxtb/EqdmMqxtb.js\";import SidebarSidebar from\"#framer/local/canvasComponent/f8fmJL7d2/f8fmJL7d2.js\";import ButtonsGhostButton from\"#framer/local/canvasComponent/YSwNO2Dkh/YSwNO2Dkh.js\";import Projects from\"#framer/local/collection/kJHR6GhX0/kJHR6GhX0.js\";import*as sharedStyle1 from\"#framer/local/css/ahm3pOaL5/ahm3pOaL5.js\";import*as sharedStyle from\"#framer/local/css/Iep1EDEr3/Iep1EDEr3.js\";import*as sharedStyle2 from\"#framer/local/css/Q8WG_OtZB/Q8WG_OtZB.js\";import metadataProvider from\"#framer/local/webPageMetadata/YJnC3QxUx/YJnC3QxUx.js\";const ButtonsGhostButtonFonts=getFonts(ButtonsGhostButton);const PhosphorFonts=getFonts(Phosphor);const YouTubeFonts=getFonts(YouTube);const FooterFooterFonts=getFonts(FooterFooter);const BlurGradientFonts=getFonts(BlurGradient);const SidebarSidebarFonts=getFonts(SidebarSidebar);const breakpoints={kBqOfCCgD:\"(min-width: 810px) and (max-width: 999px)\",QoqUu_ji6:\"(max-width: 809px)\",zl34eBEEp:\"(min-width: 1000px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-TpMTJ\";const variantClassNames={kBqOfCCgD:\"framer-v-18fukn1\",QoqUu_ji6:\"framer-v-z6ve61\",zl34eBEEp:\"framer-v-1nz6n6a\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"zl34eBEEp\",Phone:\"QoqUu_ji6\",Tablet:\"kBqOfCCgD\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"zl34eBEEp\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"YJnC3QxUx\",data:Projects,type:\"Collection\"},select:[{collection:\"YJnC3QxUx\",name:\"UaDQYuI1S\",type:\"Identifier\"},{collection:\"YJnC3QxUx\",name:\"D1UpQbgTI\",type:\"Identifier\"},{collection:\"YJnC3QxUx\",name:\"aM9ZnZ47P\",type:\"Identifier\"},{collection:\"YJnC3QxUx\",name:\"jLAs7vwlR\",type:\"Identifier\"},{collection:\"YJnC3QxUx\",name:\"LiKpZLclc\",type:\"Identifier\"},{collection:\"YJnC3QxUx\",name:\"p1QPlKHS8\",type:\"Identifier\"},{collection:\"YJnC3QxUx\",name:\"PsTNAd4zP\",type:\"Identifier\"},{collection:\"YJnC3QxUx\",name:\"vsbO5Irjv\",type:\"Identifier\"},{collection:\"YJnC3QxUx\",name:\"MJRtfnspD\",type:\"Identifier\"},{collection:\"YJnC3QxUx\",name:\"WflE8OPq7\",type:\"Identifier\"},{collection:\"YJnC3QxUx\",name:\"OlAz5SVoD\",type:\"Identifier\"},{collection:\"YJnC3QxUx\",name:\"g78Y8NaOK\",type:\"Identifier\"},{collection:\"YJnC3QxUx\",name:\"b3CiJ6eUC\",type:\"Identifier\"},{collection:\"YJnC3QxUx\",name:\"pHkWCSn19\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"YJnC3QxUx\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,UaDQYuI1S=getFromCurrentRouteData(\"UaDQYuI1S\")??\"\",jLAs7vwlR=getFromCurrentRouteData(\"jLAs7vwlR\")??\"\",LiKpZLclc=getFromCurrentRouteData(\"LiKpZLclc\")??\"\",b3CiJ6eUC=getFromCurrentRouteData(\"b3CiJ6eUC\")??true,pHkWCSn19=getFromCurrentRouteData(\"pHkWCSn19\")??\"\",p1QPlKHS8=getFromCurrentRouteData(\"p1QPlKHS8\"),D1UpQbgTI=getFromCurrentRouteData(\"D1UpQbgTI\")??\"\",aM9ZnZ47P=getFromCurrentRouteData(\"aM9ZnZ47P\")??\"\",PsTNAd4zP=getFromCurrentRouteData(\"PsTNAd4zP\"),vsbO5Irjv=getFromCurrentRouteData(\"vsbO5Irjv\"),MJRtfnspD=getFromCurrentRouteData(\"MJRtfnspD\"),WflE8OPq7=getFromCurrentRouteData(\"WflE8OPq7\"),OlAz5SVoD=getFromCurrentRouteData(\"OlAz5SVoD\"),g78Y8NaOK=getFromCurrentRouteData(\"g78Y8NaOK\"),...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,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);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const router=useRouter();const visible=isSet(p1QPlKHS8);const visible1=isSet(PsTNAd4zP);const visible2=isSet(vsbO5Irjv);const visible3=isSet(MJRtfnspD);const visible4=isSet(WflE8OPq7);const visible5=isSet(OlAz5SVoD);const visible6=isSet(g78Y8NaOK);const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"zl34eBEEp\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-b0c7e84c-eca2-463f-a912-cabe53d68556, rgb(20, 20, 20)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1nz6n6a\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s7xrur\",\"data-framer-name\":\"Main Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16nszzg\",\"data-border\":true,\"data-framer-name\":\"Blog\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e9b2pm\",\"data-border\":true,\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-glq94t\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PH_lC85EF\"},implicitPathVariables:undefined},{href:{webPageId:\"PH_lC85EF\"},implicitPathVariables:undefined},{href:{webPageId:\"PH_lC85EF\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kBqOfCCgD:{y:(componentViewport?.y||0)+56+0+0+0+0+0+72+0+0+0},QoqUu_ji6:{y:(componentViewport?.y||0)+56+0+0+0+0+0+72+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+0+0+0+0+72+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13azmo9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kBqOfCCgD:{Ag43iCsF0:resolvedLinks[2]},QoqUu_ji6:{Ag43iCsF0:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonsGhostButton,{Ag43iCsF0:resolvedLinks[0],height:\"100%\",id:\"juPL1tZ95\",layoutId:\"juPL1tZ95\",TbVnm4HEv:\"Back\",variant:\"SkxiOZR3H\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pacuu8\",\"data-framer-name\":\"Details\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1kspjcm\",\"data-styles-preset\":\"Iep1EDEr3\",style:{\"--framer-text-color\":\"var(--token-4e5eb255-10e3-4d3b-b934-00fa641d10c5, rgb(255, 255, 255))\"},children:\"Recent projects\"})}),className:\"framer-17nmb2a\",fonts:[\"Inter\"],text:UaDQYuI1S,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3gusi9\",\"data-framer-name\":\"Chips\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xmpr5p\",\"data-framer-name\":\"Badge\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dpizdc-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-233bcba9-ec2b-45cc-abd9-6dfebbbb3c19, rgba(255, 255, 255, 0.5))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Users\",id:\"F3x27yRP5\",layoutId:\"F3x27yRP5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kBqOfCCgD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-t2spvc\",\"data-styles-preset\":\"ahm3pOaL5\",style:{\"--framer-text-color\":\"var(--token-233bcba9-ec2b-45cc-abd9-6dfebbbb3c19, rgba(255, 255, 255, 0.5))\"},children:\"Personal Project\"})}),text:undefined},QoqUu_ji6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-t2spvc\",\"data-styles-preset\":\"ahm3pOaL5\",style:{\"--framer-text-color\":\"var(--token-233bcba9-ec2b-45cc-abd9-6dfebbbb3c19, rgba(255, 255, 255, 0.5))\"},children:\"Personal Project\"})}),text:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-t2spvc\",\"data-styles-preset\":\"ahm3pOaL5\",style:{\"--framer-text-color\":\"var(--token-233bcba9-ec2b-45cc-abd9-6dfebbbb3c19, rgba(255, 255, 255, 0.5))\"},children:\"Apex Inc.\"})}),className:\"framer-b1euef\",fonts:[\"Inter\"],text:jLAs7vwlR,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-159kn02\",\"data-framer-name\":\"Badge\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tb92nh-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-233bcba9-ec2b-45cc-abd9-6dfebbbb3c19, rgba(255, 255, 255, 0.5))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CalendarBlank\",id:\"Isf6zsmpy\",layoutId:\"Isf6zsmpy\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kBqOfCCgD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-t2spvc\",\"data-styles-preset\":\"ahm3pOaL5\",style:{\"--framer-text-color\":\"var(--token-233bcba9-ec2b-45cc-abd9-6dfebbbb3c19, rgba(255, 255, 255, 0.5))\"},children:\"2025\"})}),text:undefined},QoqUu_ji6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-t2spvc\",\"data-styles-preset\":\"ahm3pOaL5\",style:{\"--framer-text-color\":\"var(--token-233bcba9-ec2b-45cc-abd9-6dfebbbb3c19, rgba(255, 255, 255, 0.5))\"},children:\"2025\"})}),text:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-t2spvc\",\"data-styles-preset\":\"ahm3pOaL5\",style:{\"--framer-text-color\":\"var(--token-233bcba9-ec2b-45cc-abd9-6dfebbbb3c19, rgba(255, 255, 255, 0.5))\"},children:\"Apex Inc.\"})}),className:\"framer-1irjksz\",fonts:[\"Inter\"],text:LiKpZLclc,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]}),b3CiJ6eUC&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14pw27b-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:5,bottomLeftRadius:5,bottomRightRadius:5,height:\"100%\",id:\"zFAwWeNsk\",isMixedBorderRadius:false,isRed:true,layoutId:\"zFAwWeNsk\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:5,topRightRadius:5,url:pHkWCSn19,width:\"100%\"})})}),visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kBqOfCCgD:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+56+0+0+0+0+0+72+625.65),sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,...toResponsiveImage(p1QPlKHS8),...{positionX:\"center\",positionY:\"center\"}}},QoqUu_ji6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+56+0+0+0+0+0+72+617.65),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 800px) - 40px)`,...toResponsiveImage(p1QPlKHS8),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+72+633.65),sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 260px, 1px), 800px) - 96px)`,...toResponsiveImage(p1QPlKHS8),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1935qih\",\"data-framer-name\":\"Cover Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ro4lmd\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qffz5i\",\"data-framer-name\":\"Overview\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kwfs0a\",\"data-styles-preset\":\"Q8WG_OtZB\",children:\"Introduction\"})}),className:\"framer-ohrszz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1kwfs0a\",\"data-styles-preset\":\"Q8WG_OtZB\",style:{\"--framer-text-color\":\"var(--token-4e5eb255-10e3-4d3b-b934-00fa641d10c5, rgb(255, 255, 255))\"},children:[\"Hey, I'm Brian. I'm a designer, \",/*#__PURE__*/_jsx(Link,{href:\"https://github.com/brianlovin\",motionChild:true,nodeId:\"JZ6R_CFRM\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"software engineer\"})}),\", \",/*#__PURE__*/_jsx(Link,{href:\"https://designdetails.fm/\",motionChild:true,nodeId:\"JZ6R_CFRM\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"podcaster\"})}),\", and \",/*#__PURE__*/_jsx(Link,{href:\"https://brianlovin.com/writing\",motionChild:true,nodeId:\"JZ6R_CFRM\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"writer\"})}),\". I'm currently building \",/*#__PURE__*/_jsx(Link,{href:\"https://campsite.co/\",motionChild:true,nodeId:\"JZ6R_CFRM\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Campsite\"})}),\", an app that brings together a team\u2019s posts, calls, notes, and chat.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kwfs0a\",\"data-styles-preset\":\"Q8WG_OtZB\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1kwfs0a\",\"data-styles-preset\":\"Q8WG_OtZB\",style:{\"--framer-text-color\":\"var(--token-4e5eb255-10e3-4d3b-b934-00fa641d10c5, rgb(255, 255, 255))\"},children:[\"Before Campsite, I spent four years designing \",/*#__PURE__*/_jsx(Link,{href:\"https://github.com/mobile\",motionChild:true,nodeId:\"JZ6R_CFRM\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"native mobile apps at GitHub\"})}),\".\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1kwfs0a\",\"data-styles-preset\":\"Q8WG_OtZB\",style:{\"--framer-text-color\":\"var(--token-4e5eb255-10e3-4d3b-b934-00fa641d10c5, rgb(255, 255, 255))\"},children:[\"Before GitHub, I co-founded \",/*#__PURE__*/_jsx(Link,{href:\"https://spectrum.chat/\",motionChild:true,nodeId:\"JZ6R_CFRM\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Spectrum\"})}),\", a platform for large-scale communities to have better public conversations. Spectrum was acquired by GitHub in November, 2018.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kwfs0a\",\"data-styles-preset\":\"Q8WG_OtZB\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1kwfs0a\",\"data-styles-preset\":\"Q8WG_OtZB\",style:{\"--framer-text-color\":\"var(--token-4e5eb255-10e3-4d3b-b934-00fa641d10c5, rgb(255, 255, 255))\"},children:[\"Before Spectrum I designed payments experiences at Facebook, working across Facebook, Messenger, WhatsApp, and Instagram. I originally cut my teeth as the first product designer at \",/*#__PURE__*/_jsx(Link,{href:\"https://buffer.com/\",motionChild:true,nodeId:\"JZ6R_CFRM\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Buffer\"})}),\".\"]})]}),className:\"framer-1wkt2vz\",fonts:[\"Inter\"],text:D1UpQbgTI,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zczqb2\",\"data-framer-name\":\"Results\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kwfs0a\",\"data-styles-preset\":\"Q8WG_OtZB\",children:\"Description\"})}),className:\"framer-s377ln\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1kwfs0a\",\"data-styles-preset\":\"Q8WG_OtZB\",style:{\"--framer-text-color\":\"var(--token-4e5eb255-10e3-4d3b-b934-00fa641d10c5, rgb(255, 255, 255))\"},children:[\"Hey, I'm Brian. I'm a designer, \",/*#__PURE__*/_jsx(Link,{href:\"https://github.com/brianlovin\",motionChild:true,nodeId:\"eLAHjGiyZ\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"software engineer\"})}),\", \",/*#__PURE__*/_jsx(Link,{href:\"https://designdetails.fm/\",motionChild:true,nodeId:\"eLAHjGiyZ\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"podcaster\"})}),\", and \",/*#__PURE__*/_jsx(Link,{href:\"https://brianlovin.com/writing\",motionChild:true,nodeId:\"eLAHjGiyZ\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"writer\"})}),\". I'm currently building \",/*#__PURE__*/_jsx(Link,{href:\"https://campsite.co/\",motionChild:true,nodeId:\"eLAHjGiyZ\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Campsite\"})}),\", an app that brings together a team\u2019s posts, calls, notes, and chat.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kwfs0a\",\"data-styles-preset\":\"Q8WG_OtZB\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1kwfs0a\",\"data-styles-preset\":\"Q8WG_OtZB\",style:{\"--framer-text-color\":\"var(--token-4e5eb255-10e3-4d3b-b934-00fa641d10c5, rgb(255, 255, 255))\"},children:[\"Before Campsite, I spent four years designing \",/*#__PURE__*/_jsx(Link,{href:\"https://github.com/mobile\",motionChild:true,nodeId:\"eLAHjGiyZ\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"native mobile apps at GitHub\"})}),\".\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1kwfs0a\",\"data-styles-preset\":\"Q8WG_OtZB\",style:{\"--framer-text-color\":\"var(--token-4e5eb255-10e3-4d3b-b934-00fa641d10c5, rgb(255, 255, 255))\"},children:[\"Before GitHub, I co-founded \",/*#__PURE__*/_jsx(Link,{href:\"https://spectrum.chat/\",motionChild:true,nodeId:\"eLAHjGiyZ\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Spectrum\"})}),\", a platform for large-scale communities to have better public conversations. Spectrum was acquired by GitHub in November, 2018.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kwfs0a\",\"data-styles-preset\":\"Q8WG_OtZB\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1kwfs0a\",\"data-styles-preset\":\"Q8WG_OtZB\",style:{\"--framer-text-color\":\"var(--token-4e5eb255-10e3-4d3b-b934-00fa641d10c5, rgb(255, 255, 255))\"},children:[\"Before Spectrum I designed payments experiences at Facebook, working across Facebook, Messenger, WhatsApp, and Instagram. I originally cut my teeth as the first product designer at \",/*#__PURE__*/_jsx(Link,{href:\"https://buffer.com/\",motionChild:true,nodeId:\"eLAHjGiyZ\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Buffer\"})}),\".\"]})]}),className:\"framer-17x3f01\",fonts:[\"Inter\"],text:aM9ZnZ47P,verticalAlignment:\"top\",withExternalLayout:true})]})]}),visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kBqOfCCgD:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+56+0+0+0+0+0+72+1862.65),sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,...toResponsiveImage(PsTNAd4zP),...{positionX:\"center\",positionY:\"center\"}}},QoqUu_ji6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+56+0+0+0+0+0+72+1846.65),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 800px) - 40px)`,...toResponsiveImage(PsTNAd4zP),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+72+1878.65),sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 260px, 1px), 800px) - 96px)`,...toResponsiveImage(PsTNAd4zP),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-tvh41j\",\"data-framer-name\":\"Image 01\"})}),visible2&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kBqOfCCgD:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+56+0+0+0+0+0+72+2379.65),sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,...toResponsiveImage(vsbO5Irjv),...{positionX:\"center\",positionY:\"center\"}}},QoqUu_ji6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+56+0+0+0+0+0+72+2359.65),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 800px) - 40px)`,...toResponsiveImage(vsbO5Irjv),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+72+2399.65),sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 260px, 1px), 800px) - 96px)`,...toResponsiveImage(vsbO5Irjv),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1alth5z\",\"data-framer-name\":\"Image 02\"})}),visible3&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kBqOfCCgD:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+56+0+0+0+0+0+72+2896.65),sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,...toResponsiveImage(MJRtfnspD),...{positionX:\"center\",positionY:\"center\"}}},QoqUu_ji6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+56+0+0+0+0+0+72+2872.65),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 800px) - 40px)`,...toResponsiveImage(MJRtfnspD),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+72+2920.65),sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 260px, 1px), 800px) - 96px)`,...toResponsiveImage(MJRtfnspD),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-7khtph\",\"data-framer-name\":\"Image 03\"})}),visible4&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kBqOfCCgD:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+56+0+0+0+0+0+72+3413.65),sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,...toResponsiveImage(WflE8OPq7),...{positionX:\"center\",positionY:\"center\"}}},QoqUu_ji6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+56+0+0+0+0+0+72+3385.65),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 800px) - 40px)`,...toResponsiveImage(WflE8OPq7),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+72+3441.65),sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 260px, 1px), 800px) - 96px)`,...toResponsiveImage(WflE8OPq7),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-lmatxh\",\"data-framer-name\":\"Image 04\"})}),visible5&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kBqOfCCgD:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+56+0+0+0+0+0+72+3930.65),sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,...toResponsiveImage(OlAz5SVoD),...{positionX:\"center\",positionY:\"center\"}}},QoqUu_ji6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+56+0+0+0+0+0+72+3898.65),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 800px) - 40px)`,...toResponsiveImage(OlAz5SVoD),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+72+3962.65),sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 260px, 1px), 800px) - 96px)`,...toResponsiveImage(OlAz5SVoD),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1xpliuh\",\"data-framer-name\":\"Image 05\"})}),visible6&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kBqOfCCgD:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+56+0+0+0+0+0+72+4447.65),sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,...toResponsiveImage(g78Y8NaOK),...{positionX:\"center\",positionY:\"center\"}}},QoqUu_ji6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+56+0+0+0+0+0+72+4411.65),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 800px) - 40px)`,...toResponsiveImage(g78Y8NaOK),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+72+4483.65),sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 260px, 1px), 800px) - 96px)`,...toResponsiveImage(g78Y8NaOK),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-tvg325\",\"data-framer-name\":\"Image 06\"})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kBqOfCCgD:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+56+0+0+3497.65},QoqUu_ji6:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+56+0+0+3473.65}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:383,width:`max(${componentViewport?.width||\"100vw\"} - 260px, 1px)`,y:(componentViewport?.y||0)+0+0+3553.65,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d0lziu-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kBqOfCCgD:{variant:\"pdLSU6hXY\"},QoqUu_ji6:{variant:\"pdLSU6hXY\"}},children:/*#__PURE__*/_jsx(FooterFooter,{height:\"100%\",id:\"jc2DzO1jH\",layoutId:\"jc2DzO1jH\",style:{width:\"100%\"},variant:\"H_C7xA_ZW\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v4ngcd-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(BlurGradient,{blur:16,borderRadius:\"0px\",direction:\"to bottom\",height:\"100%\",id:\"J11eBnBNA\",layoutId:\"J11eBnBNA\",style:{height:\"100%\",width:\"100%\"},transition:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kBqOfCCgD:{height:800,width:\"100vw\"},QoqUu_ji6:{height:800,width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"260px\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-58x4d7-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kBqOfCCgD:{style:{width:\"100%\"},variant:\"XdaME5_A4\"},QoqUu_ji6:{style:{width:\"100%\"},variant:\"g4RPekUs_\"}},children:/*#__PURE__*/_jsx(SidebarSidebar,{height:\"100%\",id:\"N5rvt29eN\",layoutId:\"N5rvt29eN\",style:{height:\"100%\",width:\"100%\"},variant:\"L1YQeZNrT\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TpMTJ.framer-1xt697s, .framer-TpMTJ .framer-1xt697s { display: block; }\",\".framer-TpMTJ.framer-1nz6n6a { align-content: center; align-items: center; background-color: var(--token-b0c7e84c-eca2-463f-a912-cabe53d68556, #141414); display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 260px; position: relative; width: 1000px; }\",\".framer-TpMTJ .framer-1s7xrur { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-TpMTJ .framer-16nszzg { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.08); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TpMTJ .framer-1e9b2pm { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: dashed; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: visible; padding: 72px 48px 72px 48px; position: relative; width: 100%; }\",\".framer-TpMTJ .framer-glq94t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TpMTJ .framer-13azmo9-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-TpMTJ .framer-pacuu8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TpMTJ .framer-17nmb2a { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TpMTJ .framer-3gusi9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TpMTJ .framer-1xmpr5p, .framer-TpMTJ .framer-159kn02 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-TpMTJ .framer-1dpizdc-container, .framer-TpMTJ .framer-tb92nh-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-TpMTJ .framer-b1euef, .framer-TpMTJ .framer-1irjksz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TpMTJ .framer-14pw27b-container { flex: none; height: 443px; position: relative; width: 100%; }\",\".framer-TpMTJ .framer-1935qih { aspect-ratio: 1.4545454545454546 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 442px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-TpMTJ .framer-ro4lmd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px 0px 36px 0px; position: relative; width: 100%; }\",\".framer-TpMTJ .framer-qffz5i, .framer-TpMTJ .framer-zczqb2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TpMTJ .framer-ohrszz, .framer-TpMTJ .framer-s377ln { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-TpMTJ .framer-1wkt2vz, .framer-TpMTJ .framer-17x3f01 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 480px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TpMTJ .framer-tvh41j, .framer-TpMTJ .framer-1alth5z, .framer-TpMTJ .framer-7khtph { aspect-ratio: 1.4545454545454546 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 443px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-TpMTJ .framer-lmatxh, .framer-TpMTJ .framer-1xpliuh, .framer-TpMTJ .framer-tvg325 { aspect-ratio: 1.4545454545454546 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 138px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-TpMTJ .framer-1d0lziu-container { flex: none; height: auto; position: relative; width: 100%; z-index: 10; }\",\".framer-TpMTJ .framer-1v4ngcd-container { bottom: 0px; flex: none; height: 156px; left: 0px; pointer-events: none; position: fixed; right: 0px; z-index: 2; }\",\".framer-TpMTJ .framer-58x4d7-container { flex: none; height: 100vh; left: 0px; position: fixed; top: 0px; width: 260px; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-TpMTJ.framer-1nz6n6a, .framer-TpMTJ .framer-1s7xrur, .framer-TpMTJ .framer-16nszzg, .framer-TpMTJ .framer-1e9b2pm, .framer-TpMTJ .framer-glq94t, .framer-TpMTJ .framer-pacuu8, .framer-TpMTJ .framer-3gusi9, .framer-TpMTJ .framer-1xmpr5p, .framer-TpMTJ .framer-159kn02, .framer-TpMTJ .framer-ro4lmd, .framer-TpMTJ .framer-qffz5i, .framer-TpMTJ .framer-zczqb2 { gap: 0px; } .framer-TpMTJ.framer-1nz6n6a > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-TpMTJ.framer-1nz6n6a > :first-child, .framer-TpMTJ .framer-3gusi9 > :first-child, .framer-TpMTJ .framer-1xmpr5p > :first-child, .framer-TpMTJ .framer-159kn02 > :first-child { margin-left: 0px; } .framer-TpMTJ.framer-1nz6n6a > :last-child, .framer-TpMTJ .framer-3gusi9 > :last-child, .framer-TpMTJ .framer-1xmpr5p > :last-child, .framer-TpMTJ .framer-159kn02 > :last-child { margin-right: 0px; } .framer-TpMTJ .framer-1s7xrur > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-TpMTJ .framer-1s7xrur > :first-child, .framer-TpMTJ .framer-16nszzg > :first-child, .framer-TpMTJ .framer-1e9b2pm > :first-child, .framer-TpMTJ .framer-glq94t > :first-child, .framer-TpMTJ .framer-pacuu8 > :first-child, .framer-TpMTJ .framer-ro4lmd > :first-child, .framer-TpMTJ .framer-qffz5i > :first-child, .framer-TpMTJ .framer-zczqb2 > :first-child { margin-top: 0px; } .framer-TpMTJ .framer-1s7xrur > :last-child, .framer-TpMTJ .framer-16nszzg > :last-child, .framer-TpMTJ .framer-1e9b2pm > :last-child, .framer-TpMTJ .framer-glq94t > :last-child, .framer-TpMTJ .framer-pacuu8 > :last-child, .framer-TpMTJ .framer-ro4lmd > :last-child, .framer-TpMTJ .framer-qffz5i > :last-child, .framer-TpMTJ .framer-zczqb2 > :last-child { margin-bottom: 0px; } .framer-TpMTJ .framer-16nszzg > *, .framer-TpMTJ .framer-qffz5i > *, .framer-TpMTJ .framer-zczqb2 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-TpMTJ .framer-1e9b2pm > *, .framer-TpMTJ .framer-ro4lmd > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-TpMTJ .framer-glq94t > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-TpMTJ .framer-pacuu8 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-TpMTJ .framer-3gusi9 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-TpMTJ .framer-1xmpr5p > *, .framer-TpMTJ .framer-159kn02 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-TpMTJ[data-border=\"true\"]::after, .framer-TpMTJ [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; }',\"@media (max-width: 809px) { .framer-TpMTJ.framer-1nz6n6a { flex-direction: column; padding: 56px 0px 0px 0px; width: 390px; } .framer-TpMTJ .framer-1s7xrur { flex: none; width: 100%; } .framer-TpMTJ .framer-1e9b2pm { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; gap: 24px; padding: 72px 20px 40px 20px; } .framer-TpMTJ .framer-1935qih, .framer-TpMTJ .framer-tvh41j, .framer-TpMTJ .framer-1alth5z, .framer-TpMTJ .framer-7khtph { height: var(--framer-aspect-ratio-supported, 138px); } .framer-TpMTJ .framer-58x4d7-container { height: auto; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-TpMTJ.framer-1nz6n6a, .framer-TpMTJ .framer-1e9b2pm { gap: 0px; } .framer-TpMTJ.framer-1nz6n6a > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-TpMTJ.framer-1nz6n6a > :first-child, .framer-TpMTJ .framer-1e9b2pm > :first-child { margin-top: 0px; } .framer-TpMTJ.framer-1nz6n6a > :last-child, .framer-TpMTJ .framer-1e9b2pm > :last-child { margin-bottom: 0px; } .framer-TpMTJ .framer-1e9b2pm > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\",\"@media (min-width: 810px) and (max-width: 999px) { .framer-TpMTJ.framer-1nz6n6a { flex-direction: column; padding: 56px 0px 0px 0px; width: 810px; } .framer-TpMTJ .framer-1s7xrur { flex: none; width: 100%; } .framer-TpMTJ .framer-1e9b2pm { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; gap: 28px; max-width: unset; padding: 72px 40px 40px 40px; } .framer-TpMTJ .framer-1935qih, .framer-TpMTJ .framer-tvh41j, .framer-TpMTJ .framer-1alth5z, .framer-TpMTJ .framer-7khtph { height: var(--framer-aspect-ratio-supported, 502px); } .framer-TpMTJ .framer-58x4d7-container { height: auto; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-TpMTJ.framer-1nz6n6a, .framer-TpMTJ .framer-1e9b2pm { gap: 0px; } .framer-TpMTJ.framer-1nz6n6a > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-TpMTJ.framer-1nz6n6a > :first-child, .framer-TpMTJ .framer-1e9b2pm > :first-child { margin-top: 0px; } .framer-TpMTJ.framer-1nz6n6a > :last-child, .framer-TpMTJ .framer-1e9b2pm > :last-child { margin-bottom: 0px; } .framer-TpMTJ .framer-1e9b2pm > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3605\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QoqUu_ji6\":{\"layout\":[\"fixed\",\"auto\"]},\"kBqOfCCgD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate false\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerYJnC3QxUx=withCSS(Component,css,\"framer-TpMTJ\");export default FramerYJnC3QxUx;FramerYJnC3QxUx.displayName=\"Blog\";FramerYJnC3QxUx.defaultProps={height:3605,width:1e3};addFonts(FramerYJnC3QxUx,[{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\"}]},...ButtonsGhostButtonFonts,...PhosphorFonts,...YouTubeFonts,...FooterFooterFonts,...BlurGradientFonts,...SidebarSidebarFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYJnC3QxUx\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1000\",\"framerAcceptsLayoutTemplate\":\"false\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QoqUu_ji6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kBqOfCCgD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"3605\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "ButtonsGhostButtonFonts", "getFonts", "YSwNO2Dkh_default", "PhosphorFonts", "Icon", "YouTubeFonts", "Youtube", "FooterFooterFonts", "EqdmMqxtb_default", "BlurGradientFonts", "BlurGradient_Prod_default", "SidebarSidebarFonts", "f8fmJL7d2_default", "breakpoints", "serializationHash", "variantClassNames", "isSet", "value", "toResponsiveImage", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "kJHR6GhX0_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "UaDQYuI1S", "jLAs7vwlR", "LiKpZLclc", "b3CiJ6eUC", "pHkWCSn19", "p1QPlKHS8", "D1UpQbgTI", "aM9ZnZ47P", "PsTNAd4zP", "vsbO5Irjv", "MJRtfnspD", "WflE8OPq7", "OlAz5SVoD", "g78Y8NaOK", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "router", "useRouter", "visible", "visible1", "visible2", "visible3", "visible4", "visible5", "visible6", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ResolveLinks", "resolvedLinks", "PropertyOverrides2", "ComponentViewportProvider", "Container", "YSwNO2Dkh_default", "RichText2", "Icon", "Youtube", "getLoadingLazyAtYPosition", "Image2", "Link", "EqdmMqxtb_default", "BlurGradient_Prod_default", "f8fmJL7d2_default", "css", "FramerYJnC3QxUx", "withCSS", "YJnC3QxUx_default", "addFonts", "ButtonsGhostButtonFonts", "PhosphorFonts", "YouTubeFonts", "FooterFooterFonts", "BlurGradientFonts", "SidebarSidebarFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
