{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/ReVsTiSTfN45tlk98RJ5/iMZe124Pjp70TyoSvgYm/wtzz0FpFg.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,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.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://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// 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(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,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\"},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(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__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===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,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 embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High: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 element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn 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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (dc53115)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouter,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import TestimonialWidgetsItem from\"#framer/local/canvasComponent/dHBXuL6yw/dHBXuL6yw.js\";import NavigationFooter from\"#framer/local/canvasComponent/F29tECq2B/F29tECq2B.js\";import LandingCta from\"#framer/local/canvasComponent/JI2RlW4zV/JI2RlW4zV.js\";import BlogCTA from\"#framer/local/canvasComponent/qp88Bs0GU/qp88Bs0GU.js\";import NavigationHeader from\"#framer/local/canvasComponent/ylRLnob_i/ylRLnob_i.js\";import{withDynamicContent,withToc}from\"#framer/local/codeFile/HFOAUAT/Blog.js\";import ExpandedTOC from\"#framer/local/codeFile/ngP54m1/TOC_1.js\";import Authors from\"#framer/local/collection/eEzp2O_RP/eEzp2O_RP.js\";import Blog from\"#framer/local/collection/jurYuPDTP/jurYuPDTP.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle11 from\"#framer/local/css/CLaYiuJ2J/CLaYiuJ2J.js\";import*as sharedStyle13 from\"#framer/local/css/fkrt69w7N/fkrt69w7N.js\";import*as sharedStyle2 from\"#framer/local/css/g8JIptSFF/g8JIptSFF.js\";import*as sharedStyle6 from\"#framer/local/css/gCnblO6pX/gCnblO6pX.js\";import*as sharedStyle4 from\"#framer/local/css/iRLRbl6ix/iRLRbl6ix.js\";import*as sharedStyle10 from\"#framer/local/css/k_p700MVM/k_p700MVM.js\";import*as sharedStyle3 from\"#framer/local/css/NdcSPpE4g/NdcSPpE4g.js\";import*as sharedStyle8 from\"#framer/local/css/ro7OPezbn/ro7OPezbn.js\";import*as sharedStyle12 from\"#framer/local/css/sk9XCQnpm/sk9XCQnpm.js\";import*as sharedStyle1 from\"#framer/local/css/T_S_d56PZ/T_S_d56PZ.js\";import*as sharedStyle9 from\"#framer/local/css/tX8cETyOf/tX8cETyOf.js\";import*as sharedStyle from\"#framer/local/css/W6pawXXAP/W6pawXXAP.js\";import*as sharedStyle7 from\"#framer/local/css/waBFXFzwn/waBFXFzwn.js\";import*as sharedStyle5 from\"#framer/local/css/Z3wrx1Nmr/Z3wrx1Nmr.js\";import metadataProvider from\"#framer/local/webPageMetadata/wtzz0FpFg/wtzz0FpFg.js\";const NavigationHeaderFonts=getFonts(NavigationHeader);const YouTubeFonts=getFonts(YouTube);const RichTextWithToco65yp3=withCodeBoundaryForOverrides(RichText,{nodeId:\"nHBdmmpQ2\",override:withToc,scopeId:\"wtzz0FpFg\"});const EmbedFonts=getFonts(Embed);const BlogCTAFonts=getFonts(BlogCTA);const ExpandedTOCFonts=getFonts(ExpandedTOC);const MotionDivWithDynamicContent1x5xqu=withCodeBoundaryForOverrides(motion.div,{nodeId:\"dEsFg1XcE\",override:withDynamicContent,scopeId:\"wtzz0FpFg\"});const TestimonialWidgetsItemFonts=getFonts(TestimonialWidgetsItem);const LandingCtaFonts=getFonts(LandingCta);const NavigationFooterFonts=getFonts(NavigationFooter);const breakpoints={GaGSKclMo:\"(min-width: 1280px)\",LOV9qPPq6:\"(min-width: 810px) and (max-width: 1279px)\",nEeomAspn:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-FwM8a\";const variantClassNames={GaGSKclMo:\"framer-v-1kg598x\",LOV9qPPq6:\"framer-v-1hxeak5\",nEeomAspn:\"framer-v-1vkq18y\"};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const negate=value=>{return!value;};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"GaGSKclMo\",Phone:\"nEeomAspn\",Tablet:\"LOV9qPPq6\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"GaGSKclMo\"};};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{constraint:{left:{collection:\"wtzz0FpFg\",name:\"DjZUmrzIK\",type:\"Identifier\"},operator:\"==\",right:{collection:\"DjZUmrzIK\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"wtzz0FpFg\",data:Blog,type:\"Collection\"},right:{alias:\"DjZUmrzIK\",data:Authors,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"wtzz0FpFg\",name:\"k3uZDx81_\",type:\"Identifier\"},{collection:\"wtzz0FpFg\",name:\"jKkiJCFmb\",type:\"Identifier\"},{alias:\"DjZUmrzIK.yEh33M8Ip\",collection:\"DjZUmrzIK\",name:\"yEh33M8Ip\",type:\"Identifier\"},{alias:\"DjZUmrzIK.mCRn8qhNu\",collection:\"DjZUmrzIK\",name:\"mCRn8qhNu\",type:\"Identifier\"},{alias:\"DjZUmrzIK.NKZanczVS\",collection:\"DjZUmrzIK\",name:\"NKZanczVS\",type:\"Identifier\"},{alias:\"DjZUmrzIK.QOE0OJpDB\",collection:\"DjZUmrzIK\",name:\"QOE0OJpDB\",type:\"Identifier\"},{collection:\"wtzz0FpFg\",name:\"yL_2DFatl\",type:\"Identifier\"},{collection:\"wtzz0FpFg\",name:\"yJBMARHUm\",type:\"Identifier\"},{collection:\"wtzz0FpFg\",name:\"gQLwahAiB\",type:\"Identifier\"},{collection:\"wtzz0FpFg\",name:\"gMQDuM88K\",type:\"Identifier\"},{collection:\"wtzz0FpFg\",name:\"wdKFUp9JL\",type:\"Identifier\"},{collection:\"wtzz0FpFg\",name:\"xKX8dYShE\",type:\"Identifier\"},{collection:\"wtzz0FpFg\",name:\"zMLMGOb65\",type:\"Identifier\"},{collection:\"wtzz0FpFg\",name:\"vb3kW3UcC\",type:\"Identifier\"},{collection:\"wtzz0FpFg\",name:\"lox01eVVh\",type:\"Identifier\"},{collection:\"wtzz0FpFg\",name:\"ln_d0vIUC\",type:\"Identifier\"},{collection:\"wtzz0FpFg\",name:\"aILcPfbUo\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"wtzz0FpFg\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,yJBMARHUm=getFromCurrentRouteData(\"yJBMARHUm\")??\"\",k3uZDx81_=getFromCurrentRouteData(\"k3uZDx81_\")??\"\",DjZUmrzIK_QOE0OJpDB=getFromCurrentRouteData(\"DjZUmrzIK.QOE0OJpDB\"),DjZUmrzIK_mCRn8qhNu=getFromCurrentRouteData(\"DjZUmrzIK.mCRn8qhNu\")??\"\",DjZUmrzIK_yEh33M8Ip=getFromCurrentRouteData(\"DjZUmrzIK.yEh33M8Ip\")??\"\",DjZUmrzIK_NKZanczVS=getFromCurrentRouteData(\"DjZUmrzIK.NKZanczVS\")??\"\",yL_2DFatl=getFromCurrentRouteData(\"yL_2DFatl\")??\"\",gMQDuM88K=getFromCurrentRouteData(\"gMQDuM88K\"),wdKFUp9JL=getFromCurrentRouteData(\"wdKFUp9JL\")??\"\",xKX8dYShE=getFromCurrentRouteData(\"xKX8dYShE\")??\"\",vb3kW3UcC=getFromCurrentRouteData(\"vb3kW3UcC\")??true,aILcPfbUo=getFromCurrentRouteData(\"aILcPfbUo\"),lox01eVVh=getFromCurrentRouteData(\"lox01eVVh\")??\"\",ln_d0vIUC=getFromCurrentRouteData(\"ln_d0vIUC\")??\"\",gMQDuM88KFND_97YRq,k3uZDx81_FND_97YRq,jKkiJCFmbFND_97YRq,idFND_97YRq,jKkiJCFmb=getFromCurrentRouteData(\"jKkiJCFmb\")??\"\",gQLwahAiB=getFromCurrentRouteData(\"gQLwahAiB\")??\"\",...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,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=negate(equals(yJBMARHUm,\"senja-in-action\"));const textContent=prefix(DjZUmrzIK_yEh33M8Ip,\"Written by \");const visible1=negate(isSet(yL_2DFatl));const visible2=isSet(yL_2DFatl);const visible3=isSet(xKX8dYShE);const isDisplayed=()=>{if(!isBrowser())return true;if([\"LOV9qPPq6\",\"nEeomAspn\"].includes(baseVariant))return false;return true;};const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"GaGSKclMo\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1kg598x\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qgj589-container\",nodeId:\"P59jbDCZ_\",scopeId:\"wtzz0FpFg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LOV9qPPq6:{variant:\"FfFkyPn0P\"},nEeomAspn:{variant:\"kvv3yOEIv\"}},children:/*#__PURE__*/_jsx(NavigationHeader,{BQXTPj1_M:\"rgb(255, 255, 255)\",Dd9vXlMcc:\"rgb(0, 0, 0)\",height:\"100%\",id:\"P59jbDCZ_\",layoutId:\"P59jbDCZ_\",style:{width:\"100%\"},variant:\"F5H_zm_q3\",width:\"100%\",ZueMBBXLU:\"rgb(255, 255, 255)\"})})})}),visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hpiq6r\",\"data-framer-name\":\"Landing/Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v25dt5\",\"data-framer-name\":\"Hero Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tdruju\",\"data-framer-name\":\"Above the Fold\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-61itek\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nEeomAspn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2F2ZWF0LTcwMA==\",\"--framer-font-family\":'\"Caveat\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(103, 1, 230, 0.6)\"},children:\"The Testimonial Blog\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2F2ZWF0LTcwMA==\",\"--framer-font-family\":'\"Caveat\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(103, 1, 230, 0.6)\"},children:\"The Testimonial Blog\"})}),className:\"framer-jflvot\",\"data-framer-name\":\"Testimonials Made Easy\",fonts:[\"GF;Caveat-700\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nEeomAspn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QnJpY29sYWdlIEdyb3Rlc3F1ZS03MDA=\",\"--framer-font-family\":'\"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-text-alignment\":\"left\"},children:\"How to: sell online courses on social media\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QnJpY29sYWdlIEdyb3Rlc3F1ZS03MDA=\",\"--framer-font-family\":'\"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-text-alignment\":\"left\"},children:\"How to: sell online courses on social media\"})}),className:\"framer-1rc6rtg\",\"data-framer-name\":\"Collecting testimonials doesn't get easier than this\",fonts:[\"GF;Bricolage Grotesque-700\"],text:k3uZDx81_,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-roldm2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nEeomAspn:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+72+96+0+0+-328+0+98.4+0),sizes:\"48px\",...toResponsiveImage(DjZUmrzIK_QOE0OJpDB)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+72+96+0+0+-328+0+129.6+0),sizes:\"48px\",...toResponsiveImage(DjZUmrzIK_QOE0OJpDB)},className:\"framer-rn3ov3\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1z0mkux\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{mCRn8qhNu:DjZUmrzIK_mCRn8qhNu},webPageId:\"igfv20Npr\"},motionChild:true,nodeId:\"QwAnzJZN7\",openInNewTab:false,scopeId:\"wtzz0FpFg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1q2dljn\",\"data-styles-preset\":\"W6pawXXAP\",children:\"Written by Lex Roman\"})})})}),className:\"framer-1sr6a3i\",\"data-framer-name\":\"Name\",fonts:[\"GF;DM Sans-500\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(133, 133, 133)\"},children:\"Tagline\"})}),className:\"framer-3rzj2z\",\"data-framer-name\":\"Name\",fonts:[\"GF;DM Sans-regular\"],text:DjZUmrzIK_NKZanczVS,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nEeomAspn:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+72+96+0+0+-155.6),sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 40px, 1280px)`,...toResponsiveImage(gMQDuM88K)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+72+96+0+0+-124.4),sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 40px, 1280px)`,...toResponsiveImage(gMQDuM88K)},className:\"framer-vo1m1k\"})}),visible2&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\"},className:\"framer-1232vt\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-72lbqb-container\",isModuleExternal:true,nodeId:\"K1bKrKzD4\",scopeId:\"wtzz0FpFg\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"K1bKrKzD4\",isMixedBorderRadius:false,isRed:true,layoutId:\"K1bKrKzD4\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:yL_2DFatl,width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cslo5z\",children:[/*#__PURE__*/_jsxs(MotionDivWithDynamicContent1x5xqu,{className:\"framer-1x5xqu\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ld5y9m\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\":componentPresets.props[\"YGeWxYiSP\"]},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LOV9qPPq6:{stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",blockquote:\"framer-styles-preset-1kv5rmj\",code:\"framer-styles-preset-xm7hxw\",h1:\"framer-styles-preset-1rlrc32\",h2:\"framer-styles-preset-12jgtdn\",h3:\"framer-styles-preset-15zx582\",h4:\"framer-styles-preset-1kp4v0y\",h5:\"framer-styles-preset-11041j8\",h6:\"framer-styles-preset-nagxz8\",img:\"framer-styles-preset-khr48y\",p:\"framer-styles-preset-1kjl9la\"}},nEeomAspn:{stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",blockquote:\"framer-styles-preset-1kv5rmj\",code:\"framer-styles-preset-xm7hxw\",h1:\"framer-styles-preset-1rlrc32\",h2:\"framer-styles-preset-12jgtdn\",h3:\"framer-styles-preset-15zx582\",h4:\"framer-styles-preset-1kp4v0y\",h5:\"framer-styles-preset-11041j8\",h6:\"framer-styles-preset-nagxz8\",img:\"framer-styles-preset-khr48y\",p:\"framer-styles-preset-1kjl9la\"}}},children:/*#__PURE__*/_jsx(RichTextWithToco65yp3,{__fromCanvasComponent:true,children:wdKFUp9JL,className:\"framer-o65yp3\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",blockquote:\"framer-styles-preset-1kv5rmj\",code:\"framer-styles-preset-1hp3leu\",h1:\"framer-styles-preset-1rlrc32\",h2:\"framer-styles-preset-12jgtdn\",h3:\"framer-styles-preset-15zx582\",h4:\"framer-styles-preset-1kp4v0y\",h5:\"framer-styles-preset-an6b0m\",h6:\"framer-styles-preset-nagxz8\",img:\"framer-styles-preset-khr48y\",p:\"framer-styles-preset-1kjl9la\"},verticalAlignment:\"top\",withExternalLayout:true})})}),visible3&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vbtoy2-container\",isModuleExternal:true,nodeId:\"HxqWVtXsj\",rendersWithMotion:true,scopeId:\"wtzz0FpFg\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:xKX8dYShE,id:\"HxqWVtXsj\",layoutId:\"HxqWVtXsj\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8jebm9 hidden-1hxeak5 hidden-1vkq18y\",children:[vb3kW3UcC&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hncqtc\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rjdv1z\",\"data-border\":true,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+870.6+28+0+20+0+-195.4+30+-48),sizes:\"103px\",...toResponsiveImage(aILcPfbUo)},className:\"framer-1029h9a\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vwljkg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\"},children:\"Sveta Bay\"})}),className:\"framer-9tdidw\",fonts:[\"GF;Manrope-700\"],text:lox01eVVh,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-text-color\":\"var(--token-3b92dee9-2c94-44fd-b5d3-342400922e84, rgb(153, 84, 242))\"},children:\"Founder of AudioPen\"})}),className:\"framer-1c613yc\",fonts:[\"GF;DM Sans-500\"],text:ln_d0vIUC,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-text-color\":\"rgb(128, 140, 157)\"},children:\"Senja Customer\"})}),className:\"framer-1u2e7m4\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:318,width:\"360px\",y:(componentViewport?.y||0)+0+870.6+28+0+20+0+195.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19jb3gt-container\",nodeId:\"Zr1wEhw4a\",rendersWithMotion:true,scopeId:\"wtzz0FpFg\",children:/*#__PURE__*/_jsx(BlogCTA,{height:\"100%\",id:\"Zr1wEhw4a\",layoutId:\"Zr1wEhw4a\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12syx8q\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dq0q6f-container\",isAuthoredByUser:true,nodeId:\"Uji4LTT8h\",rendersWithMotion:true,scopeId:\"wtzz0FpFg\",children:/*#__PURE__*/_jsx(ExpandedTOC,{height:\"100%\",id:\"Uji4LTT8h\",layoutId:\"Uji4LTT8h\",style:{width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-130u2c\",\"data-framer-name\":\"Read More\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wywf61\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-15zx582\",\"data-styles-preset\":\"NdcSPpE4g\",children:\"More Articles\"})}),className:\"framer-1rwjto3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nzmt0\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LOV9qPPq6:{query:{from:{alias:\"FND_97YRq\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"FND_97YRq\",name:\"gMQDuM88K\",type:\"Identifier\"},{collection:\"FND_97YRq\",name:\"k3uZDx81_\",type:\"Identifier\"},{collection:\"FND_97YRq\",name:\"jKkiJCFmb\",type:\"Identifier\"},{collection:\"FND_97YRq\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"FND_97YRq\",name:\"jKkiJCFmb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:jKkiJCFmb},type:\"BinaryOperation\"}},operator:\"and\",right:{arguments:[{collection:\"FND_97YRq\",name:\"yJBMARHUm\",type:\"Identifier\"},{type:\"LiteralValue\",value:gQLwahAiB}],functionName:\"CONTAINS\",type:\"FunctionCall\"},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"FND_97YRq\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"FND_97YRq\",name:\"gMQDuM88K\",type:\"Identifier\"},{collection:\"FND_97YRq\",name:\"k3uZDx81_\",type:\"Identifier\"},{collection:\"FND_97YRq\",name:\"jKkiJCFmb\",type:\"Identifier\"},{collection:\"FND_97YRq\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"FND_97YRq\",name:\"jKkiJCFmb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:jKkiJCFmb},type:\"BinaryOperation\"}},operator:\"and\",right:{arguments:[{collection:\"FND_97YRq\",name:\"yJBMARHUm\",type:\"Identifier\"},{type:\"LiteralValue\",value:gQLwahAiB}],functionName:\"CONTAINS\",type:\"FunctionCall\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({gMQDuM88K:gMQDuM88KFND_97YRq,id:idFND_97YRq,jKkiJCFmb:jKkiJCFmbFND_97YRq,k3uZDx81_:k3uZDx81_FND_97YRq},index)=>{k3uZDx81_FND_97YRq??=\"\";jKkiJCFmbFND_97YRq??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`FND_97YRq-${idFND_97YRq}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{jKkiJCFmb:jKkiJCFmbFND_97YRq},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{jKkiJCFmb:jKkiJCFmbFND_97YRq},webPageId:\"wtzz0FpFg\"},implicitPathVariables:undefined},{href:{pathVariables:{jKkiJCFmb:jKkiJCFmbFND_97YRq},webPageId:\"wtzz0FpFg\"},implicitPathVariables:undefined},{href:{pathVariables:{jKkiJCFmb:jKkiJCFmbFND_97YRq},webPageId:\"wtzz0FpFg\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eoec1r-container\",nodeId:\"RJ8EqGaCE\",scopeId:\"wtzz0FpFg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LOV9qPPq6:{uCRlN185k:resolvedLinks[1]},nEeomAspn:{uCRlN185k:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(TestimonialWidgetsItem,{height:\"100%\",id:\"RJ8EqGaCE\",layoutId:\"RJ8EqGaCE\",N2GKIM7mG:false,rQ17Pn6Bc:toResponsiveImage(gMQDuM88KFND_97YRq),style:{width:\"100%\"},uCRlN185k:resolvedLinks[0],v0LgOUrnN:false,v4Wpp3Emr:k3uZDx81_FND_97YRq,variant:\"h8k9g6WS1\",width:\"100%\",xkVot7XsZ:false})})})})})})},idFND_97YRq);})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LOV9qPPq6:{y:(componentViewport?.y||0)+0+1972.4},nEeomAspn:{y:(componentViewport?.y||0)+0+1941.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:377,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2011.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k0fzx7-container\",nodeId:\"A26D_ZoxH\",scopeId:\"wtzz0FpFg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LOV9qPPq6:{variant:\"IfebvI_9o\"},nEeomAspn:{variant:\"IfebvI_9o\"}},children:/*#__PURE__*/_jsx(LandingCta,{height:\"100%\",id:\"A26D_ZoxH\",Jf9eZriCX:\"Jump in today and see how easy it is to collect testimonials with Senja.\",layoutId:\"A26D_ZoxH\",style:{width:\"100%\"},variant:\"Ns9_TBdIu\",VILiyeYI8:\"The faster, easier way to collect testimonials\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LOV9qPPq6:{y:(componentViewport?.y||0)+0+2349.4},nEeomAspn:{y:(componentViewport?.y||0)+0+2318.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:874,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2388.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p2sbqx-container\",nodeId:\"GjEy9o5DG\",scopeId:\"wtzz0FpFg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LOV9qPPq6:{variant:\"p3HiCxB9Z\"},nEeomAspn:{variant:\"N7lxhtJ6F\"}},children:/*#__PURE__*/_jsx(NavigationFooter,{height:\"100%\",id:\"GjEy9o5DG\",layoutId:\"GjEy9o5DG\",style:{width:\"100%\"},variant:\"wSjyVRDzo\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FwM8a.framer-1cz2zm6, .framer-FwM8a .framer-1cz2zm6 { display: block; }\",\".framer-FwM8a.framer-1kg598x { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-FwM8a .framer-qgj589-container, .framer-FwM8a .framer-vbtoy2-container, .framer-FwM8a .framer-1k0fzx7-container, .framer-FwM8a .framer-p2sbqx-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-FwM8a .framer-1hpiq6r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-FwM8a .framer-1v25dt5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-FwM8a .framer-1tdruju { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; max-width: 840px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FwM8a .framer-61itek { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-FwM8a .framer-jflvot, .framer-FwM8a .framer-1sr6a3i, .framer-FwM8a .framer-3rzj2z { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-FwM8a .framer-1rc6rtg { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-FwM8a .framer-roldm2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-FwM8a .framer-rn3ov3 { border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 80px; flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-FwM8a .framer-1z0mkux { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-FwM8a .framer-vo1m1k { aspect-ratio: 1.9172259507829978 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 647px); max-width: 1280px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-FwM8a .framer-1232vt { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-FwM8a .framer-72lbqb-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); position: relative; width: 100%; }\",\".framer-FwM8a .framer-1cslo5z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 28px 20px 48px 20px; position: relative; width: 100%; }\",\".framer-FwM8a .framer-1x5xqu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; padding: 20px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-FwM8a .framer-ld5y9m { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 840px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-FwM8a .framer-o65yp3 { --framer-paragraph-spacing: 32px; flex: none; height: auto; max-width: 720px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-FwM8a .framer-8jebm9 { 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: center; overflow: visible; padding: 0px; position: relative; width: 360px; z-index: 1; }\",\".framer-FwM8a .framer-1hncqtc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 30px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-FwM8a .framer-rjdv1z { --border-bottom-width: 1px; --border-color: var(--token-d59f1425-3fab-42b4-b022-2ae9f7777a9e, #e5e7eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 360px; overflow: visible; padding: 72px 24px 32px 24px; position: relative; width: 1px; }\",\".framer-FwM8a .framer-1029h9a { aspect-ratio: 1 / 1; border-bottom-left-radius: 52px; border-bottom-right-radius: 52px; border-top-left-radius: 52px; border-top-right-radius: 52px; flex: none; height: var(--framer-aspect-ratio-supported, 103px); left: 20px; overflow: hidden; position: absolute; top: -48px; width: 103px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-FwM8a .framer-vwljkg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-FwM8a .framer-9tdidw, .framer-FwM8a .framer-1rwjto3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-FwM8a .framer-1c613yc, .framer-FwM8a .framer-1u2e7m4 { --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; }\",\".framer-FwM8a .framer-19jb3gt-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-FwM8a .framer-12syx8q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-FwM8a .framer-dq0q6f-container, .framer-FwM8a .framer-1eoec1r-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-FwM8a .framer-130u2c { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-FwM8a .framer-1wywf61 { background-color: var(--token-9a112a9b-4812-4ab2-83e3-716ff9fdcded, #f3f4f6); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-FwM8a .framer-nzmt0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,'.framer-FwM8a[data-border=\"true\"]::after, .framer-FwM8a [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 (min-width: 810px) and (max-width: 1279px) { .framer-FwM8a.framer-1kg598x { width: 810px; } .framer-FwM8a .framer-qgj589-container { order: 0; } .framer-FwM8a .framer-1hpiq6r { order: 1; } .framer-FwM8a .framer-vo1m1k { height: var(--framer-aspect-ratio-supported, 402px); } .framer-FwM8a .framer-1cslo5z { order: 2; } .framer-FwM8a .framer-o65yp3 { max-width: unset; } .framer-FwM8a .framer-nzmt0 { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); justify-content: center; } .framer-FwM8a .framer-1eoec1r-container { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-FwM8a .framer-1k0fzx7-container { order: 3; } .framer-FwM8a .framer-p2sbqx-container { order: 4; }}\",\"@media (max-width: 809px) { .framer-FwM8a.framer-1kg598x { width: 390px; } .framer-FwM8a .framer-vo1m1k { height: var(--framer-aspect-ratio-supported, 104px); } .framer-FwM8a .framer-1x5xqu { padding: 20px 0px 0px 0px; } .framer-FwM8a .framer-nzmt0 { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(200px, 1fr)); justify-content: center; } .framer-FwM8a .framer-1eoec1r-container { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 11193\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"LOV9qPPq6\":{\"layout\":[\"fixed\",\"auto\"]},\"nEeomAspn\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const Framerwtzz0FpFg=withCSS(Component,css,\"framer-FwM8a\");export default Framerwtzz0FpFg;Framerwtzz0FpFg.displayName=\"Blog\";Framerwtzz0FpFg.defaultProps={height:11193,width:1280};addFonts(Framerwtzz0FpFg,[{explicitInter:true,fonts:[{family:\"Caveat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/caveat/v18/WnznHAc5bAfYB2QRah7pcpNvOx-pjRV6SIejYBxPigs.woff2\",weight:\"700\"},{family:\"Bricolage Grotesque\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bricolagegrotesque/v8/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvfzlyMgvs-wJDtw.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"},{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\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_A87jxeN7B.woff2\",weight:\"700\"}]},...NavigationHeaderFonts,...YouTubeFonts,...EmbedFonts,...BlogCTAFonts,...ExpandedTOCFonts,...TestimonialWidgetsItemFonts,...LandingCtaFonts,...NavigationFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...componentPresets.fonts?.[\"YGeWxYiSP\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"YGeWxYiSP\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerwtzz0FpFg\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"11193\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LOV9qPPq6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nEeomAspn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1280\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"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", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "NavigationHeaderFonts", "getFonts", "ylRLnob_i_default", "YouTubeFonts", "Youtube", "RichTextWithToco65yp3", "withCodeBoundaryForOverrides", "RichText2", "withToc", "EmbedFonts", "Embed", "BlogCTAFonts", "qp88Bs0GU_default", "ExpandedTOCFonts", "s", "MotionDivWithDynamicContent1x5xqu", "motion", "withDynamicContent", "TestimonialWidgetsItemFonts", "dHBXuL6yw_default", "LandingCtaFonts", "JI2RlW4zV_default", "NavigationFooterFonts", "F29tECq2B_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "equals", "a", "b", "negate", "value", "toResponsiveImage", "prefix", "isSet", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "jurYuPDTP_default", "eEzp2O_RP_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "yJBMARHUm", "k3uZDx81_", "DjZUmrzIK_QOE0OJpDB", "DjZUmrzIK_mCRn8qhNu", "DjZUmrzIK_yEh33M8Ip", "DjZUmrzIK_NKZanczVS", "yL_2DFatl", "gMQDuM88K", "wdKFUp9JL", "xKX8dYShE", "vb3kW3UcC", "aILcPfbUo", "lox01eVVh", "ln_d0vIUC", "gMQDuM88KFND_97YRq", "k3uZDx81_FND_97YRq", "jKkiJCFmbFND_97YRq", "idFND_97YRq", "jKkiJCFmb", "gQLwahAiB", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "visible", "textContent", "visible1", "visible2", "visible3", "isDisplayed", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "getLoadingLazyAtYPosition", "Image2", "Link", "ComponentPresetsProvider", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "css", "Framerwtzz0FpFg", "withCSS", "wtzz0FpFg_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
