{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/8A5poTJl0FA907Fii41v/VR3uREYZpxeGeaftGT9Y/DashbordComps.js", "ssg:https://framerusercontent.com/modules/bfaOXkOvtWdZ5qYjauy3/6VWplZm0oKddjscUsLTR/GradientBorder.js", "ssg:https://framerusercontent.com/modules/XDyeCnN7HvzYoo5TVASh/X6SqY1HpBiDeQaTO8whY/ALdcQHg8n.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{Children,cloneElement,useEffect}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";// Learn more: https://www.framer.com/developers/overrides/\nconst cleanValue=value=>value===\"BUSINESS_VALUE_ERROR\"?\"\":value||\"\";const useAuthStore=createStore({isAuthenticated:false,token:\"\",profile:{},loading:true,recentAgents:[],subscription:{}});// Singleton pattern ensures only one profile fetch\nlet hasVerifiedToken=false;export function Skeleton({width=\"100%\",height=\"1rem\",borderRadius=\"4px\"}){// Add keyframes globally if not already present.\n// For a minimal example, we inject them once here.\nuseEffect(()=>{const skeletonAnimation=`\n@keyframes skeletonLoading {\n  0% { background-position: 200% 0; }\n  100% { background-position: -200% 0; }\n}`;if(typeof window!==\"undefined\"&&typeof document!==\"undefined\"){if(!document.getElementById(\"skeleton-animation\")){const style=document.createElement(\"style\");style.id=\"skeleton-animation\";style.innerHTML=skeletonAnimation;document.head.appendChild(style);}}},[]);return /*#__PURE__*/_jsx(\"div\",{style:{width,height,borderRadius,backgroundColor:\"rgba(0, 0, 0, 0.05)\",backgroundImage:\"linear-gradient(90deg, rgba(0,0,0,0.05) 25%, rgba(0,0,0,0.08) 50%, rgba(0,0,0,0.05) 75%)\",backgroundSize:\"200% 100%\",animation:\"skeletonLoading 1.5s infinite\"}});}// Skeleton animation (can add to global CSS)\nconst skeletonAnimation=`\n@keyframes loading {\n    0% { background-position: 200% 0; }\n    100% { background-position: -200% 0; }\n}`;if(typeof window!==\"undefined\"&&typeof document!==\"undefined\"){document.head.insertAdjacentHTML(\"beforeend\",`<style>${skeletonAnimation}</style>`);}async function fetchProfile(token){const profileUrl=window.location.href.includes(\"staging\")?\"https://staging.enso.bot/users/api/v1/user\":\"https://prod.enso.bot/users/api/v1/user\";const response=await fetch(profileUrl,{headers:{Authorization:`Bearer ${token}`,\"Content-Type\":\"application/json\"}});if(!response.ok)throw new Error(`Error fetching profile: ${response.status}`);return await response.json();}async function fetchSubscriptionInfo(token){const get_subscription_data=window.location.href.includes(\"staging\")?\"https://staging.enso.bot/users/api/v1/payment/get_subscription_data\":\"https://prod.enso.bot/users/api/v1/payment/get_subscription_data\";const response=await fetch(get_subscription_data,{headers:{Authorization:`Bearer ${token}`,\"Content-Type\":\"application/json\"}});if(!response.ok)throw new Error(`Error fetching profile: ${response.status}`);return await response.json();}async function fetchRecentAgents(token){const recentAgentsUrl=window.location.href.includes(\"staging\")?\"https://staging.enso.bot/agents/api/v1/agent/used\":\"https://prod.enso.bot/agents/api/v1/agent/used\";const response=await fetch(recentAgentsUrl,{headers:{Authorization:`Bearer ${token}`,\"Content-Type\":\"application/json\"}});if(!response.ok)throw new Error(`Error fetching profile: ${response.status}`);return await response.json();}async function updateProfile(token,userData){const userUrl=window.location.href.includes(\"staging\")?\"https://staging.enso.bot/users/api/v1/user\":\"https://prod.enso.bot/users/api/v1/user\";const response=await fetch(userUrl,{method:\"PUT\",headers:{\"Content-Type\":\"application/json\",Authorization:`Bearer ${token}`},body:JSON.stringify(userData)});if(!response.ok)throw new Error(`Error fetching profile: ${response.status}`);return await response.json();}// async function verifyToken(setAuthStore) {\n//     try {\n//         const getCurrentUser =\n//             await window.aws_amplify.Auth.currentAuthenticatedUser()\n//         let token = getCurrentUser.signInUserSession.accessToken.jwtToken\n//         // console.log(\"test1\", test1)\n//         if (!token) {\n//             const session = await window.aws_amplify.Auth.currentSession()\n//             token = session.getAccessToken().getJwtToken()\n//             window.localStorage.setItem(\"framerAccessToken\", token)\n//         }\n//         const profile = await fetchProfile(token)\n//         const subscription = await fetchSubscriptionInfo(token)\n//         // 2) Fetch recent agents\n//         const agents = await fetchRecentAgents(token)\n//         setAuthStore({\n//             isAuthenticated: true,\n//             token,\n//             profile,\n//             subscription,\n//             loading: false,\n//             recentAgents: agents,\n//         })\n//     } catch (err) {\n//         console.error(\"Authentication error:\", err)\n//         setAuthStore({\n//             isAuthenticated: false,\n//             token: \"\",\n//             profile: {},\n//             loading: false,\n//             recentAgents: [],\n//         })\n//         window.localStorage.removeItem(\"framerAccessToken\")\n//     }\n// }\nasync function verifyToken(setAuthStore){try{const user=await window.aws_amplify.Auth.currentAuthenticatedUser();const token=user.signInUserSession.accessToken.jwtToken;// 1\uFE0F\u20E3 mandatory\nconst profile=await fetchProfile(token);// 2\uFE0F\u20E3 nice-to-have \u2013 let them fail quietly\nconst[subscriptionRes,agentsRes]=await Promise.allSettled([fetchSubscriptionInfo(token),fetchRecentAgents(token)]);setAuthStore({isAuthenticated:true,token,profile,subscription:subscriptionRes.status===\"fulfilled\"?subscriptionRes.value:{},recentAgents:agentsRes.status===\"fulfilled\"?agentsRes.value:[],loading:false});}catch(err){console.error(\"Authentication error:\",err);setAuthStore({isAuthenticated:false,token:\"\",profile:{},loading:false,recentAgents:[]});window.localStorage.removeItem(\"framerAccessToken\");}}export function useAuth(){const[authStore,setAuthStore]=useAuthStore();useEffect(()=>{if(!hasVerifiedToken){hasVerifiedToken=true;verifyToken(setAuthStore);}},[setAuthStore]);return authStore;}export function fullNameView(Component){return props=>{const{isAuthenticated,profile,loading}=useAuth();if(loading)return /*#__PURE__*/_jsx(Skeleton,{width:\"120px\",height:\"24px\",borderRadius:\"6px\"});if(!isAuthenticated){// window.location.replace(\"/app/auth/signin\")\nreturn null;}const replaceNameInChildren=element=>{if(typeof element===\"string\"){return element.replace(\"{name}\",`${profile.firstName} ${profile.lastName}`||\"\");}if(element.props&&element.props.children){return{...element,props:{...element.props,children:replaceNameInChildren(element.props.children)}};}return element;};const enhancedProps={...props,children:replaceNameInChildren(props.children)};return /*#__PURE__*/_jsx(Component,{...enhancedProps});};}export function heroScreenshot(Component){return props=>{const{isAuthenticated,profile,loading}=useAuth();console.log(props);return /*#__PURE__*/_jsx(Component,{...props});};}export function emailView(Component){return props=>{const{isAuthenticated,profile,loading}=useAuth();if(loading)return /*#__PURE__*/_jsx(Skeleton,{width:\"120px\",height:\"24px\",borderRadius:\"6px\"});if(!isAuthenticated){// window.location.replace(\"/app/auth/signin\")\nreturn null;}const replaceNameInChildren=element=>{if(typeof element===\"string\"){return element.replace(\"{email}\",`${profile.email}`||\"\");}if(element.props&&element.props.children){return{...element,props:{...element.props,children:replaceNameInChildren(element.props.children)}};}return element;};const enhancedProps={...props,children:replaceNameInChildren(props.children)};return /*#__PURE__*/_jsx(Component,{...enhancedProps});};}export function heroBusinessName(Component){return props=>{const{isAuthenticated,profile,loading}=useAuth();// Show skeleton while loading\nif(loading){return /*#__PURE__*/_jsx(Skeleton,{width:\"120px\",height:\"24px\",borderRadius:\"6px\"});}// If not authenticated, return nothing (or redirect)\nif(!isAuthenticated){// window.location.replace(\"/app/auth/signin\")\nreturn null;}// Return null if business is empty or has error indicator\nif(!profile.businessName||profile.businessName===\"BUSINESS_VALUE_ERROR\"){return null;}// Recursively replace {businessName} in the children\nconst replaceNameInChildren=element=>{if(typeof element===\"string\"){return element.replace(\"{businessName}\",profile.businessName||\"Your Business\");}if(element.props&&element.props.children){return{...element,props:{...element.props,children:replaceNameInChildren(element.props.children)}};}return element;};// Spread props and apply transformations\nconst enhancedProps={...props,children:replaceNameInChildren(props.children)};return /*#__PURE__*/_jsx(Component,{...enhancedProps});};}export function heroWebsite(Component){return props=>{const{isAuthenticated,profile,loading}=useAuth();// Show skeleton while loading\nif(loading){return /*#__PURE__*/_jsx(Skeleton,{width:\"120px\",height:\"24px\",borderRadius:\"6px\"});}// If not authenticated, return nothing (or redirect)\nif(!isAuthenticated){// window.location.replace(\"/app/auth/signin\")\nreturn null;}// Return null if business is empty or has error indicator\nif(!profile.website||profile.website===\"BUSINESS_VALUE_ERROR\"){return null;}// Recursively replace {businessName} in the children\nconst replaceNameInChildren=element=>{if(typeof element===\"string\"){return element.replace(\"{website}\",profile.website||\"\");}if(element.props&&element.props.children){return{...element,props:{...element.props,children:replaceNameInChildren(element.props.children)}};}return element;};// Spread props and apply transformations\nconst enhancedProps={...props,children:replaceNameInChildren(props.children)};return /*#__PURE__*/_jsx(Component,{...enhancedProps});};}export function heroFirstName(Component){return props=>{const{isAuthenticated,profile,loading}=useAuth();// Show skeleton while loading\nif(loading){return /*#__PURE__*/_jsx(Skeleton,{width:\"120px\",height:\"24px\",borderRadius:\"6px\"});}// If not authenticated, return nothing (or redirect)\nif(!isAuthenticated){// window.location.replace(\"/app/auth/signin\")\nreturn null;}// Return null if business is empty or has error indicator\nif(!profile.firstName||profile.firstName===\"BUSINESS_VALUE_ERROR\"){return null;}// Recursively replace {businessName} in the children\nconst replaceNameInChildren=element=>{if(typeof element===\"string\"){return element.replace(\"{name}\",profile.firstName||\"\");}if(element.props&&element.props.children){return{...element,props:{...element.props,children:replaceNameInChildren(element.props.children)}};}return element;};// Spread props and apply transformations\nconst enhancedProps={...props,children:replaceNameInChildren(props.children)};return /*#__PURE__*/_jsx(Component,{...enhancedProps});};}export function heroLogo(Component){return props=>{const{isAuthenticated,profile,loading}=useAuth();if(loading)return /*#__PURE__*/_jsx(Skeleton,{width:\"24px\",height:\"24px\",borderRadius:\"100px\"});// if (!isAuthenticated) {\n//     return null\n// }\nconst logoUrl=profile.logoUrl||props.background?.src;const enhancedProps={...props,background:{...props.background,src:logoUrl,srcSet:logoUrl}};return /*#__PURE__*/_jsx(Component,{...enhancedProps});};}export function heroWebsiteScreenshot(Component){return props=>{const{isAuthenticated,profile,loading}=useAuth();if(loading)return /*#__PURE__*/_jsx(Skeleton,{width:\"24px\",height:\"24px\",borderRadius:\"100px\"});if(!isAuthenticated){return null;}const logoUrl=profile.websiteScreenshotUrl||props.background?.src;const enhancedProps={...props,background:{...props.background,src:logoUrl,srcSet:logoUrl}};return /*#__PURE__*/_jsx(Component,{...enhancedProps});};}export function heroColorPaletteFirst(Component){return props=>{const{isAuthenticated,profile,loading}=useAuth();if(loading)return /*#__PURE__*/_jsx(Skeleton,{width:\"24px\",height:\"24px\",borderRadius:\"100px\"});if(!isAuthenticated){// window.location.replace(\"/app/auth/signin\")\nreturn null;}const firstColor=profile.colorPalette?.split(\",\")[0]?.trim()||\"#FFFFFF\";const enhancedProps={...props,style:{...props.style||{},backgroundColor:firstColor}};return /*#__PURE__*/_jsx(Component,{...enhancedProps});};}export function heroColorPaletteSecond(Component){return props=>{const{isAuthenticated,profile,loading}=useAuth();if(loading)return /*#__PURE__*/_jsx(Skeleton,{width:\"24px\",height:\"24px\",borderRadius:\"100px\"});if(!isAuthenticated){// window.location.replace(\"/app/auth/signin\")\nreturn null;}const firstColor=profile.colorPalette?.split(\",\")[1]?.trim()||\"#FFFFFF\";const enhancedProps={...props,style:{...props.style||{},backgroundColor:firstColor}};return /*#__PURE__*/_jsx(Component,{...enhancedProps});};}export function heroColorPaletteThird(Component){return props=>{const{isAuthenticated,profile,loading}=useAuth();if(loading)return /*#__PURE__*/_jsx(Skeleton,{width:\"24px\",height:\"24px\",borderRadius:\"100px\"});if(!isAuthenticated){// window.location.replace(\"/app/auth/signin\")\nreturn null;}const firstColor=profile.colorPalette?.split(\",\")[2]?.trim()||\"#FFFFFF\";const enhancedProps={...props,style:{...props.style||{},backgroundColor:firstColor}};return /*#__PURE__*/_jsx(Component,{...enhancedProps});};}export function heroRecentAgents(Component){return props=>{const{loading,isAuthenticated,recentAgents}=useAuth();if(loading){return /*#__PURE__*/_jsx(Skeleton,{width:\"120px\",height:\"24px\",borderRadius:\"6px\"});}if(!isAuthenticated){return null;}// Convert props.children to an array\nlet childrenArray=Children.toArray(props.children);// Remove extra items if fewer agents\nif(recentAgents.length<childrenArray.length){childrenArray=childrenArray.slice(0,recentAgents.length);}// Map each child to the corresponding agent data\nconst newChildren=childrenArray.map((child,index)=>{const agentData=recentAgents[index]||{};const agentNameKebabCase=agentData.agentId;// .toLowerCase()\n// .replace(/[\\s,]+/g, \"-\") // Replace spaces and commas with hyphens\n// .replace(/[()]/g, \"\") // Remove parentheses\nconst agentId=agentNameKebabCase||\"\";const agentTitle=agentData.title||\"Untitled Agent\";const agentImage=agentData.agentBackground||\"\";return replaceAgentInChild(child,agentTitle,agentImage,agentId);});const enhancedProps={...props,children:newChildren};return /*#__PURE__*/_jsx(Component,{...enhancedProps});};}/**\n * Recursively clones the child's structure to:\n * 1) Replace raw text 'Agent 1' with agentTitle (or override any raw text if desired).\n * 2) Replace YyNR_FxiX with agentTitle if present.\n * 3) Replace background.src with agentImage.\n * 4) Adjust link (href) to the correct environment-based agent URL if agentId is present.\n */function replaceAgentInChild(child,agentTitle,agentImage,agentId){// Handle raw string children\nif(typeof child===\"string\"){// Overwrite any string with agentTitle, or conditionally replace only \"Agent 1\"\nreturn agentTitle;}// If it's not a valid React element, return as-is\nif(!child||typeof child!==\"object\"||!(\"props\"in child)){return child;}const newProps={...child.props};// Recur on children\nif(Array.isArray(newProps.children)){newProps.children=newProps.children.map(c=>replaceAgentInChild(c,agentTitle,agentImage,agentId));}else if(typeof newProps.children===\"string\"){// If it's a single raw string\nnewProps.children=agentTitle;}else if(newProps.children){newProps.children=replaceAgentInChild(newProps.children,agentTitle,agentImage,agentId);}// // Replace YyNR_FxiX if present\n// if (newProps.YyNR_FxiX) {\n//     newProps.YyNR_FxiX = agentTitle\n// }\n// Replace the background image if present\nif(newProps.background?.src&&agentImage){newProps.background={...newProps.background,src:agentImage,srcSet:agentImage};}// 4) Set link to environment-based agent URL if `agentId` is present\nif(agentId){const baseUrl=window.location.href.includes(\"staging\")?\"https://staging.enso.bot/app/agent\":\"https://enso.bot/app/agent\";newProps.href=`${baseUrl}/${agentId}`;}return /*#__PURE__*/cloneElement(child,newProps);}export function agentEmbedURLModifier(Component){return props=>{const{isAuthenticated,loading}=useAuth();// Show skeleton while loading\nif(loading){return /*#__PURE__*/_jsx(\"div\",{style:{width:\"300px\"},children:/*#__PURE__*/_jsx(Skeleton,{width:\"120px\",height:\"120px\",borderRadius:\"60px\"})});}// If not authenticated, optionally do nothing or redirect\nif(!isAuthenticated){return null;}// Check if current URL contains \"staging\"\nconst isStaging=window.location.href.includes(\"staging\");const baseUrl=isStaging?\"https://www.staging.enso.bot/app/agent\":\"https://www.enso.bot/app/agent\";// Build the final embed URL\n// e.g. if props.url = \"rec41mopqanco6wba\"\n// => \"https://staging.enso.bot/app/agent/rec41mopqanco6wba?hideNav=true\"\nconst updatedUrl=`${baseUrl}/${props.url}?hideNav=true`;// Create new props object\nconst newProps={...props,url:updatedUrl};return /*#__PURE__*/_jsx(Component,{...newProps});};}export function landingPageCheckRedirect(Component){return props=>{const{isAuthenticated,profile,loading}=useAuth();// If not authenticated, return nothing (or redirect)\nif(isAuthenticated){window.location.replace(\"/dashboard\");return null;}return /*#__PURE__*/_jsx(Component,{...props});};}export function onLogoutClick(Component){return props=>{const handleLogout=async()=>{try{// await window.aws_amplify.Auth.signOut({\n//     global: true,\n//     oauth: {\n//         redirectUrl:\n//             window.location.origin + \"/app/auth/signin\",\n//     },\n// })\n// window.location.reload()\nwindow.aws_amplify.Auth.signOut().then(()=>{window.location.href=\"/\";});}catch(error){console.error(\"Logout error:\",error);}};return /*#__PURE__*/_jsx(Component,{...props,onClick:handleLogout,style:{cursor:\"pointer\",...props.style}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"agentEmbedURLModifier\":{\"type\":\"reactHoc\",\"name\":\"agentEmbedURLModifier\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"heroBusinessName\":{\"type\":\"reactHoc\",\"name\":\"heroBusinessName\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fullNameView\":{\"type\":\"reactHoc\",\"name\":\"fullNameView\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emailView\":{\"type\":\"reactHoc\",\"name\":\"emailView\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"landingPageCheckRedirect\":{\"type\":\"reactHoc\",\"name\":\"landingPageCheckRedirect\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"heroColorPaletteSecond\":{\"type\":\"reactHoc\",\"name\":\"heroColorPaletteSecond\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"heroScreenshot\":{\"type\":\"reactHoc\",\"name\":\"heroScreenshot\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"onLogoutClick\":{\"type\":\"reactHoc\",\"name\":\"onLogoutClick\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"heroColorPaletteFirst\":{\"type\":\"reactHoc\",\"name\":\"heroColorPaletteFirst\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"heroFirstName\":{\"type\":\"reactHoc\",\"name\":\"heroFirstName\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"heroColorPaletteThird\":{\"type\":\"reactHoc\",\"name\":\"heroColorPaletteThird\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"heroLogo\":{\"type\":\"reactHoc\",\"name\":\"heroLogo\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"heroWebsiteScreenshot\":{\"type\":\"reactHoc\",\"name\":\"heroWebsiteScreenshot\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Skeleton\":{\"type\":\"reactComponent\",\"name\":\"Skeleton\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"heroWebsite\":{\"type\":\"reactHoc\",\"name\":\"heroWebsite\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useAuth\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"heroRecentAgents\":{\"type\":\"reactHoc\",\"name\":\"heroRecentAgents\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DashbordComps.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,motion}from\"framer\";export default function GradientBorder({style,children,gradient,gradientAngle,borderRadius,borderSize,backdrop,transition,effects:{hover:hoverEffect},overflow}){const gradientColors=gradient.map(({color,stop})=>`${color} ${stop}%`).join(\", \");const{gradientAngle:hoverGradientAngle,borderRadius:hoverBorderRadius,borderSize:hoverBorderSize}=hoverEffect.isEnabled&&hoverEffect||{};const borderContainer={...style,background:`linear-gradient(${gradientAngle}deg, ${gradientColors})`,padding:`${borderSize}px`,borderRadius,\"--inner-border-radius\":`${borderRadius-borderSize}px`,overflow:overflow===\"visible\"?\"visible\":\"hidden\"};const borderContainerHover=hoverEffect.isEnabled&&{background:`linear-gradient(${hoverGradientAngle}deg, ${gradientColors})`,padding:`${hoverBorderSize!==null&&hoverBorderSize!==void 0?hoverBorderSize:borderSize}px`,borderTopLeftRadius:`${hoverBorderRadius!==null&&hoverBorderRadius!==void 0?hoverBorderRadius:borderRadius}px`,borderTopRightRadius:`${hoverBorderRadius!==null&&hoverBorderRadius!==void 0?hoverBorderRadius:borderRadius}px`,borderBottomLeftRadius:`${hoverBorderRadius!==null&&hoverBorderRadius!==void 0?hoverBorderRadius:borderRadius}px`,borderBottomRightRadius:`${hoverBorderRadius!==null&&hoverBorderRadius!==void 0?hoverBorderRadius:borderRadius}px`,\"--inner-border-radius\":`${(hoverBorderRadius!==null&&hoverBorderRadius!==void 0?hoverBorderRadius:borderRadius)-borderSize}px`};const backgroundContainer={height:\"100%\",width:\"100%\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",background:backdrop,borderTopLeftRadius:\"var(--inner-border-radius)\",borderTopRightRadius:\"var(--inner-border-radius)\",borderBottomLeftRadius:\"var(--inner-border-radius)\",borderBottomRightRadius:\"var(--inner-border-radius)\",overflow};return /*#__PURE__*/_jsx(motion.div,{style:borderContainer,whileHover:borderContainerHover,transition:transition,children:/*#__PURE__*/_jsx(motion.div,{style:backgroundContainer,transition:transition,children:children})});}addPropertyControls(GradientBorder,{children:{type:ControlType.ComponentInstance,title:\"Content\"},gradient:{type:ControlType.Array,title:\"Gradient\",control:{type:ControlType.Object,title:\"Color stop\",controls:{color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#111111\"},stop:{type:ControlType.Number,title:\"Color stop\",defaultValue:0,unit:\"%\",min:0,max:100}}}},gradientAngle:{type:ControlType.Number,title:\"Gradient angle\",defaultValue:0,unit:\"deg\",min:0,max:360},borderRadius:{type:ControlType.Number,title:\"Border radius\",defaultValue:0,unit:\"px\",min:0},borderSize:{type:ControlType.Number,title:\"Border width\",defaultValue:1,unit:\"px\",min:0},backdrop:{type:ControlType.Color,title:\"Content background\",defaultValue:\"#fafafa\"},transition:{type:ControlType.Transition,defaultValue:{type:false}},effects:{type:ControlType.Object,title:\"Effects\",controls:{hover:{type:ControlType.Object,controls:{isEnabled:{type:ControlType.Enum,title:\"Enable\",options:[false,true],optionTitles:[\"No\",\"Yes\"],defaultValue:false,displaySegmentedControl:true},gradientAngle:{type:ControlType.Number,title:\"Gradient angle\",defaultValue:0,unit:\"deg\",min:0,max:360,hidden:({isEnabled})=>!isEnabled},borderRadius:{type:ControlType.Number,title:\"Border radius\",defaultValue:0,unit:\"px\",min:0,hidden:({isEnabled})=>!isEnabled},borderSize:{type:ControlType.Number,title:\"Border width\",defaultValue:0,unit:\"px\",min:0,hidden:({isEnabled})=>!isEnabled}}}}},overflow:{type:ControlType.Enum,title:\"Overflow\",defaultValue:\"visible\",options:[\"visible\",\"hidden\",\"scroll\",\"auto\"],optionTitles:[\"Visible\",\"Hidden\",\"Scroll\",\"Auto\"]}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"GradientBorder\",\"slots\":[\"children\"],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GradientBorder.map", "// Generated by Framer (86f5ff9)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={PsQtwxTbt:{hover:true,pressed:true}};const cycleOrder=[\"PsQtwxTbt\",\"wsHRn67M6\",\"rkrfNJOk6\"];const serializationHash=\"framer-jGbL8\";const variantClassNames={PsQtwxTbt:\"framer-v-35irz8\",rkrfNJOk6:\"framer-v-1hbd3q8\",wsHRn67M6:\"framer-v-v0vghq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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={\"Variant 3\":\"rkrfNJOk6\",Active:\"wsHRn67M6\",Default:\"PsQtwxTbt\"};const getProps=({click,focusColor,height,hover,icon,id,link,menuItem,padding,rightIcon,text,visible,width,...props})=>{return{...props,bWYFVT5cG:focusColor??props.bWYFVT5cG??\"0px 0px 0px 3px rgba(98, 98, 248, 0.3)\",cgLJydPe7:icon??props.cgLJydPe7??{pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/mOOoElc6311gtFmZNpnk8Yo0Q.svg\"},If9ngjXtW:visible??props.If9ngjXtW,KVkIsbWQy:padding??props.KVkIsbWQy??\"10px 16px 10px 12px\",UCTMFdqGq:menuItem??props.UCTMFdqGq??\"Menu Item\",variant:humanReadableVariantMap[props.variant]??props.variant??\"PsQtwxTbt\",WSrrNfefW:rightIcon??props.WSrrNfefW??{alt:\"\",pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/mOOoElc6311gtFmZNpnk8Yo0Q.svg\"},xH0440baH:click??props.xH0440baH,xpRz2T6Xg:link??props.xpRz2T6Xg,z9oTn2HNv:hover??props.z9oTn2HNv,zWi4T_812:text??props.zWi4T_812??true};};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,bWYFVT5cG,UCTMFdqGq,cgLJydPe7,If9ngjXtW,z9oTn2HNv,WSrrNfefW,xH0440baH,xpRz2T6Xg,KVkIsbWQy,zWi4T_812,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"PsQtwxTbt\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1xy59fb=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(xH0440baH){const res=await xH0440baH(...args);if(res===false)return false;}});const onMouseEnteris6ixp=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(z9oTn2HNv){const res=await z9oTn2HNv(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);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:xpRz2T6Xg,motionChild:true,nodeId:\"PsQtwxTbt\",openInNewTab:false,scopeId:\"ALdcQHg8n\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-35irz8\",className,classNames)} framer-1itrkmp`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"PsQtwxTbt\",onMouseEnter:onMouseEnteris6ixp,onTap:onTap1xy59fb,ref:refBinding,style:{\"--1ausjox\":bWYFVT5cG,\"--79qafz\":numberToPixelString(KVkIsbWQy),backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"none\",opacity:1,...style},variants:{\"PsQtwxTbt-hover\":{backgroundColor:\"rgb(240, 240, 255)\",opacity:1},\"PsQtwxTbt-pressed\":{backgroundColor:\"rgb(240, 240, 255)\",boxShadow:\"var(--1ausjox)\",opacity:1},rkrfNJOk6:{opacity:.3},wsHRn67M6:{backgroundColor:\"rgb(247, 248, 250)\"}},...addPropertyOverrides({\"PsQtwxTbt-hover\":{\"data-framer-name\":undefined},\"PsQtwxTbt-pressed\":{\"data-framer-name\":undefined},rkrfNJOk6:{\"data-framer-name\":\"Variant 3\"},wsHRn67M6:{\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18973gp\",\"data-framer-name\":\"Layout\",layoutDependency:layoutDependency,layoutId:\"XWQxWU9HG\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ctptsh\",\"data-framer-name\":\"menu/Home\",layoutDependency:layoutDependency,layoutId:\"FSEsj5yaV\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:22,intrinsicWidth:20,pixelHeight:24,pixelWidth:24,sizes:\"24px\",...toResponsiveImage(cgLJydPe7),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-15o40ek\",\"data-framer-name\":\"Vector\",layoutDependency:layoutDependency,layoutId:\"l1M4ZGCsz\"})}),zWi4T_812&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(13, 13, 13))\"},children:\"Menu Item\"})}),className:\"framer-12lp4lf\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"vnF4vw5cC\",style:{\"--extracted-r6o4lv\":\"rgb(13, 13, 13)\",\"--framer-paragraph-spacing\":\"0px\"},text:UCTMFdqGq,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({wsHRn67M6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(13, 13, 13))\"},children:\"Menu Item\"})}),fonts:[\"Inter-SemiBold\"]}},baseVariant,gestureVariant)})]}),If9ngjXtW&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:22,intrinsicWidth:20,pixelHeight:24,pixelWidth:24,sizes:\"24px\",...toResponsiveImage(WSrrNfefW),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-197d7y8\",\"data-framer-name\":\"Vector\",layoutDependency:layoutDependency,layoutId:\"siht7swcF\"})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jGbL8.framer-1itrkmp, .framer-jGbL8 .framer-1itrkmp { display: block; }\",\".framer-jGbL8.framer-35irz8 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: var(--79qafz); position: relative; text-decoration: none; width: 248px; will-change: var(--framer-will-change-override, transform); }\",\".framer-jGbL8 .framer-18973gp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-jGbL8 .framer-1ctptsh { flex: none; height: 24px; overflow: hidden; position: relative; width: 24px; }\",\".framer-jGbL8 .framer-15o40ek { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-jGbL8 .framer-12lp4lf { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-jGbL8 .framer-197d7y8 { flex: none; height: 24px; position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jGbL8.framer-35irz8, .framer-jGbL8 .framer-18973gp { gap: 0px; } .framer-jGbL8.framer-35irz8 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-jGbL8.framer-35irz8 > :first-child, .framer-jGbL8 .framer-18973gp > :first-child { margin-left: 0px; } .framer-jGbL8.framer-35irz8 > :last-child, .framer-jGbL8 .framer-18973gp > :last-child { margin-right: 0px; } .framer-jGbL8 .framer-18973gp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 248\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wsHRn67M6\":{\"layout\":[\"fixed\",\"auto\"]},\"rkrfNJOk6\":{\"layout\":[\"fixed\",\"auto\"]},\"EAzk3VqNn\":{\"layout\":[\"fixed\",\"auto\"]},\"wxt2wK8iF\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"bWYFVT5cG\":\"focusColor\",\"UCTMFdqGq\":\"menuItem\",\"cgLJydPe7\":\"icon\",\"If9ngjXtW\":\"visible\",\"z9oTn2HNv\":\"hover\",\"WSrrNfefW\":\"rightIcon\",\"xH0440baH\":\"click\",\"xpRz2T6Xg\":\"link\",\"KVkIsbWQy\":\"padding\",\"zWi4T_812\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerALdcQHg8n=withCSS(Component,css,\"framer-jGbL8\");export default FramerALdcQHg8n;FramerALdcQHg8n.displayName=\"Cell Primary\";FramerALdcQHg8n.defaultProps={height:44,width:248};addPropertyControls(FramerALdcQHg8n,{variant:{options:[\"PsQtwxTbt\",\"wsHRn67M6\",\"rkrfNJOk6\"],optionTitles:[\"Default\",\"Active\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},bWYFVT5cG:{defaultValue:[{blur:0,color:\"rgba(98, 98, 248, 0.3)\",diffusion:.5,focus:.5,inset:false,spread:3,type:\"box\",x:0,y:0}],title:\"Focus / Color\",type:ControlType.BoxShadow},UCTMFdqGq:{defaultValue:\"Menu Item\",displayTextArea:false,title:\"Menu Item\",type:ControlType.String},cgLJydPe7:{__defaultAssetReference:\"data:framer/asset-reference,mOOoElc6311gtFmZNpnk8Yo0Q.svg?originalFilename=0.+Placeholder.svg&preferredSize=auto\",title:\"Icon\",type:ControlType.ResponsiveImage},If9ngjXtW:{defaultValue:false,title:\"Visible\",type:ControlType.Boolean},z9oTn2HNv:{title:\"Hover\",type:ControlType.EventHandler},WSrrNfefW:{__defaultAssetReference:\"data:framer/asset-reference,mOOoElc6311gtFmZNpnk8Yo0Q.svg?originalFilename=0.+Placeholder.svg&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,mOOoElc6311gtFmZNpnk8Yo0Q.svg?originalFilename=0.+Placeholder.svg&preferredSize=auto\"},title:\"Right Icon\",type:ControlType.ResponsiveImage},xH0440baH:{title:\"Click\",type:ControlType.EventHandler},xpRz2T6Xg:{title:\"Link\",type:ControlType.Link},KVkIsbWQy:{defaultValue:\"10px 16px 10px 12px\",title:\"Padding\",type:ControlType.Padding},zWi4T_812:{defaultValue:true,title:\"Text\",type:ControlType.Boolean}});addFonts(FramerALdcQHg8n,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerALdcQHg8n\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"248\",\"framerVariables\":\"{\\\"bWYFVT5cG\\\":\\\"focusColor\\\",\\\"UCTMFdqGq\\\":\\\"menuItem\\\",\\\"cgLJydPe7\\\":\\\"icon\\\",\\\"If9ngjXtW\\\":\\\"visible\\\",\\\"z9oTn2HNv\\\":\\\"hover\\\",\\\"WSrrNfefW\\\":\\\"rightIcon\\\",\\\"xH0440baH\\\":\\\"click\\\",\\\"xpRz2T6Xg\\\":\\\"link\\\",\\\"KVkIsbWQy\\\":\\\"padding\\\",\\\"zWi4T_812\\\":\\\"text\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wsHRn67M6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rkrfNJOk6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EAzk3VqNn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wxt2wK8iF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"44\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ALdcQHg8n.map"],
  "mappings": "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",
  "names": ["useAuthStore", "createStore", "hasVerifiedToken", "Skeleton", "width", "height", "borderRadius", "ue", "skeletonAnimation", "window", "style", "p", "fetchProfile", "token", "profileUrl", "response", "fetchSubscriptionInfo", "get_subscription_data", "fetchRecentAgents", "recentAgentsUrl", "verifyToken", "setAuthStore", "token", "window", "profile", "fetchProfile", "subscriptionRes", "agentsRes", "fetchSubscriptionInfo", "fetchRecentAgents", "err", "useAuth", "authStore", "useAuthStore", "ue", "hasVerifiedToken", "fullNameView", "Component", "props", "isAuthenticated", "loading", "p", "Skeleton", "replaceNameInChildren", "element", "enhancedProps", "heroBusinessName", "Component", "props", "isAuthenticated", "profile", "loading", "useAuth", "p", "Skeleton", "replaceNameInChildren", "element", "enhancedProps", "heroWebsite", "heroFirstName", "heroLogo", "logoUrl", "heroWebsiteScreenshot", "heroColorPaletteFirst", "firstColor", "heroColorPaletteSecond", "heroColorPaletteThird", "heroRecentAgents", "recentAgents", "childrenArray", "j", "newChildren", "child", "index", "agentData", "agentId", "agentTitle", "agentImage", "replaceAgentInChild", "newProps", "c", "baseUrl", "window", "q", "agentEmbedURLModifier", "updatedUrl", "onLogoutClick", "Component", "props", "p", "window", "error", "GradientBorder", "style", "children", "gradient", "gradientAngle", "borderRadius", "borderSize", "backdrop", "transition", "hoverEffect", "overflow", "gradientColors", "color", "stop", "hoverGradientAngle", "hoverBorderRadius", "hoverBorderSize", "borderContainer", "borderContainerHover", "backgroundContainer", "p", "motion", "addPropertyControls", "ControlType", "isEnabled", "ALdcQHg8n_exports", "__export", "__FramerMetadata__", "ALdcQHg8n_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "focusColor", "height", "hover", "icon", "id", "link", "menuItem", "padding", "rightIcon", "text", "visible", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "bWYFVT5cG", "UCTMFdqGq", "cgLJydPe7", "If9ngjXtW", "z9oTn2HNv", "WSrrNfefW", "xH0440baH", "xpRz2T6Xg", "KVkIsbWQy", "zWi4T_812", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1xy59fb", "args", "onMouseEnteris6ixp", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "Image2", "RichText2", "css", "FramerALdcQHg8n", "withCSS", "ALdcQHg8n_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__"]
}
