{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/GfO5xRssENd3a9mV8bl6/Y1CxlPG1cUPjJbTriF6o/AbsoluteLink.js", "ssg:https://framerusercontent.com/modules/wBDVBcLMaWmhwZa6EuSw/DAdu7zX0QkleBQBKb0xx/EYH9WTsA_.js"],
  "sourcesContent": ["/**\n * AbsoluteLink.tsx - Environment-Aware Link Handler\n * =============================================\n *\n * A sophisticated component that manages URL transformations between production\n * and staging environments. It provides automatic URL conversion functionality\n * to ensure proper routing in different deployment contexts.\n *\n * Key Features:\n * - Automatic environment detection based on hostname\n * - URL transformation for staging environments\n * - Redirect URL parameter handling\n * - Higher-order component implementation\n *\n * Components and Functions:\n *\n * 1. Environment Detection:\n *    - Identifies production environment (ballparkhq.com)\n *    - Manages environment-specific URL patterns\n *\n * 2. URL Conversion:\n *    - Transforms production URLs to staging equivalents\n *    - Handles both app and marketing domain patterns\n *    - Maintains URL integrity during transformation\n *\n * 3. Redirect Management:\n *    - Processes 'next' parameter URLs in redirect chains\n *    - Ensures proper URL encoding/decoding\n *    - Preserves redirect functionality across environments\n *\n * 4. HOC Implementation:\n *    - Wraps components with URL conversion logic\n *    - Manages client-side state via useState\n *    - Ensures SSR compatibility through useLayoutEffect\n *\n * Usage:\n * const EnhancedComponent = envLinks(YourComponent);\n * <EnhancedComponent link=\"https://app.ballparkhq.com/some-path\" />\n */import{jsx as _jsx}from\"react/jsx-runtime\";import{useLayoutEffect,useState}from\"react\";/**\n * Environment Detection\n * Determines whether the current environment is the production domain.\n * This check is crucial for proper URL routing and transformation.\n */const isProduction=typeof window!==\"undefined\"&&window.location.hostname===\"ballparkhq.com\";/**\n * URL Transformation Mappings\n * Defines the patterns and their corresponding staging URLs.\n * Each mapping contains a regex pattern and its replacement URL.\n */const envMappings=[{regex:/^(https:\\/\\/)?app\\.ballparkhq\\.com?/,replacement:\"https://staging-app.ballparkhq.dev\"},{regex:/^(https:\\/\\/)?ballparkhq\\.com?/,replacement:\"https://staging-marketing.ballparkhq.dev\"}];/**\n * URL Environment Converter\n * Transforms URLs to their appropriate environment version.\n * Handles the conversion of production URLs to staging URLs when necessary.\n *\n * @param link - The URL to be converted\n * @returns The transformed URL or the original if no conversion is needed\n */const convertLinkToEnv=link=>{if(isProduction||!link)return link;for(const{regex,replacement}of envMappings){if(regex.test(link))return link.replace(regex,replacement);}return link;};/**\n * Redirect URL Processor\n * Manages the transformation of URLs containing 'next' parameters.\n * Ensures proper encoding and environment-specific routing for redirects.\n *\n * @param link - The redirect URL to process\n * @returns The processed redirect URL\n */const convertRedirectUrl=link=>isProduction||!link?link:link.replace(/([?|&]next=)([^&]+)/,(_,p1,p2)=>`${p1}${encodeURIComponent(convertLinkToEnv(decodeURIComponent(p2))??\"\")}`);/**\n * Environment-Aware Link HOC\n * A Higher Order Component that provides environment-specific URL handling.\n * Wraps components to ensure proper URL transformation and state management.\n *\n * Features:\n * - Client-side URL transformation\n * - SSR compatibility through useLayoutEffect\n * - Automatic environment detection and URL conversion\n *\n * @param Component - The React component to be wrapped\n * @returns A new component with environment-aware link handling\n */export function envLinks(Component){return({link,...props})=>{const[envLink,setEnvLink]=useState(link);// Ensures URL conversion occurs after SSR hydration\nuseLayoutEffect(()=>setEnvLink(link?convertRedirectUrl(convertLinkToEnv(link)):undefined),[link]);return /*#__PURE__*/_jsx(Component,{...props,link:envLink});};}\nexport const __FramerMetadata__ = {\"exports\":{\"envLinks\":{\"type\":\"reactHoc\",\"name\":\"envLinks\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AbsoluteLink.map", "// Generated by Framer (0afc761)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import{withHoverAndTap}from\"https://framerusercontent.com/modules/A3TmicKe8NoPvJbIUIV3/HDDIQhAyeVZ19HkStRHT/Buttons.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/8Pixtajh5PpaDX8I8EmJ/iek4Yn61lzebaR9WnA0G/VnKI0S84J.js\";import Divider from\"https://framerusercontent.com/modules/e3XboTSG0bMOjGzkEyzR/tNaGV399FdotLsbsmeZO/B8QLWqHU4.js\";const DividerFonts=getFonts(Divider);const PhosphorFonts=getFonts(Phosphor);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const MotionAWithHoverAndTap1ioib4x=withCodeBoundaryForOverrides(motion.a,{nodeId:\"cAQXCbEOq\",override:withHoverAndTap,scopeId:\"EYH9WTsA_\"});const enabledGestures={cAQXCbEOq:{hover:true,pressed:true},TMkkDDTdX:{hover:true}};const cycleOrder=[\"cAQXCbEOq\",\"TMkkDDTdX\"];const serializationHash=\"framer-FVMq4\";const variantClassNames={cAQXCbEOq:\"framer-v-1ioib4x\",TMkkDDTdX:\"framer-v-4dab1d\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:5};const transition2={bounce:0,delay:.05,duration:.4,type:\"spring\"};const textEffect={effect:animation,tokenization:\"character\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const transition3={bounce:.1,delay:.1,duration:.4,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:5};const transition4={bounce:.1,delay:.2,duration:.4,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={bounce:.1,delay:.3,duration:.4,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={bounce:.1,delay:.4,duration:.4,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={bounce:.1,delay:.5,duration:.4,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Button:\"cAQXCbEOq\",Plain:\"TMkkDDTdX\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"cAQXCbEOq\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"cAQXCbEOq\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"TMkkDDTdX-hover\")return false;if(baseVariant===\"TMkkDDTdX\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.g2.com/products/ballparkhq\",motionChild:true,nodeId:\"cAQXCbEOq\",scopeId:\"EYH9WTsA_\",children:/*#__PURE__*/_jsxs(MotionAWithHoverAndTap1ioib4x,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1ioib4x\",className,classNames)} framer-j8z8bo`,\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"cAQXCbEOq\",ref:refBinding,style:{backgroundColor:\"var(--token-14af63da-42d3-430d-a701-caef08fe5d17, rgb(255, 255, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"0px 0px 0px 1px var(--token-bc249fe1-a605-4153-b910-60bbe6014401, rgba(75, 85, 99, 0.1)), 0px 2px 4px 0px var(--token-bc249fe1-a605-4153-b910-60bbe6014401, rgba(75, 85, 99, 0.1))\",...style},variants:{\"cAQXCbEOq-hover\":{boxShadow:\"0px 0px 0px 1px rgba(75, 85, 99, 0.2), 0px 3px 6px 0px var(--token-bc249fe1-a605-4153-b910-60bbe6014401, rgba(75, 85, 99, 0.1))\"},\"cAQXCbEOq-pressed\":{backgroundColor:\"var(--token-d9f8817a-4c6b-4b40-84ec-ead7f98d1328, rgb(249, 250, 251))\",boxShadow:\"0px 0px 0px 1px rgba(75, 85, 99, 0.2), 0px 3px 6px 0px var(--token-bc249fe1-a605-4153-b910-60bbe6014401, rgba(75, 85, 99, 0.1))\"},TMkkDDTdX:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...addPropertyOverrides({\"cAQXCbEOq-hover\":{\"data-framer-name\":undefined},\"cAQXCbEOq-pressed\":{\"data-framer-name\":undefined},\"TMkkDDTdX-hover\":{\"data-framer-name\":undefined},TMkkDDTdX:{\"data-framer-name\":\"Plain\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2delir\",layoutDependency:layoutDependency,layoutId:\"d6XJS1zhD\",style:{backgroundColor:\"rgb(255, 73, 44)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1r2iioe\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"o7BmLQAAj\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 44 44\"><path d=\"M 31.533 18.407 L 25.813 18.407 L 25.813 18.113 C 25.79 17.292 25.993 16.48 26.4 15.767 C 26.917 15.027 27.627 14.443 28.453 14.08 L 28.893 13.86 C 29.627 13.493 29.847 13.127 29.847 12.687 C 29.847 12.247 29.48 11.88 28.747 11.88 C 27.944 11.902 27.228 12.389 26.913 13.127 L 25.813 12.027 C 26.105 11.528 26.506 11.101 26.987 10.78 C 27.501 10.488 28.082 10.336 28.673 10.34 C 29.4 10.332 30.114 10.536 30.727 10.927 C 31.253 11.357 31.551 12.007 31.533 12.687 C 31.533 13.86 30.873 14.593 29.627 15.18 L 28.967 15.547 C 28.233 15.913 27.867 16.28 27.793 16.867 L 31.533 16.867 Z M 34.1 25.593 L 31.02 30.947 L 27.94 25.593 L 21.707 25.593 L 24.787 20.24 L 31.02 20.24 Z M 26.913 27.427 L 29.627 32.193 C 27.464 33.731 24.874 34.552 22.22 34.54 C 15.294 34.54 9.68 28.926 9.68 22 C 9.68 15.074 15.294 9.46 22.22 9.46 C 23.056 9.457 23.891 9.531 24.713 9.68 L 22.22 14.813 C 18.251 14.813 15.033 18.031 15.033 22 C 15.033 25.969 18.251 29.187 22.22 29.187 C 23.946 29.189 25.614 28.563 26.913 27.427 Z\" fill=\"var(--token-14af63da-42d3-430d-a701-caef08fe5d17, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:10732473045,title:\"Ballpark G2 Review\",withExternalLayout:true,...addPropertyOverrides({\"TMkkDDTdX-hover\":{svgContentId:9661724267}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"1px\",y:(componentViewport?.y||0)+(10+((componentViewport?.height||200)-20-40)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2lkwnz-container\",layoutDependency:layoutDependency,layoutId:\"Rex9h_Qtg-container\",nodeId:\"Rex9h_Qtg\",rendersWithMotion:true,scopeId:\"EYH9WTsA_\",children:/*#__PURE__*/_jsx(Divider,{height:\"100%\",id:\"Rex9h_Qtg\",KuL09NCg0:\"var(--token-bc249fe1-a605-4153-b910-60bbe6014401, rgba(75, 85, 99, 0.1))\",layoutId:\"Rex9h_Qtg\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g2e7m6\",layoutDependency:layoutDependency,layoutId:\"CB0M4XUaE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-uw9y2l\",\"data-styles-preset\":\"VnKI0S84J\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a0902d3e-cbb2-4a80-a007-763a1bd6393b, rgb(17, 24, 39)))\"},children:\"4.6 Star Rating\"})}),className:\"framer-x4c0wn\",\"data-framer-name\":\"Label\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ib9_yQ06E\",style:{\"--extracted-r6o4lv\":\"var(--token-a0902d3e-cbb2-4a80-a007-763a1bd6393b, rgb(17, 24, 39))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"cAQXCbEOq-hover\":{\"--extracted-r6o4lv\":\"var(--token-f91a2f92-00ea-44a6-a049-b019fca47bec, rgb(252, 74, 43))\"},\"cAQXCbEOq-pressed\":{\"--extracted-r6o4lv\":\"var(--token-f91a2f92-00ea-44a6-a049-b019fca47bec, rgb(252, 74, 43))\"},\"TMkkDDTdX-hover\":{\"--extracted-r6o4lv\":\"var(--token-f91a2f92-00ea-44a6-a049-b019fca47bec, rgb(252, 74, 43))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"cAQXCbEOq-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-uw9y2l\",\"data-styles-preset\":\"VnKI0S84J\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f91a2f92-00ea-44a6-a049-b019fca47bec, rgb(252, 74, 43)))\"},children:\"4.6 Star Rating\"})})},\"cAQXCbEOq-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-uw9y2l\",\"data-styles-preset\":\"VnKI0S84J\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f91a2f92-00ea-44a6-a049-b019fca47bec, rgb(252, 74, 43)))\"},children:\"4.6 Star Rating\"})})},\"TMkkDDTdX-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-uw9y2l\",\"data-styles-preset\":\"VnKI0S84J\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f91a2f92-00ea-44a6-a049-b019fca47bec, rgb(252, 74, 43)))\"},children:\"4.6 Star Rating\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1stknjg\",layoutDependency:layoutDependency,layoutId:\"Z_3cJoCwh\",children:[/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-12agei2\",\"data-framer-appear-id\":\"12agei2\",initial:animation2,layoutDependency:layoutDependency,layoutId:\"V9xBIcIwD\",optimized:true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15sw4z2-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"FgJVKh2M5-container\",nodeId:\"FgJVKh2M5\",rendersWithMotion:true,scopeId:\"EYH9WTsA_\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-15abbc33-da8e-4074-910f-df86350d868e, rgb(245, 158, 11))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"FgJVKh2M5\",layoutId:\"FgJVKh2M5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-b0lnhx\",\"data-framer-appear-id\":\"b0lnhx\",initial:animation2,layoutDependency:layoutDependency,layoutId:\"eSPPU5c8V\",optimized:true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-k9yn23-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"o_zOfkFhe-container\",nodeId:\"o_zOfkFhe\",rendersWithMotion:true,scopeId:\"EYH9WTsA_\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-15abbc33-da8e-4074-910f-df86350d868e, rgb(245, 158, 11))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"o_zOfkFhe\",layoutId:\"o_zOfkFhe\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-bkjh0w\",\"data-framer-appear-id\":\"bkjh0w\",initial:animation2,layoutDependency:layoutDependency,layoutId:\"YEpIMngLX\",optimized:true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-i1ccql-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"klHarV3Ko-container\",nodeId:\"klHarV3Ko\",rendersWithMotion:true,scopeId:\"EYH9WTsA_\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-15abbc33-da8e-4074-910f-df86350d868e, rgb(245, 158, 11))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"klHarV3Ko\",layoutId:\"klHarV3Ko\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation5,className:\"framer-1scaik1\",\"data-framer-appear-id\":\"1scaik1\",initial:animation2,layoutDependency:layoutDependency,layoutId:\"DlmpUB9QB\",optimized:true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ix023g-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"tYcRW1LKm-container\",nodeId:\"tYcRW1LKm\",rendersWithMotion:true,scopeId:\"EYH9WTsA_\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-15abbc33-da8e-4074-910f-df86350d868e, rgb(245, 158, 11))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"tYcRW1LKm\",layoutId:\"tYcRW1LKm\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation6,className:\"framer-1r3sh2r\",\"data-framer-appear-id\":\"1r3sh2r\",initial:animation2,layoutDependency:layoutDependency,layoutId:\"pi3m2SScH\",optimized:true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mn69fk-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"HECplBIt9-container\",nodeId:\"HECplBIt9\",rendersWithMotion:true,scopeId:\"EYH9WTsA_\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-15abbc33-da8e-4074-910f-df86350d868e, rgb(245, 158, 11))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"StarHalf\",id:\"HECplBIt9\",layoutId:\"HECplBIt9\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FVMq4.framer-j8z8bo, .framer-FVMq4 .framer-j8z8bo { display: block; }\",\".framer-FVMq4.framer-1ioib4x { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px; position: relative; text-decoration: none; width: min-content; }\",\".framer-FVMq4 .framer-2delir { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; pointer-events: none; position: relative; user-select: none; width: min-content; }\",\".framer-FVMq4 .framer-1r2iioe { flex: none; height: 44px; position: relative; width: 44px; }\",\".framer-FVMq4 .framer-2lkwnz-container { flex: none; height: 40px; position: relative; width: 1px; }\",\".framer-FVMq4 .framer-1g2e7m6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 10px 0px 0px; position: relative; width: min-content; }\",\".framer-FVMq4 .framer-x4c0wn { -webkit-user-select: none; flex: none; height: auto; pointer-events: none; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-FVMq4 .framer-1stknjg { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-FVMq4 .framer-12agei2, .framer-FVMq4 .framer-b0lnhx, .framer-FVMq4 .framer-bkjh0w, .framer-FVMq4 .framer-1scaik1, .framer-FVMq4 .framer-1r3sh2r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-FVMq4 .framer-15sw4z2-container, .framer-FVMq4 .framer-k9yn23-container, .framer-FVMq4 .framer-i1ccql-container, .framer-FVMq4 .framer-1ix023g-container, .framer-FVMq4 .framer-1mn69fk-container { flex: none; height: 18px; position: relative; width: 18px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FVMq4.framer-1ioib4x, .framer-FVMq4 .framer-2delir, .framer-FVMq4 .framer-1g2e7m6, .framer-FVMq4 .framer-1stknjg, .framer-FVMq4 .framer-12agei2, .framer-FVMq4 .framer-b0lnhx, .framer-FVMq4 .framer-bkjh0w, .framer-FVMq4 .framer-1scaik1, .framer-FVMq4 .framer-1r3sh2r { gap: 0px; } .framer-FVMq4.framer-1ioib4x > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-FVMq4.framer-1ioib4x > :first-child, .framer-FVMq4 .framer-1stknjg > :first-child { margin-left: 0px; } .framer-FVMq4.framer-1ioib4x > :last-child, .framer-FVMq4 .framer-1stknjg > :last-child { margin-right: 0px; } .framer-FVMq4 .framer-2delir > *, .framer-FVMq4 .framer-12agei2 > *, .framer-FVMq4 .framer-b0lnhx > *, .framer-FVMq4 .framer-bkjh0w > *, .framer-FVMq4 .framer-1scaik1 > *, .framer-FVMq4 .framer-1r3sh2r > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-FVMq4 .framer-2delir > :first-child, .framer-FVMq4 .framer-1g2e7m6 > :first-child, .framer-FVMq4 .framer-12agei2 > :first-child, .framer-FVMq4 .framer-b0lnhx > :first-child, .framer-FVMq4 .framer-bkjh0w > :first-child, .framer-FVMq4 .framer-1scaik1 > :first-child, .framer-FVMq4 .framer-1r3sh2r > :first-child { margin-top: 0px; } .framer-FVMq4 .framer-2delir > :last-child, .framer-FVMq4 .framer-1g2e7m6 > :last-child, .framer-FVMq4 .framer-12agei2 > :last-child, .framer-FVMq4 .framer-b0lnhx > :last-child, .framer-FVMq4 .framer-bkjh0w > :last-child, .framer-FVMq4 .framer-1scaik1 > :last-child, .framer-FVMq4 .framer-1r3sh2r > :last-child { margin-bottom: 0px; } .framer-FVMq4 .framer-1g2e7m6 > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-FVMq4 .framer-1stknjg > * { margin: 0px; margin-left: calc(1px / 2); margin-right: calc(1px / 2); } }\",\".framer-FVMq4.framer-v-4dab1d.framer-1ioib4x { gap: 15px; padding: 0px; }\",\".framer-FVMq4.framer-v-4dab1d .framer-1g2e7m6 { padding: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FVMq4.framer-v-4dab1d.framer-1ioib4x { gap: 0px; } .framer-FVMq4.framer-v-4dab1d.framer-1ioib4x > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-FVMq4.framer-v-4dab1d.framer-1ioib4x > :first-child { margin-left: 0px; } .framer-FVMq4.framer-v-4dab1d.framer-1ioib4x > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 192\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"TMkkDDTdX\":{\"layout\":[\"auto\",\"auto\"]},\"s_ulGrTHh\":{\"layout\":[\"auto\",\"auto\"]},\"fYyqfGyFQ\":{\"layout\":[\"auto\",\"auto\"]},\"uq5wiylQj\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerEYH9WTsA_=withCSS(Component,css,\"framer-FVMq4\");export default FramerEYH9WTsA_;FramerEYH9WTsA_.displayName=\"G2\";FramerEYH9WTsA_.defaultProps={height:64,width:192};addPropertyControls(FramerEYH9WTsA_,{variant:{options:[\"cAQXCbEOq\",\"TMkkDDTdX\"],optionTitles:[\"Button\",\"Plain\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerEYH9WTsA_,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...DividerFonts,...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEYH9WTsA_\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"192\",\"framerIntrinsicHeight\":\"64\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"TMkkDDTdX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"s_ulGrTHh\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fYyqfGyFQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uq5wiylQj\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EYH9WTsA_.map"],
  "mappings": "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",
  "names": ["init_ssg_sandbox_shims", "isProduction", "envMappings", "convertLinkToEnv", "link", "regex", "replacement", "convertRedirectUrl", "_", "p1", "p2", "envLinks", "Component", "props", "envLink", "setEnvLink", "ye", "fe", "p", "init_ssg_sandbox_shims", "DividerFonts", "getFonts", "B8QLWqHU4_default", "PhosphorFonts", "Icon", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "MotionAWithHoverAndTap1ioib4x", "withCodeBoundaryForOverrides", "withHoverAndTap", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "textEffect", "transition3", "animation1", "animation2", "transition4", "animation3", "transition5", "animation4", "transition6", "animation5", "transition7", "animation6", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "Link", "u", "SVG", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerEYH9WTsA_", "withCSS", "EYH9WTsA_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
