{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js", "ssg:https://framerusercontent.com/modules/Blrzj2Q95geu5S6JlgQI/9TAGYQ7OSE70S3CndGeN/isbSY2QsT.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";var IconType;(function(IconType){IconType[\"Default\"]=\"Default\";IconType[\"Custom\"]=\"Custom\";})(IconType||(IconType={}));var SrcType;(function(SrcType){SrcType[\"Upload\"]=\"Upload\";SrcType[\"URL\"]=\"URL\";})(SrcType||(SrcType={}));// Check for the Search Index Meta Tag\n// Currently the only way to differenciate between Preview & Publish\nconst metaTagSelector='meta[name=\"framer-search-index\"]';// We can hopefully remove this check when new Preview ships\nfunction isPublishedSiteOrSSG(){if(typeof document===\"undefined\")return true;const metaTag=document.querySelector(metaTagSelector);return!!metaTag;}/**\n *\n * DOWNLOAD\n * By Hunter\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 100\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Download(props){const{styleOptions,hoverOptions,iconOptions}=props;const{backgroundColor,color,borderRadius,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,gap}=styleOptions;const isInPublishedSiteOrSSG=isPublishedSiteOrSSG();let downloadURL=undefined;if(isInPublishedSiteOrSSG){if(props.srcType===SrcType.URL)downloadURL=props.srcURL;if(props.srcType===SrcType.Upload)downloadURL=props.srcFile;}const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;const getIcon=()=>{var ref,ref1;if(!iconOptions)return;const iconStyle={order:iconOptions.alignment===\"start\"?0:2,flexShrink:0};return iconOptions.type===IconType.Custom&&!!((ref=iconOptions.image)===null||ref===void 0?void 0:ref.src)?/*#__PURE__*/ _jsx(\"img\",{style:iconStyle,alt:((ref1=iconOptions.image)===null||ref1===void 0?void 0:ref1.alt)&&iconOptions.image.alt.length>0?iconOptions.image.alt:\"download icon\",src:iconOptions.image.src,width:iconOptions.size,height:iconOptions.size}):/*#__PURE__*/ _jsx(\"svg\",{style:iconStyle,xmlns:\"http://www.w3.org/2000/svg\",width:iconOptions.size,height:iconOptions.size,fill:iconOptions.color,viewBox:\"0 0 256 256\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M228 152v56a20 20 0 0 1-20 20H48a20 20 0 0 1-20-20v-56a12 12 0 0 1 24 0v52h152v-52a12 12 0 0 1 24 0Zm-108.49 8.49a12 12 0 0 0 17 0l40-40a12 12 0 0 0-17-17L140 123V40a12 12 0 0 0-24 0v83l-19.51-19.49a12 12 0 0 0-17 17Z\"})});};const getCursor=()=>{if(props.srcType===SrcType.URL&&props.srcURL)return\"pointer\";if(props.srcType===SrcType.Upload&&props.srcFile)return\"pointer\";return\"auto\";};const buttonTitle=isInPublishedSiteOrSSG?\"Download File\":\"Publish to Download\";return /*#__PURE__*/ _jsxs(motion.a,{target:\"_blank\",href:downloadURL,download:true,title:buttonTitle,style:{gap,fontSize:16,lineHeight:1,fontFamily:\"Inter\",fontWeight:500,width:\"max-content\",...props.style,...buttonStyles,...props.fontControl,padding:paddingValue,color:color,backgroundColor:backgroundColor,borderRadius:borderRadius,userSelect:\"none\",placeContent:flexAlignSwitch(props.fontControl),whiteSpace:\"nowrap\",cursor:getCursor()},whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:[getIcon(),props.text]});};Download.displayName=\"Download\";addPropertyControls(Download,{text:{title:\"Text\",type:ControlType.String,defaultValue:\"Download\"},srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Upload,SrcType.URL]},srcURL:{type:ControlType.String,title:\" \",placeholder:\"../example.pdf\",hidden:props=>props.srcType===SrcType.Upload},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[],hidden:props=>props.srcType===SrcType.URL},fontControl:{// @ts-ignore - Internal\ntype:ControlType.Font,title:\"Font\",controls:\"extended\"},iconOptions:{type:ControlType.Object,optional:true,title:\"Icon\",buttonTitle:\"Size, Color\",controls:{type:{title:\"Type\",type:ControlType.Enum,options:Object.values(IconType),optionTitles:Object.values(IconType),displaySegmentedControl:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.type===IconType.Custom},image:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.type===IconType.Default},size:{type:ControlType.Number,displayStepper:true,min:5,defaultValue:16,max:250},alignment:{title:\"Align\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"start\",\"end\"],optionTitles:[\"Start\",\"End\"]}}},styleOptions:{type:ControlType.Object,title:\"Styles\",buttonTitle:\"Button, Font\",controls:{backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#111\"},color:{type:ControlType.Color,defaultValue:\"#FFF\"},borderRadius:{type:ControlType.Number,title:\"Radius\",displayStepper:true,defaultValue:50},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:10,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,defaultValue:5}}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#333\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}}});const buttonStyles={display:\"flex\",placeItems:\"center\",placeContent:\"center\",textDecoration:\"none\"};/* Match flex content alignment with text align */ const flexAlignSwitch=fontControlStyles=>{if(!(fontControlStyles===null||fontControlStyles===void 0?void 0:fontControlStyles.textAlign)){return\"left\";}if(fontControlStyles.textAlign===\"left\"){return\"flex-start\";}if(fontControlStyles.textAlign===\"right\"){return\"flex-end\";}return\"center\";};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Download\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"100\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Download.map", "// Generated by Framer (92d6359)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Download from\"https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js\";import Navigation from\"#framer/local/canvasComponent/BeP451CMM/BeP451CMM.js\";import Footer from\"#framer/local/canvasComponent/jKZyW5Cc_/jKZyW5Cc_.js\";import*as sharedStyle1 from\"#framer/local/css/apHXfIOg5/apHXfIOg5.js\";import*as sharedStyle from\"#framer/local/css/D9GhoFhuy/D9GhoFhuy.js\";import metadataProvider from\"#framer/local/webPageMetadata/isbSY2QsT/isbSY2QsT.js\";const NavigationFonts=getFonts(Navigation);const DownloadFonts=getFonts(Download);const FooterFonts=getFonts(Footer);const breakpoints={ikWCIpF2L:\"(max-width: 809px)\",QBmgMWCxI:\"(min-width: 810px) and (max-width: 1439px)\",SwJnaa4l2:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-aOGH7\";const variantClassNames={ikWCIpF2L:\"framer-v-159nnk0\",QBmgMWCxI:\"framer-v-f3gmpo\",SwJnaa4l2:\"framer-v-1yqryox\"};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"SwJnaa4l2\",Phone:\"ikWCIpF2L\",Tablet:\"QBmgMWCxI\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"SwJnaa4l2\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-aOGH7`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-aOGH7`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"SwJnaa4l2\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1yqryox\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"C3VAzDQLJ\"},implicitPathVariables:undefined},{href:{webPageId:\"ssJrdjVmB\"},implicitPathVariables:undefined},{href:{webPageId:\"grzTRoozl\"},implicitPathVariables:undefined},{href:{webPageId:\"C3VAzDQLJ\"},implicitPathVariables:undefined},{href:{webPageId:\"ssJrdjVmB\"},implicitPathVariables:undefined},{href:{webPageId:\"grzTRoozl\"},implicitPathVariables:undefined},{href:{webPageId:\"C3VAzDQLJ\"},implicitPathVariables:undefined},{href:{webPageId:\"ssJrdjVmB\"},implicitPathVariables:undefined},{href:{webPageId:\"grzTRoozl\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:117,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-92d48m-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikWCIpF2L:{LczzsIOH6:resolvedLinks[5],MlGRGE_EH:resolvedLinks[3],rjdIgy3Xt:resolvedLinks[4],variant:\"GtCntbMhr\"},QBmgMWCxI:{LczzsIOH6:resolvedLinks[8],MlGRGE_EH:resolvedLinks[6],rjdIgy3Xt:resolvedLinks[7]}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"tAw_50i6e\",layoutId:\"tAw_50i6e\",LczzsIOH6:resolvedLinks[2],ljwNAQwvH:\"https://app.luckyorange.com/login\",MlGRGE_EH:resolvedLinks[0],qG7KDWsHw:true,rjdIgy3Xt:resolvedLinks[1],style:{width:\"100%\"},variant:\"H3P8OtObK\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5b14sb\",\"data-framer-name\":\"copy-container\",name:\"copy-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikWCIpF2L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-e76n2l\",\"data-styles-preset\":\"D9GhoFhuy\",children:\"Lucky Orange Legal Resources\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBOZXh0IERlbWkgQm9sZA==\",\"--framer-font-family\":'\"Avenir Next Demi Bold\", \"Avenir Next Demi Bold Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"56px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(40, 61, 82)\"},children:\"Lucky Orange Legal Resources\"})}),className:\"framer-49c1vs\",\"data-framer-name\":\"Less time crunching numbers, more time growing your business.\",fonts:[\"CUSTOM;Avenir Next Demi Bold\"],name:\"Less time crunching numbers, more time growing your business.\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1winlup\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xytj58\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w9915v\",\"data-framer-name\":\"Logo\",name:\"Logo\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:\"80px\",src:\"https://framerusercontent.com/images/q1wsgTpDnw06Xv0xx0e875eSxGo.png\",srcSet:\"https://framerusercontent.com/images/q1wsgTpDnw06Xv0xx0e875eSxGo.png?scale-down-to=512 512w,https://framerusercontent.com/images/q1wsgTpDnw06Xv0xx0e875eSxGo.png 1024w\"},className:\"framer-a75bj0\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o0b3sv\",\"data-framer-name\":\"Content Container\",name:\"Content Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ws12tc\",\"data-framer-name\":\"Copy\",name:\"Copy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-146wb9g\",\"data-framer-name\":\"headline\",name:\"headline\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBOZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Avenir Next Regular\", \"Avenir Next Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.25px\",\"--framer-line-height\":\"39px\",\"--framer-text-color\":\"rgb(40, 61, 82)\"},children:\"Terms of Service\"})}),className:\"framer-7hbf25\",\"data-framer-name\":\"Understand customers on every level.\",fonts:[\"CUSTOM;Avenir Next Regular\"],name:\"Understand customers on every level.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBOZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Avenir Next Regular\", \"Avenir Next Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(100, 106, 109)\"},children:\"Last Updated December 2024\"})}),className:\"framer-mu2c0k\",\"data-framer-name\":\"Understand customers on every level.\",fonts:[\"CUSTOM;Avenir Next Regular\"],name:\"Understand customers on every level.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jzsn1p\",\"data-framer-name\":\"body\",name:\"body\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBOZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Avenir Next Medium\", \"Avenir Next Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(100, 106, 109)\"},children:\"Click the button below to view the Lucky Orange Terms of Service.\"})}),className:\"framer-ggkotl\",\"data-framer-name\":\"Ask people about their product preferences, technical issues or crowdsource new feature ideas.\",fonts:[\"CUSTOM;Avenir Next Medium\"],name:\"Ask people about their product preferences, technical issues or crowdsource new feature ideas.\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wq98n3-container\",children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"Avenir Next Demi Bold\", \"Avenir Next Demi Bold Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"zOsYHiVU5\",layoutId:\"zOsYHiVU5\",srcFile:\"https://framerusercontent.com/assets/NzTEU5BXugibisrOBYhpf2xXfms.pdf\",srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:\"var(--token-d1d40e09-1faa-4906-be63-e0976e5aaa97, rgb(125, 77, 153))\",borderRadius:4,color:\"rgb(255, 255, 255)\",gap:10,padding:10,paddingBottom:16,paddingLeft:24,paddingPerSide:true,paddingRight:24,paddingTop:16},text:\"Download Terms of Service\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18z1zd8\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kgy57m\",\"data-framer-name\":\"Logo\",name:\"Logo\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:\"80px\",src:\"https://framerusercontent.com/images/q1wsgTpDnw06Xv0xx0e875eSxGo.png\",srcSet:\"https://framerusercontent.com/images/q1wsgTpDnw06Xv0xx0e875eSxGo.png?scale-down-to=512 512w,https://framerusercontent.com/images/q1wsgTpDnw06Xv0xx0e875eSxGo.png 1024w\"},className:\"framer-8afyfp\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-66ra5v\",\"data-framer-name\":\"Content Container\",name:\"Content Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ttg3of\",\"data-framer-name\":\"Copy\",name:\"Copy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3z2fyc\",\"data-framer-name\":\"headline\",name:\"headline\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBOZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Avenir Next Regular\", \"Avenir Next Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.25px\",\"--framer-line-height\":\"39px\",\"--framer-text-color\":\"rgb(40, 61, 82)\"},children:\"Privacy Statement\"})}),className:\"framer-1ko3u3q\",\"data-framer-name\":\"Understand customers on every level.\",fonts:[\"CUSTOM;Avenir Next Regular\"],name:\"Understand customers on every level.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBOZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Avenir Next Regular\", \"Avenir Next Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(100, 106, 109)\"},children:\"Last Updated December 2022\"})}),className:\"framer-6n4n79\",\"data-framer-name\":\"Understand customers on every level.\",fonts:[\"CUSTOM;Avenir Next Regular\"],name:\"Understand customers on every level.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ftp3uc\",\"data-framer-name\":\"body\",name:\"body\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBOZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Avenir Next Medium\", \"Avenir Next Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(100, 106, 109)\"},children:\"Click the button below to view the Lucky Orange Privacy Statement.\"})}),className:\"framer-k7q7fk\",\"data-framer-name\":\"Ask people about their product preferences, technical issues or crowdsource new feature ideas.\",fonts:[\"CUSTOM;Avenir Next Medium\"],name:\"Ask people about their product preferences, technical issues or crowdsource new feature ideas.\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gj7nfz-container\",children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"Avenir Next Demi Bold\", \"Avenir Next Demi Bold Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"CLa_sPq9X\",layoutId:\"CLa_sPq9X\",srcFile:\"https://framerusercontent.com/assets/GcImyeMirjDI55tMgh0d0urPbA.pdf\",srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:\"var(--token-d1d40e09-1faa-4906-be63-e0976e5aaa97, rgb(125, 77, 153))\",borderRadius:4,color:\"var(--token-c2b02264-97d2-4184-a7b1-891b6c5ae898, rgb(255, 255, 255))\",gap:10,padding:10,paddingBottom:16,paddingLeft:24,paddingPerSide:true,paddingRight:24,paddingTop:16},text:\"Download Privacy Statement\",width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q8ouk3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBOZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Avenir Next Medium\", \"Avenir Next Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(100, 106, 109)\"},children:\"To view and manage data that Lucky Orange has collected about you on the LuckyOrange.com website, or to opt-out of future tracking please visit our data privacy management tool.\"})}),className:\"framer-134l1us\",\"data-framer-name\":\"Improve your website's conversion rate using our collection of tools including Dynamic Heatmaps, Session Recordings and Surveys.\",fonts:[\"CUSTOM;Avenir Next Medium\"],name:\"Improve your website's conversion rate using our collection of tools including Dynamic Heatmaps, Session Recordings and Surveys.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBOZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Avenir Next Medium\", \"Avenir Next Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(100, 106, 109)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://privacy.luckyorange.com/\",nodeId:\"zOtBu4eCO\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-15w8e4j\",\"data-styles-preset\":\"apHXfIOg5\",children:\"View Data Privacy Manager\"})})})}),className:\"framer-hq7c27\",\"data-framer-name\":\"Improve your website's conversion rate using our collection of tools including Dynamic Heatmaps, Session Recordings and Surveys.\",fonts:[\"CUSTOM;Avenir Next Medium\"],name:\"Improve your website's conversion rate using our collection of tools including Dynamic Heatmaps, Session Recordings and Surveys.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:518,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-pxsrim-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikWCIpF2L:{variant:\"A51GUylR6\"},QBmgMWCxI:{variant:\"B_ouA44TW\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"zXL4kto_x\",layoutId:\"zXL4kto_x\",style:{width:\"100%\"},variant:\"DH1d0AYQO\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-aOGH7 { background: var(--token-5132fdcd-00f3-4fc3-baf8-aceba2316fd1, rgb(240, 240, 239)) /* {\"name\":\"Surface/50\"} */; }`,\".framer-aOGH7.framer-qfwb6f, .framer-aOGH7 .framer-qfwb6f { display: block; }\",\".framer-aOGH7.framer-1yqryox { align-content: center; align-items: center; background-color: var(--token-5132fdcd-00f3-4fc3-baf8-aceba2316fd1, #f0f0ef); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 87px 0px 0px 0px; position: relative; width: 1440px; }\",\".framer-aOGH7 .framer-92d48m-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 1; }\",\".framer-aOGH7 .framer-5b14sb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 56px 0px 56px 0px; position: relative; width: 100%; }\",\".framer-aOGH7 .framer-49c1vs { flex: none; height: auto; max-width: 803px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-aOGH7 .framer-1winlup { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 56px 16px 56px 16px; position: relative; width: 100%; }\",\".framer-aOGH7 .framer-xytj58, .framer-aOGH7 .framer-18z1zd8 { --border-bottom-width: 2px; --border-color: #ff704c; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 365px; min-width: 360px; overflow: hidden; padding: 40px 20px 46px 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-aOGH7 .framer-1w9915v, .framer-aOGH7 .framer-kgy57m { flex: none; height: 80px; overflow: visible; position: relative; width: 80px; }\",\".framer-aOGH7 .framer-a75bj0, .framer-aOGH7 .framer-8afyfp { flex: none; height: 80px; left: calc(50.00000000000002% - 80px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 80px / 2); width: 80px; }\",\".framer-aOGH7 .framer-o0b3sv, .framer-aOGH7 .framer-66ra5v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-aOGH7 .framer-1ws12tc, .framer-aOGH7 .framer-1ttg3of { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-aOGH7 .framer-146wb9g, .framer-aOGH7 .framer-3z2fyc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-aOGH7 .framer-7hbf25, .framer-aOGH7 .framer-mu2c0k, .framer-aOGH7 .framer-1ko3u3q, .framer-aOGH7 .framer-6n4n79 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-aOGH7 .framer-jzsn1p, .framer-aOGH7 .framer-1ftp3uc { align-content: flex-start; align-items: flex-start; 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: 325px; }\",\".framer-aOGH7 .framer-ggkotl, .framer-aOGH7 .framer-k7q7fk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 325px; word-break: break-word; word-wrap: break-word; }\",\".framer-aOGH7 .framer-wq98n3-container, .framer-aOGH7 .framer-1gj7nfz-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-aOGH7 .framer-q8ouk3 { 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: hidden; padding: 56px 135px 56px 135px; position: relative; width: 100%; }\",\".framer-aOGH7 .framer-134l1us, .framer-aOGH7 .framer-hq7c27 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-aOGH7 .framer-pxsrim-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-aOGH7.framer-1yqryox, .framer-aOGH7 .framer-5b14sb, .framer-aOGH7 .framer-1winlup, .framer-aOGH7 .framer-xytj58, .framer-aOGH7 .framer-o0b3sv, .framer-aOGH7 .framer-1ws12tc, .framer-aOGH7 .framer-146wb9g, .framer-aOGH7 .framer-jzsn1p, .framer-aOGH7 .framer-18z1zd8, .framer-aOGH7 .framer-66ra5v, .framer-aOGH7 .framer-1ttg3of, .framer-aOGH7 .framer-3z2fyc, .framer-aOGH7 .framer-1ftp3uc, .framer-aOGH7 .framer-q8ouk3 { gap: 0px; } .framer-aOGH7.framer-1yqryox > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-aOGH7.framer-1yqryox > :first-child, .framer-aOGH7 .framer-5b14sb > :first-child, .framer-aOGH7 .framer-xytj58 > :first-child, .framer-aOGH7 .framer-o0b3sv > :first-child, .framer-aOGH7 .framer-1ws12tc > :first-child, .framer-aOGH7 .framer-146wb9g > :first-child, .framer-aOGH7 .framer-18z1zd8 > :first-child, .framer-aOGH7 .framer-66ra5v > :first-child, .framer-aOGH7 .framer-1ttg3of > :first-child, .framer-aOGH7 .framer-3z2fyc > :first-child, .framer-aOGH7 .framer-q8ouk3 > :first-child { margin-top: 0px; } .framer-aOGH7.framer-1yqryox > :last-child, .framer-aOGH7 .framer-5b14sb > :last-child, .framer-aOGH7 .framer-xytj58 > :last-child, .framer-aOGH7 .framer-o0b3sv > :last-child, .framer-aOGH7 .framer-1ws12tc > :last-child, .framer-aOGH7 .framer-146wb9g > :last-child, .framer-aOGH7 .framer-18z1zd8 > :last-child, .framer-aOGH7 .framer-66ra5v > :last-child, .framer-aOGH7 .framer-1ttg3of > :last-child, .framer-aOGH7 .framer-3z2fyc > :last-child, .framer-aOGH7 .framer-q8ouk3 > :last-child { margin-bottom: 0px; } .framer-aOGH7 .framer-5b14sb > *, .framer-aOGH7 .framer-o0b3sv > *, .framer-aOGH7 .framer-66ra5v > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-aOGH7 .framer-1winlup > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-aOGH7 .framer-1winlup > :first-child, .framer-aOGH7 .framer-jzsn1p > :first-child, .framer-aOGH7 .framer-1ftp3uc > :first-child { margin-left: 0px; } .framer-aOGH7 .framer-1winlup > :last-child, .framer-aOGH7 .framer-jzsn1p > :last-child, .framer-aOGH7 .framer-1ftp3uc > :last-child { margin-right: 0px; } .framer-aOGH7 .framer-xytj58 > *, .framer-aOGH7 .framer-18z1zd8 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-aOGH7 .framer-1ws12tc > *, .framer-aOGH7 .framer-1ttg3of > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-aOGH7 .framer-146wb9g > *, .framer-aOGH7 .framer-3z2fyc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-aOGH7 .framer-jzsn1p > *, .framer-aOGH7 .framer-1ftp3uc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-aOGH7 .framer-q8ouk3 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-aOGH7 { background: var(--token-5132fdcd-00f3-4fc3-baf8-aceba2316fd1, rgb(240, 240, 239)) /* {\"name\":\"Surface/50\"} */; } .framer-aOGH7.framer-1yqryox { padding: 50px 0px 0px 0px; width: 390px; } .framer-aOGH7 .framer-92d48m-container { order: 4; } .framer-aOGH7 .framer-5b14sb { order: 0; } .framer-aOGH7 .framer-1winlup { order: 1; padding: 0px 16px 56px 16px; } .framer-aOGH7 .framer-xytj58, .framer-aOGH7 .framer-18z1zd8 { max-width: 100%; } .framer-aOGH7 .framer-q8ouk3 { order: 2; padding: 0px 16px 56px 16px; } .framer-aOGH7 .framer-pxsrim-container { order: 3; }}`,`@media (min-width: 810px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-aOGH7 { background: var(--token-5132fdcd-00f3-4fc3-baf8-aceba2316fd1, rgb(240, 240, 239)) /* {\"name\":\"Surface/50\"} */; } .framer-aOGH7.framer-1yqryox { padding: 130px 0px 0px 0px; width: 810px; }}`,...sharedStyle.css,...sharedStyle1.css,'.framer-aOGH7[data-border=\"true\"]::after, .framer-aOGH7 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1548\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ikWCIpF2L\":{\"layout\":[\"fixed\",\"auto\"]},\"QBmgMWCxI\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerisbSY2QsT=withCSS(Component,css,\"framer-aOGH7\");export default FramerisbSY2QsT;FramerisbSY2QsT.displayName=\"Legal\";FramerisbSY2QsT.defaultProps={height:1548,width:1440};addFonts(FramerisbSY2QsT,[{explicitInter:true,fonts:[{family:\"Avenir Next Demi Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/L70GWofqjJf24MXEaKD2ZKHgg.ttf\"},{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:\"Avenir Next Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/UuygFl8kWPz8RNBBjy4npOkI.ttf\"},{family:\"Avenir Next Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/N5FzlJA8lri3kT9heRoCfr5wQ.ttf\"}]},...NavigationFonts,...DownloadFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerisbSY2QsT\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ikWCIpF2L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QBmgMWCxI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"1548\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["IconType", "SrcType", "metaTagSelector", "isPublishedSiteOrSSG", "Download", "props", "styleOptions", "hoverOptions", "iconOptions", "backgroundColor", "color", "borderRadius", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "gap", "isInPublishedSiteOrSSG", "downloadURL", "paddingValue", "getIcon", "ref", "ref1", "iconStyle", "p", "getCursor", "buttonTitle", "u", "motion", "buttonStyles", "flexAlignSwitch", "addPropertyControls", "ControlType", "fontControlStyles", "NavigationFonts", "getFonts", "BeP451CMM_default", "DownloadFonts", "Download", "FooterFonts", "jKZyW5Cc_default", "breakpoints", "serializationHash", "variantClassNames", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Container", "PropertyOverrides2", "BeP451CMM_default", "x", "RichText2", "Image2", "Download", "Link", "jKZyW5Cc_default", "css", "FramerisbSY2QsT", "withCSS", "isbSY2QsT_default", "addFonts", "NavigationFonts", "DownloadFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
