{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/E2sRAL8JYDLiKlNZEJWF/GrHL4Ctb7Gg3POMUC1Dv/Webflow_Component.js", "ssg:https://framerusercontent.com/modules/mKxSdP2fbxYdetoVEFNo/9rqiuC9PXOuv8X941M6J/MgeIZFpJC.js", "ssg:https://framerusercontent.com/modules/TwQv5swbbR53qhherK46/tUAjAR52RKEm10QMkoL3/jQw9eRjRx.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{Frame,addPropertyControls,ControlType}from\"framer\";import{useState,useRef}from\"react\";import{supabase}from\"https://framerusercontent.com/modules/nDVu3G5S8HcSoHIu5Xtf/scCkcEBLdjhr9ehtQy0a/Figma_Data_Fetch.js\";import{useSessionData,onComponentUsed}from\"https://framerusercontent.com/modules/cdM9qsAvVyrbpqiGYiU4/APW2J0vjvIk3RpMbDsTW/Supabase.js\";// Utility for logging in development mode\nconst log={info:(...args)=>process.env.NODE_ENV!==\"production\"&&console.log(...args),error:(...args)=>process.env.NODE_ENV!==\"production\"&&console.error(...args)};// Function to copy Webflow data to clipboard\nconst copyWebflowToClipboard=async webflowCode=>{try{// Parse the JSON to ensure it's valid\nconst jsonData=typeof webflowCode===\"string\"?JSON.parse(webflowCode):webflowCode;return new Promise(resolve=>{// Create a copy event listener\nconst listener=event=>{// Set the clipboard data with application/json MIME type\nevent.clipboardData.setData(\"application/json\",JSON.stringify(jsonData));event.preventDefault();document.removeEventListener(\"copy\",listener);resolve(true);};// Add the event listener\ndocument.addEventListener(\"copy\",listener);// Trigger the copy command\nconst successful=document.execCommand(\"copy\");if(!successful){document.removeEventListener(\"copy\",listener);resolve(false);}});}catch(err){log.error(\"Failed to copy:\",err);return false;}};export function CopyWebflowComponentButton({tableName,rowId,buttonBackground,buttonHoverBackground,buttonText,textColor,borderRadius,onLoading,onSuccess,onError}){const[sessionData,setSessionData]=useSessionData();const[loading,setLoading]=useState(false);const[buttonLabel,setButtonLabel]=useState(buttonText||\"Copy to Webflow\");const cachedData=useRef({});// Reset button text after delay\nconst resetButtonText=()=>{setTimeout(()=>{setButtonLabel(buttonText||\"Copy to Webflow\");},3e3);};// Fetch Webflow code from Supabase\nconst fetchWebflowCode=async()=>{if(loading)return;setLoading(true);onLoading?.();const cacheKey=`${tableName}-${rowId}`;try{// Check cache first\nif(cachedData.current[cacheKey]){log.info(\"Using cached data:\",cachedData.current[cacheKey]);const success=await copyWebflowToClipboard(cachedData.current[cacheKey]);if(success){onSuccess?.();setButtonLabel(\"Copied to clipboard!\");resetButtonText();onComponentUsed(setSessionData);}else{onError?.();setButtonLabel(\"Failed to copy\");resetButtonText();}setLoading(false);return;}// Fetch from Supabase if not cached\nconst{data,error}=await supabase.from(tableName).select(\"webflow_code\").eq(\"id\",rowId).single();if(error){console.error(\"Supabase error:\",error);throw new Error(error.message);}if(!data?.webflow_code){console.error(\"No webflow_code found in data:\",data);throw new Error(\"No webflow_code found\");}// Cache the data and copy to clipboard\ncachedData.current[cacheKey]=data.webflow_code;const success=await copyWebflowToClipboard(data.webflow_code);if(success){onSuccess?.();setButtonLabel(\"Copied to clipboard!\");resetButtonText();onComponentUsed(setSessionData);}else{throw new Error(\"Failed to copy to clipboard\");}}catch(err){log.error(\"Error:\",err);onError?.();setButtonLabel(\"Failed to copy\");resetButtonText();}finally{setLoading(false);}};// Button styles\nconst buttonStyles={display:\"flex\",alignItems:\"center\",justifyContent:\"center\",width:\"100%\",height:\"100%\",background:buttonBackground,color:textColor,border:\"none\",borderRadius:`${borderRadius}px`,cursor:loading?\"not-allowed\":\"pointer\",transition:\"background 0.3s ease\",opacity:loading?.7:1};return /*#__PURE__*/_jsx(Frame,{width:\"100%\",height:\"100%\",background:\"none\",style:{padding:0},onClick:fetchWebflowCode,onMouseEnter:e=>e.target.style.background=buttonHoverBackground,onMouseLeave:e=>e.target.style.background=buttonBackground,children:loading?\"Loading...\":buttonLabel});}// Add property controls for the component\naddPropertyControls(CopyWebflowComponentButton,{tableName:{type:ControlType.String,title:\"Table Name\",defaultValue:\"webflow_components\"},rowId:{type:ControlType.String,title:\"Row ID\",defaultValue:\"example_row_id\"},buttonBackground:{type:ControlType.Color,title:\"Background\",defaultValue:\"#09f\"},buttonHoverBackground:{type:ControlType.Color,title:\"Hover Background\",defaultValue:\"#0073e6\"},buttonText:{type:ControlType.String,title:\"Text\",defaultValue:\"Copy to Webflow\"},textColor:{type:ControlType.Color,title:\"Text Color\",defaultValue:\"#fff\"},borderRadius:{type:ControlType.Number,title:\"Border Radius\",defaultValue:5,min:0,max:50},onLoading:{type:ControlType.EventHandler,title:\"On Loading\"},onSuccess:{type:ControlType.EventHandler,title:\"On Success\"},onError:{type:ControlType.EventHandler,title:\"On Error\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"CopyWebflowComponentButton\":{\"type\":\"reactComponent\",\"name\":\"CopyWebflowComponentButton\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6aa4fc0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{CopyWebflowComponentButton}from\"https://framerusercontent.com/modules/E2sRAL8JYDLiKlNZEJWF/GrHL4Ctb7Gg3POMUC1Dv/Webflow_Component.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/CzKbGJIWG6KGoU0F3yQW/m2gwJJzQqixAT6rXI6CB/ZrpmzW_Pz.js\";const CopyWebflowComponentButtonFonts=getFonts(CopyWebflowComponentButton);const FeatherFonts=getFonts(Feather);const cycleOrder=[\"jdMzYgu52\",\"tJtD6IPPA\",\"nCXj_IZFm\",\"hhRKDiNXX\"];const serializationHash=\"framer-kjGMF\";const variantClassNames={hhRKDiNXX:\"framer-v-1iswb04\",jdMzYgu52:\"framer-v-33u0lp\",nCXj_IZFm:\"framer-v-2ia8wr\",tJtD6IPPA:\"framer-v-me4ou9\"};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 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 Locked\":\"nCXj_IZFm\",\"Guest Button\":\"hhRKDiNXX\",Copied:\"tJtD6IPPA\",Default:\"jdMzYgu52\"};const getProps=({databaseTable,dataID,height,id,width,...props})=>{return{...props,o3ByWT2MD:dataID??props.o3ByWT2MD??\"example_row_id\",variant:humanReadableVariantMap[props.variant]??props.variant??\"jdMzYgu52\",XcKaLvf8i:databaseTable??props.XcKaLvf8i??\"webflow_components\"};};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,XcKaLvf8i,o3ByWT2MD,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jdMzYgu52\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapp4j2nt=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"tJtD6IPPA\");});const onAppear1108dtb=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"jdMzYgu52\"),1e3);});useOnVariantChange(baseVariant,{tJtD6IPPA:onAppear1108dtb});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"tJtD6IPPA\",\"nCXj_IZFm\",\"hhRKDiNXX\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"nCXj_IZFm\")return true;return false;};const isDisplayed2=()=>{if([\"tJtD6IPPA\",\"nCXj_IZFm\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"tJtD6IPPA\")return true;return false;};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,{motionChild:true,nodeId:\"jdMzYgu52\",scopeId:\"MgeIZFpJC\",...addPropertyOverrides({hhRKDiNXX:{href:{webPageId:\"zWpylUn2Q\"}},nCXj_IZFm:{href:{webPageId:\"vJFwldYK1\"},openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-33u0lp\",className,classNames)} framer-zy4o3b`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"jdMzYgu52\",onTap:onTapp4j2nt,ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 3px 3px 0px rgba(0, 0, 0, 0.1)\",...style},...addPropertyOverrides({hhRKDiNXX:{\"data-framer-name\":\"Guest Button\",\"data-highlight\":undefined,onTap:undefined},nCXj_IZFm:{\"data-framer-name\":\"Button Locked\",\"data-highlight\":undefined,onTap:undefined},tJtD6IPPA:{\"data-framer-name\":\"Copied\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yj1u8i-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"PPf2UNv3H-container\",nodeId:\"PPf2UNv3H\",rendersWithMotion:true,scopeId:\"MgeIZFpJC\",style:{opacity:0},children:/*#__PURE__*/_jsx(CopyWebflowComponentButton,{borderRadius:5,buttonBackground:\"rgb(0, 153, 255)\",buttonHoverBackground:\"rgb(0, 115, 230)\",buttonText:\"Copy to Webflow\",height:\"100%\",id:\"PPf2UNv3H\",layoutId:\"PPf2UNv3H\",rowId:o3ByWT2MD,style:{height:\"100%\",width:\"100%\"},tableName:XcKaLvf8i,textColor:\"rgb(255, 255, 255)\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bk5xws-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"kfCYe08IN-container\",nodeId:\"kfCYe08IN\",rendersWithMotion:true,scopeId:\"MgeIZFpJC\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-194eac69-5126-4ab0-b0f2-2b26417834d1, rgb(33, 33, 33))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"lock\",id:\"kfCYe08IN\",layoutId:\"kfCYe08IN\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(8+((componentViewport?.height||40)-16-23)/2)),pixelHeight:155,pixelWidth:155,src:\"https://framerusercontent.com/images/qKpuXH9GPnryXuRYRvlcTHZKs4.svg\"},className:\"framer-yib611\",layoutDependency:layoutDependency,layoutId:\"gRKhY84fW\"}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-dtmlso\",\"data-framer-name\":\"Celebrate\",fill:\"black\",intrinsicHeight:512,intrinsicWidth:512,layoutDependency:layoutDependency,layoutId:\"QLzsJpzYZ\",svg:'<svg height=\"512\" viewBox=\"0 0 510 510\" width=\"512\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"><linearGradient id=\"a\"><stop offset=\"0\" stop-color=\"#ffe548\"/><stop offset=\".176\" stop-color=\"#ffde50\"/><stop offset=\".445\" stop-color=\"#ffca65\"/><stop offset=\".771\" stop-color=\"#ffaa87\"/><stop offset=\"1\" stop-color=\"#ff90a4\"/></linearGradient><linearGradient id=\"i\" gradientTransform=\"rotate(45.09 -277.199 -1282.713)\" gradientUnits=\"userSpaceOnUse\" x1=\"1053.46\" x2=\"1308.866\" xlink:href=\"#a\" y1=\"-446.895\" y2=\"-401.287\"/><linearGradient id=\"b\"><stop offset=\"0\" stop-color=\"#fba5c2\" stop-opacity=\"0\"/><stop offset=\".386\" stop-color=\"#fca0ba\" stop-opacity=\".386\"/><stop offset=\".974\" stop-color=\"#ff91a5\" stop-opacity=\".974\"/><stop offset=\"1\" stop-color=\"#ff90a4\"/></linearGradient><linearGradient id=\"j\" gradientTransform=\"translate(-2.433 .519)\" gradientUnits=\"userSpaceOnUse\" x1=\"189.058\" x2=\"160.679\" xlink:href=\"#b\" y1=\"415.585\" y2=\"516.266\"/><linearGradient id=\"k\" gradientTransform=\"translate(-2.433 .519)\" gradientUnits=\"userSpaceOnUse\" x1=\"217.65\" x2=\"182.513\" xlink:href=\"#b\" y1=\"355.512\" y2=\"482.546\"/><linearGradient id=\"l\" gradientTransform=\"translate(-2.433 .519)\" gradientUnits=\"userSpaceOnUse\" x1=\"241.013\" x2=\"197.092\" xlink:href=\"#b\" y1=\"286.51\" y2=\"431.112\"/><linearGradient id=\"m\" gradientTransform=\"translate(-2.433 .519)\" gradientUnits=\"userSpaceOnUse\" x1=\"266.058\" x2=\"219.434\" xlink:href=\"#a\" y1=\"233.389\" y2=\"338.801\"/><linearGradient id=\"c\"><stop offset=\"0\" stop-color=\"#ffd00d\" stop-opacity=\"0\"/><stop offset=\"1\" stop-color=\"#db722b\"/></linearGradient><linearGradient id=\"n\" gradientTransform=\"translate(-2.433 .519)\" gradientUnits=\"userSpaceOnUse\" x1=\"222.045\" x2=\"287.927\" xlink:href=\"#c\" y1=\"313.063\" y2=\"211.707\"/><linearGradient id=\"o\" gradientTransform=\"translate(-2.433 .519)\" gradientUnits=\"userSpaceOnUse\" x1=\"283.177\" x2=\"241.621\" xlink:href=\"#c\" y1=\"268.552\" y2=\"141.856\"/><linearGradient id=\"p\" gradientTransform=\"translate(-2.433 .519)\" gradientUnits=\"userSpaceOnUse\" x1=\"332.406\" x2=\"298.958\" y1=\"338.387\" y2=\"283.654\"><stop offset=\"0\" stop-color=\"#a34a9e\" stop-opacity=\"0\"/><stop offset=\"1\" stop-color=\"#343168\"/></linearGradient><linearGradient id=\"d\"><stop offset=\"0\" stop-color=\"#a34a9e\"/><stop offset=\"1\" stop-color=\"#343168\"/></linearGradient><linearGradient id=\"q\" gradientTransform=\"rotate(16.05 -175.944 -1331.222)\" gradientUnits=\"userSpaceOnUse\" x1=\"816.741\" x2=\"795.136\" xlink:href=\"#d\" y1=\"104.448\" y2=\"23.715\"/><linearGradient id=\"e\"><stop offset=\"0\" stop-color=\"#3fa9f5\"/><stop offset=\"1\" stop-color=\"#666ad6\"/></linearGradient><linearGradient id=\"r\" gradientTransform=\"rotate(-14.76 -1000.825 -1670.319)\" gradientUnits=\"userSpaceOnUse\" x1=\"-360.316\" x2=\"-344.596\" xlink:href=\"#e\" y1=\"299.54\" y2=\"311.95\"/><linearGradient id=\"s\" gradientTransform=\"rotate(-52.32 47.91 -1279.706)\" gradientUnits=\"userSpaceOnUse\" x1=\"-1026.41\" x2=\"-1010.69\" xlink:href=\"#d\" y1=\"-413.642\" y2=\"-401.232\"/><linearGradient id=\"f\"><stop offset=\"0\" stop-color=\"#ff4974\"/><stop offset=\".45\" stop-color=\"#fe4773\"/><stop offset=\".629\" stop-color=\"#fc406d\"/><stop offset=\".76\" stop-color=\"#f73464\"/><stop offset=\".868\" stop-color=\"#f12257\"/><stop offset=\".961\" stop-color=\"#e80c46\"/><stop offset=\"1\" stop-color=\"#e4003d\"/></linearGradient><linearGradient id=\"t\" gradientTransform=\"translate(-2.433 .519)\" gradientUnits=\"userSpaceOnUse\" x1=\"431.698\" x2=\"383.723\" xlink:href=\"#f\" y1=\"392.08\" y2=\"421.135\"/><linearGradient id=\"g\"><stop offset=\"0\" stop-color=\"#c4f8b6\"/><stop offset=\"1\" stop-color=\"#3b8eac\"/></linearGradient><linearGradient id=\"u\" gradientTransform=\"translate(-2.433 .519)\" gradientUnits=\"userSpaceOnUse\" x1=\"440.233\" x2=\"417.935\" xlink:href=\"#g\" y1=\"332.545\" y2=\"396.738\"/><radialGradient id=\"v\" cx=\"172.969\" cy=\"36.437\" gradientTransform=\"translate(-2.433 .519)\" gradientUnits=\"userSpaceOnUse\" r=\"200.758\" xlink:href=\"#f\"/><linearGradient id=\"h\"><stop offset=\"0\" stop-color=\"#e4003d\" stop-opacity=\"0\"/><stop offset=\".343\" stop-color=\"#cd0e2d\" stop-opacity=\".343\"/><stop offset=\"1\" stop-color=\"#972e07\"/></linearGradient><linearGradient id=\"w\" gradientTransform=\"translate(-2.433 .519)\" gradientUnits=\"userSpaceOnUse\" x1=\"316.226\" x2=\"243.756\" xlink:href=\"#h\" y1=\"179.284\" y2=\"127.085\"/><linearGradient id=\"x\" gradientTransform=\"translate(-2.433 .519)\" gradientUnits=\"userSpaceOnUse\" x1=\"206.325\" x2=\"226.597\" xlink:href=\"#h\" y1=\"142.125\" y2=\"160.876\"/><linearGradient id=\"y\" gradientTransform=\"translate(-2.433 .519)\" gradientUnits=\"userSpaceOnUse\" x1=\"272.384\" x2=\"305.832\" xlink:href=\"#e\" y1=\"209.862\" y2=\"254.459\"/><linearGradient id=\"z\" gradientTransform=\"translate(-2.433 .519)\" gradientUnits=\"userSpaceOnUse\" x1=\"466.217\" x2=\"499.665\" xlink:href=\"#e\" y1=\"195.568\" y2=\"240.165\"/><linearGradient id=\"A\" gradientTransform=\"translate(-2.433 .519)\" gradientUnits=\"userSpaceOnUse\" x1=\"375.15\" x2=\"408.597\" xlink:href=\"#d\" y1=\"40.9\" y2=\"85.497\"/><linearGradient id=\"B\" gradientTransform=\"translate(-2.433 .519)\" gradientUnits=\"userSpaceOnUse\" x1=\"376.38\" x2=\"400.762\" xlink:href=\"#g\" y1=\"152.303\" y2=\"184.813\"/><linearGradient id=\"C\" gradientTransform=\"translate(-2.433 .519)\" gradientUnits=\"userSpaceOnUse\" x1=\"407.748\" x2=\"432.13\" xlink:href=\"#a\" y1=\"92.256\" y2=\"124.766\"/><path d=\"M375.307 393.752c-1.73 1.724-3.826 3.025-6.271 3.916l-2.467.741S33.915 532.627 8.049 506.667c-25.866-25.961 109.562-358.124 109.562-358.124l.75-2.464c.9-2.442 2.209-4.533 3.939-6.257 20.693-20.618 94.111 19.508 163.976 89.628S396 373.135 375.307 393.752z\" fill=\"url(#i)\"/><path d=\"M354.611 403.178a4781.896 4781.896 0 0 1-93.953 36.064c-25.316 9.411-53.005 19.435-80.5 28.882-24.027 8.257-47.91 16.089-69.917 22.688-15.12-12.707-30.146-26.489-44.867-41.263s-28.447-29.851-41.099-45.017c6.679-21.982 14.598-45.838 22.943-69.834 9.547-27.461 19.672-55.113 29.175-80.394a4789.035 4789.035 0 0 1 36.406-93.821c44.634 24.204 92.329 59.999 137.239 105.073 44.911 45.075 80.532 92.9 104.573 137.622z\" fill=\"url(#j)\"/><path d=\"M375.305 393.749c-1.726 1.73-3.827 3.024-6.271 3.921l-2.464.735s-4.301 1.735-11.959 4.772a4781.896 4781.896 0 0 1-93.953 36.064c-25.316 9.411-53.005 19.435-80.5 28.882-23.898-18.024-47.851-38.846-71.06-62.14s-43.943-47.323-61.881-71.286c9.547-27.461 19.672-55.113 29.175-80.394a4789.035 4789.035 0 0 1 36.406-93.821c3.065-7.647 4.816-11.941 4.816-11.941l.744-2.462c.907-2.441 2.208-4.537 3.944-6.257 20.694-20.619 94.105 19.51 163.975 89.624 69.861 70.127 109.722 143.684 89.028 164.303z\" fill=\"url(#k)\"/><path d=\"M375.305 393.749c-1.726 1.73-3.827 3.024-6.271 3.921l-2.464.735s-4.301 1.735-11.959 4.772a4781.896 4781.896 0 0 1-93.953 36.064c-33.691-22.188-68.203-50.306-101.205-83.429s-60.995-67.737-83.06-101.508a4789.035 4789.035 0 0 1 36.406-93.821c3.065-7.647 4.816-11.941 4.816-11.941l.744-2.462c.907-2.441 2.208-4.537 3.944-6.257 20.694-20.619 94.105 19.51 163.975 89.624 69.86 70.126 109.721 143.683 89.027 164.302z\" fill=\"url(#l)\"/><path d=\"M375.304 393.755c-20.697 20.622-94.114-19.504-163.979-89.625S101.6 160.448 122.297 139.825s94.114 19.504 163.979 89.625 109.725 143.683 89.028 164.305z\" fill=\"url(#m)\"/><path d=\"M362.405 374.853c-15.29 15.235-77.215-22.125-138.312-83.445s-98.231-123.38-82.941-138.615 77.215 22.125 138.312 83.445 98.232 123.38 82.941 138.615z\" fill=\"url(#n)\"/><path d=\"M375.307 393.752c20.693-20.618-19.165-94.181-89.031-164.301-40.967-41.116-83.15-71.911-115.214-86.202a74.091 74.091 0 0 0 4.21 6.84c2.537 3.66 5.507 6.996 8.851 10.004l17.741 17.864a68.641 68.641 0 0 1-5.504 2.219 6.012 6.012 0 0 0-3.893 6.863l6.278 31.184a7.802 7.802 0 0 0 4.906 5.766l170.324 170.945c.465-.368.91-.761 1.332-1.182z\" fill=\"url(#o)\"/><path d=\"m262.055 296.866 17.422 20.827 81.157 81.453c6.203-.175 11.187-1.918 14.671-5.39 18.086-18.021-10.071-76.467-64.083-137.717a215.226 215.226 0 0 0-47.693 27.543c-4.186 3.194-4.853 9.245-1.474 13.284z\" fill=\"url(#p)\"/><path d=\"m279.477 317.693-17.422-20.827c-3.379-4.039-2.712-10.089 1.473-13.285 53.993-41.222 124.224-54.611 189.815-35.746a215.482 215.482 0 0 1 47.111 19.831c4.577 2.607 6.044 8.518 3.232 12.972l-14.494 22.961c-2.628 4.163-8.049 5.523-12.343 3.117a169.98 169.98 0 0 0-36.112-15.047c-51.295-14.753-106.195-4.459-148.614 27.471-3.932 2.959-9.489 2.327-12.646-1.447z\" fill=\"url(#q)\"/><path d=\"m128.928 101.472-15.819-16.277c-7.17-7.378-9.329-19.254-5.142-28.284 4.861-10.485 16.527-13.558 25.923-6.829 8.093 5.796 12.065 17.194 9.46 27.147l-5.746 21.958c-1.015 3.88-5.88 5.162-8.676 2.285z\" fill=\"url(#r)\"/><path d=\"m100.947 119.148-22.462-3.264c-10.181-1.479-19.131-9.579-21.315-19.29-2.536-11.276 4.84-20.822 16.39-21.213 9.948-.337 20.044 6.278 24.045 15.757l8.827 20.911c1.561 3.695-1.516 7.676-5.485 7.099z\" fill=\"url(#s)\"/><path d=\"m401.689 380.249 22.605-2.046c10.246-.927 20.833 4.87 25.214 13.808 5.087 10.377.132 21.376-11.011 24.442-9.598 2.64-20.954-1.448-27.049-9.737l-13.445-18.287c-2.375-3.232-.309-7.819 3.686-8.18z\" fill=\"url(#t)\"/><path d=\"m405.567 347.38 16.675-15.399c7.558-6.98 19.485-8.835 28.406-4.42 10.358 5.127 13.133 16.867 6.166 26.089-6 7.943-17.496 11.623-27.379 8.766l-21.805-6.304c-3.852-1.114-5.009-6.011-2.063-8.732z\" fill=\"url(#u)\"/><path d=\"M208.759 224.124c-4.423 1.426-9.097-1.344-10.014-5.9l-6.278-31.184a6.012 6.012 0 0 1 3.893-6.863c3.306-1.165 7.9-3.082 12.649-6.002-14.343-4.735-26.014-12.945-33.736-24.085-14.558-21.003-15.699-44.677-3.054-63.328 12.513-18.456 35.634-27.46 57.539-22.403 23.947 5.528 40.768 26.481 44.996 56.051.176 1.231.332 2.456.467 3.676 5.875-3.442 10.622-7.688 13.595-12.441 7.526-12.029 8.24-29.981 1.822-45.734-4.074-9.998-10.363-17.644-17.456-21.49-3.164-1.715-4.85-5.274-4.002-8.771l7.192-29.657c1.102-4.542 5.94-7.156 10.305-5.484 20.129 7.709 36.691 24.854 46.2 48.19 11.95 29.328 9.884 62.716-5.393 87.136-12.087 19.32-34.379 33.731-60.155 39.823-5.79 12.106-14.455 22.741-25.82 31.454-12.136 9.302-24.709 14.42-32.75 17.012zm8.94-115.523c-2.983-.005-6.186 1.48-7.728 3.756-2.304 3.398.758 8.821 2.788 11.75 2.784 4.017 9.266 7.014 17.431 8.356a72.762 72.762 0 0 0-.588-5.597c-1.457-10.188-5.234-16.941-10.104-18.065a8.046 8.046 0 0 0-1.799-.2z\" fill=\"url(#v)\"/><path d=\"m307.915 156.897-32.694-32.813s2.088 31.684-7.893 51.573c15.201-3.592 29.188-10.08 40.587-18.76z\" fill=\"url(#w)\"/><path d=\"M212.759 124.107c-1.487-2.146-3.519-5.627-3.599-8.673l-45.672-.083c.071 11.561 4.016 23.53 11.785 34.739 7.722 11.141 19.392 19.351 33.736 24.085 0 0 23.408-7.101 21.182-41.712-8.166-1.342-14.648-4.339-17.432-8.356z\" fill=\"url(#x)\"/><path d=\"M309.607 227.979a89.92 89.92 0 0 0-26.499 26.656c-1.541 2.394-5.096 2.388-6.628-.012a89.921 89.921 0 0 0-26.402-26.753c-2.348-1.542-2.341-5.049.012-6.582a89.931 89.931 0 0 0 26.499-26.656c1.54-2.394 5.096-2.388 6.628.012a89.933 89.933 0 0 0 26.402 26.753c2.348 1.542 2.341 5.049-.012 6.582z\" fill=\"url(#y)\"/><path d=\"M503.466 214.039a89.92 89.92 0 0 0-26.499 26.656c-1.54 2.394-5.096 2.388-6.628-.012a89.921 89.921 0 0 0-26.402-26.753c-2.348-1.542-2.341-5.049.012-6.582a89.931 89.931 0 0 0 26.499-26.656c1.54-2.394 5.096-2.388 6.628.012a89.933 89.933 0 0 0 26.402 26.753c2.348 1.541 2.341 5.048-.012 6.582z\" fill=\"url(#z)\"/><path d=\"M412.68 59.204a89.92 89.92 0 0 0-26.499 26.656c-1.541 2.394-5.096 2.388-6.628-.012a89.921 89.921 0 0 0-26.402-26.753c-2.348-1.542-2.341-5.049.012-6.582a89.931 89.931 0 0 0 26.499-26.656c1.54-2.394 5.096-2.388 6.628.012a89.933 89.933 0 0 0 26.402 26.753c2.348 1.542 2.341 5.049-.012 6.582z\" fill=\"url(#A)\"/><path d=\"M402.855 165.974a65.562 65.562 0 0 0-19.317 19.431c-1.123 1.745-3.715 1.74-4.831-.009a65.54 65.54 0 0 0-19.246-19.502c-1.711-1.124-1.707-3.68.009-4.798a65.562 65.562 0 0 0 19.317-19.431c1.123-1.745 3.715-1.741 4.831.009a65.563 65.563 0 0 0 19.246 19.502c1.712 1.124 1.707 3.68-.009 4.798z\" fill=\"url(#B)\"/><path d=\"M434.333 105.985a65.562 65.562 0 0 0-19.317 19.431c-1.123 1.745-3.715 1.74-4.831-.009a65.54 65.54 0 0 0-19.246-19.502c-1.711-1.124-1.707-3.68.009-4.798a65.562 65.562 0 0 0 19.317-19.431c1.123-1.745 3.715-1.741 4.831.009a65.563 65.563 0 0 0 19.246 19.502c1.711 1.124 1.706 3.68-.009 4.798z\" fill=\"url(#C)\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f4vhaf\",\"data-styles-preset\":\"ZrpmzW_Pz\",children:\"Copy for Webflow\"})}),className:\"framer-1614o6x\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gZ2fwEAvw\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({hhRKDiNXX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f4vhaf\",\"data-styles-preset\":\"ZrpmzW_Pz\",children:\"Sign Up to Copy\"})})},nCXj_IZFm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f4vhaf\",\"data-styles-preset\":\"ZrpmzW_Pz\",children:\"Upgrade to Copy\"})})},tJtD6IPPA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f4vhaf\",\"data-styles-preset\":\"ZrpmzW_Pz\",children:\"Paste in Webflow\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kjGMF.framer-zy4o3b, .framer-kjGMF .framer-zy4o3b { display: block; }\",\".framer-kjGMF.framer-33u0lp { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 40px; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: 180px; }\",\".framer-kjGMF .framer-yj1u8i-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 10; }\",\".framer-kjGMF .framer-bk5xws-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 20px; }\",\".framer-kjGMF .framer-yib611 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); overflow: visible; position: relative; width: 23px; }\",\".framer-kjGMF .framer-dtmlso { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-kjGMF .framer-1614o6x { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-kjGMF.framer-v-me4ou9.framer-33u0lp { gap: 10px; padding: 8px 12px 8px 13px; }\",\".framer-kjGMF.framer-v-2ia8wr.framer-33u0lp { cursor: unset; gap: 8px; text-decoration: none; }\",\".framer-kjGMF.framer-v-2ia8wr .framer-bk5xws-container { height: var(--framer-aspect-ratio-supported, 23px); }\",\".framer-kjGMF.framer-v-1iswb04.framer-33u0lp { cursor: unset; gap: 8px; text-decoration: none; width: min-content; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 180\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"tJtD6IPPA\":{\"layout\":[\"fixed\",\"fixed\"]},\"nCXj_IZFm\":{\"layout\":[\"fixed\",\"fixed\"]},\"hhRKDiNXX\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"XcKaLvf8i\":\"databaseTable\",\"o3ByWT2MD\":\"dataID\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerMgeIZFpJC=withCSS(Component,css,\"framer-kjGMF\");export default FramerMgeIZFpJC;FramerMgeIZFpJC.displayName=\"Webflow Copy Button\";FramerMgeIZFpJC.defaultProps={height:40,width:180};addPropertyControls(FramerMgeIZFpJC,{variant:{options:[\"jdMzYgu52\",\"tJtD6IPPA\",\"nCXj_IZFm\",\"hhRKDiNXX\"],optionTitles:[\"Default\",\"Copied\",\"Button Locked\",\"Guest Button\"],title:\"Variant\",type:ControlType.Enum},XcKaLvf8i:{defaultValue:\"webflow_components\",title:\"Database Table\",type:ControlType.String},o3ByWT2MD:{defaultValue:\"example_row_id\",title:\"Data ID\",type:ControlType.String}});addFonts(FramerMgeIZFpJC,[{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\"}]},...CopyWebflowComponentButtonFonts,...FeatherFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMgeIZFpJC\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"XcKaLvf8i\\\":\\\"databaseTable\\\",\\\"o3ByWT2MD\\\":\\\"dataID\\\"}\",\"framerIntrinsicWidth\":\"180\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tJtD6IPPA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nCXj_IZFm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hhRKDiNXX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b0cf16c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{UserStateVariants as SupabaseUserStateVariants}from\"https://framerusercontent.com/modules/cdM9qsAvVyrbpqiGYiU4/APW2J0vjvIk3RpMbDsTW/Supabase.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/ihKnJ5jKVGYhW8oASymr/dVnpkhP5jfMcztsGu2kh/X6F1jHGrs.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/CzKbGJIWG6KGoU0F3yQW/m2gwJJzQqixAT6rXI6CB/ZrpmzW_Pz.js\";import PriceTag from\"https://framerusercontent.com/modules/sjj5TWElClhZ27BKWp60/1XfZo79CqEvlQQtImL7q/Fa75Cm7aD.js\";import WebflowCopyButton from\"https://framerusercontent.com/modules/mKxSdP2fbxYdetoVEFNo/9rqiuC9PXOuv8X941M6J/MgeIZFpJC.js\";import Button from\"https://framerusercontent.com/modules/u6RapueMY2Y3lDyPAXRp/Hb9qSn19i24oQBA56Gn5/namjL52tJ.js\";const WebflowCopyButtonFonts=getFonts(WebflowCopyButton);const ButtonFonts=getFonts(Button);const SupabaseUserStateVariantsFonts=getFonts(SupabaseUserStateVariants);const PriceTagFonts=getFonts(PriceTag);const PriceTagControls=getPropertyControls(PriceTag);const WebflowCopyButtonControls=getPropertyControls(WebflowCopyButton);const enabledGestures={NvHhUtngF:{hover:true}};const serializationHash=\"framer-Vf3gm\";const variantClassNames={NvHhUtngF:\"framer-v-9bxczk\"};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 transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;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 humanReadableEnumMap={Free:\"WMg4G33LO\",Pro:\"tRdfUNZUA\"};const humanReadableEnumMap1={\"Button Locked\":\"nCXj_IZFm\",\"Guest Button\":\"hhRKDiNXX\",Copied:\"tJtD6IPPA\",Default:\"jdMzYgu52\"};const getProps=({background,databaseTable,dataID,fontName,freeVersion,guestButton,height,id,image,liveLink,proTag,title,width,...props})=>{return{...props,bs5ftCEIE:background??props.bs5ftCEIE??\"rgb(255, 255, 255)\",dzdfpoupU:humanReadableEnumMap1[freeVersion]??freeVersion??props.dzdfpoupU??\"nCXj_IZFm\",eLXeUhSNq:dataID??props.eLXeUhSNq??\"example_row_id\",FA3q0T8hH:humanReadableEnumMap[proTag]??proTag??props.FA3q0T8hH??\"tRdfUNZUA\",fhCuObuMr:liveLink??props.fhCuObuMr,molqv2PXB:fontName??props.molqv2PXB??\"Font Name\",OZnso1ipD:databaseTable??props.OZnso1ipD??\"webflow_components\",Q80bxUB0O:title??props.Q80bxUB0O??\"Pricing\",RCEvdHB7d:humanReadableEnumMap1[guestButton]??guestButton??props.RCEvdHB7d??\"hhRKDiNXX\",XNBoX1t0l:image??props.XNBoX1t0l};};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,FA3q0T8hH,XNBoX1t0l,Q80bxUB0O,bs5ftCEIE,dzdfpoupU,OZnso1ipD,eLXeUhSNq,molqv2PXB,fhCuObuMr,RCEvdHB7d,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"NvHhUtngF\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-9bxczk\",className,classNames),layoutDependency:layoutDependency,layoutId:\"NvHhUtngF\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13xggoz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"HPmMENE3A\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3sfobu-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"QFDeFePzY-container\",nodeId:\"QFDeFePzY\",rendersWithMotion:true,scopeId:\"jQw9eRjRx\",style:{opacity:0},transformTemplate:transformTemplate1,variants:{\"NvHhUtngF-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(SupabaseUserStateVariants,{free:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-112xm91\",\"data-framer-name\":\"Free\",layoutDependency:layoutDependency,layoutId:\"HfD7CfUai\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9ejz3j-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"WkIg7XIH5-container\",nodeId:\"WkIg7XIH5\",rendersWithMotion:true,scopeId:\"jQw9eRjRx\",children:/*#__PURE__*/_jsx(WebflowCopyButton,{height:\"100%\",id:\"WkIg7XIH5\",layoutId:\"WkIg7XIH5\",o3ByWT2MD:eLXeUhSNq,variant:dzdfpoupU,width:\"100%\",XcKaLvf8i:OZnso1ipD})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:\"180px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18yrnmb-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"sxKVLwcEK-container\",nodeId:\"sxKVLwcEK\",rendersWithMotion:true,scopeId:\"jQw9eRjRx\",children:/*#__PURE__*/_jsx(Button,{AFTPfmoJd:false,alT7OK8am:fhCuObuMr,height:\"100%\",id:\"sxKVLwcEK\",layoutId:\"sxKVLwcEK\",style:{width:\"100%\"},variant:\"XyyORDQ2x\",vUaXq9fOl:\"Live Preview\",width:\"100%\",wjSHkMCgX:true})})})]})],height:\"100%\",id:\"QFDeFePzY\",layoutId:\"QFDeFePzY\",loggedIn:[],noUser:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cqc4gj\",\"data-framer-name\":\"Locked\",layoutDependency:layoutDependency,layoutId:\"Y8_cFkp_S\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"190px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11b98v4-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"rmqK5J4Yk-container\",nodeId:\"rmqK5J4Yk\",rendersWithMotion:true,scopeId:\"jQw9eRjRx\",children:/*#__PURE__*/_jsx(WebflowCopyButton,{height:\"100%\",id:\"rmqK5J4Yk\",layoutId:\"rmqK5J4Yk\",o3ByWT2MD:eLXeUhSNq,style:{height:\"100%\",width:\"100%\"},variant:RCEvdHB7d,width:\"100%\",XcKaLvf8i:OZnso1ipD})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:\"190px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-d0y47j-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"TA1QkEkee-container\",nodeId:\"TA1QkEkee\",rendersWithMotion:true,scopeId:\"jQw9eRjRx\",children:/*#__PURE__*/_jsx(Button,{AFTPfmoJd:false,alT7OK8am:fhCuObuMr,height:\"100%\",id:\"TA1QkEkee\",layoutId:\"TA1QkEkee\",style:{width:\"100%\"},variant:\"XyyORDQ2x\",vUaXq9fOl:\"Live Preview\",width:\"100%\",wjSHkMCgX:true})})})]})],pro:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sy4ngr\",\"data-framer-name\":\"Unlocked\",layoutDependency:layoutDependency,layoutId:\"DRj5npLWB\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-axr8os-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"EWz8AIhJD-container\",nodeId:\"EWz8AIhJD\",rendersWithMotion:true,scopeId:\"jQw9eRjRx\",children:/*#__PURE__*/_jsx(WebflowCopyButton,{height:\"100%\",id:\"EWz8AIhJD\",layoutId:\"EWz8AIhJD\",o3ByWT2MD:eLXeUhSNq,variant:\"jdMzYgu52\",width:\"100%\",XcKaLvf8i:OZnso1ipD})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:\"180px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10uf83v-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"SFAMgUn3n-container\",nodeId:\"SFAMgUn3n\",rendersWithMotion:true,scopeId:\"jQw9eRjRx\",children:/*#__PURE__*/_jsx(Button,{AFTPfmoJd:false,alT7OK8am:fhCuObuMr,height:\"100%\",id:\"SFAMgUn3n\",layoutId:\"SFAMgUn3n\",style:{width:\"100%\"},variant:\"XyyORDQ2x\",vUaXq9fOl:\"Live Preview\",width:\"100%\",wjSHkMCgX:true})})})]})],type:\"tiers\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-592wvg\",\"data-framer-name\":\"Font Area\",layoutDependency:layoutDependency,layoutId:\"wv9eN4GUo\",style:{backgroundColor:\"var(--token-5de57275-ac68-4100-b680-3c4c1c3cf6f6, rgb(250, 250, 250))\",opacity:0},transformTemplate:transformTemplate2,variants:{\"NvHhUtngF-hover\":{opacity:1}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p98hcv\",\"data-framer-name\":\"Font\",layoutDependency:layoutDependency,layoutId:\"pqnAaaP_Z\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7},variants:{\"NvHhUtngF-hover\":{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ff9dt0\",\"data-styles-preset\":\"X6F1jHGrs\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-194eac69-5126-4ab0-b0f2-2b26417834d1, rgb(33, 33, 33)))\"},children:\"Font used: \"})}),className:\"framer-185tjic\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xljj1Y2DU\",style:{\"--extracted-r6o4lv\":\"var(--token-194eac69-5126-4ab0-b0f2-2b26417834d1, rgb(33, 33, 33))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ff9dt0\",\"data-styles-preset\":\"X6F1jHGrs\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-194eac69-5126-4ab0-b0f2-2b26417834d1, rgb(33, 33, 33)))\"},children:\"Font Name\"})}),className:\"framer-m7o65x\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zD46HfscH\",style:{\"--extracted-r6o4lv\":\"var(--token-194eac69-5126-4ab0-b0f2-2b26417834d1, rgb(33, 33, 33))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:molqv2PXB,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qw0siv\",\"data-framer-name\":\"Layer\",layoutDependency:layoutDependency,layoutId:\"eha3fseHs\",style:{backdropFilter:\"blur(6px)\",backgroundColor:\"rgba(0, 0, 0, 0.15)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:0,WebkitBackdropFilter:\"blur(6px)\"},variants:{\"NvHhUtngF-hover\":{backgroundColor:\"rgba(0, 0, 0, 0.1)\",opacity:1}}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+(Math.max(0,((componentViewport?.height||250)-16-34.4)/1)*1*.4962406015037596-Math.max(0,((componentViewport?.height||250)-16-34.4)/1)*1*1/2)),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(XNBoX1t0l),...{positionX:\"center\",positionY:\"top\"}},className:\"framer-1dx9eqf\",layoutDependency:layoutDependency,layoutId:\"Z2U6vaJmM\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i3cf4w\",\"data-framer-name\":\"BG\",layoutDependency:layoutDependency,layoutId:\"N_X0UkE0f\",style:{backgroundColor:bs5ftCEIE,borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 1px 2px 0px rgba(0, 0, 0, 0.12)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pekxqh\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"aVgKmtMET\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ehhw77\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"bD2sczlxM\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f4vhaf\",\"data-styles-preset\":\"ZrpmzW_Pz\",children:\"Pricing\"})}),className:\"framer-dd1a28\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"l6zSkMRZT\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Q80bxUB0O,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+(0+Math.max(0,((componentViewport?.height||250)-16-34.4)/1)*1+12)+.2,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lys3hz-container\",layoutDependency:layoutDependency,layoutId:\"fvITAt6uV-container\",nodeId:\"fvITAt6uV\",rendersWithMotion:true,scopeId:\"jQw9eRjRx\",children:/*#__PURE__*/_jsx(PriceTag,{height:\"100%\",id:\"fvITAt6uV\",layoutId:\"fvITAt6uV\",variant:FA3q0T8hH,width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Vf3gm.framer-1iy7l0v, .framer-Vf3gm .framer-1iy7l0v { display: block; }\",\".framer-Vf3gm.framer-9bxczk { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 250px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 16px 0px; position: relative; width: 285px; }\",\".framer-Vf3gm .framer-13xggoz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Vf3gm .framer-3sfobu-container { flex: none; height: auto; left: 50%; position: absolute; top: 50%; width: auto; z-index: 9; }\",\".framer-Vf3gm .framer-1cqc4gj, .framer-Vf3gm .framer-112xm91, .framer-Vf3gm .framer-1sy4ngr { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 190px; z-index: 1; }\",\".framer-Vf3gm .framer-11b98v4-container { flex: none; height: 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-Vf3gm .framer-d0y47j-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-Vf3gm .framer-9ejz3j-container, .framer-Vf3gm .framer-axr8os-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-Vf3gm .framer-18yrnmb-container, .framer-Vf3gm .framer-10uf83v-container { flex: none; height: auto; position: relative; width: 180px; z-index: 1; }\",\".framer-Vf3gm .framer-592wvg { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; width: 100%; z-index: 6; }\",\".framer-Vf3gm .framer-p98hcv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 7px; position: relative; width: 100%; z-index: 1; }\",\".framer-Vf3gm .framer-185tjic, .framer-Vf3gm .framer-m7o65x { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-Vf3gm .framer-qw0siv { flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-Vf3gm .framer-1dx9eqf { flex: none; height: 100%; left: calc(49.824561403508795% - 100% / 2); overflow: hidden; position: absolute; top: calc(49.62406015037596% - 100% / 2); width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-Vf3gm .framer-1i3cf4w { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Vf3gm .framer-1pekxqh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Vf3gm .framer-1ehhw77 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Vf3gm .framer-dd1a28 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Vf3gm .framer-1lys3hz-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Vf3gm.framer-9bxczk, .framer-Vf3gm .framer-13xggoz, .framer-Vf3gm .framer-1cqc4gj, .framer-Vf3gm .framer-112xm91, .framer-Vf3gm .framer-1sy4ngr, .framer-Vf3gm .framer-592wvg, .framer-Vf3gm .framer-p98hcv, .framer-Vf3gm .framer-1ehhw77 { gap: 0px; } .framer-Vf3gm.framer-9bxczk > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Vf3gm.framer-9bxczk > :first-child, .framer-Vf3gm .framer-13xggoz > :first-child, .framer-Vf3gm .framer-1cqc4gj > :first-child, .framer-Vf3gm .framer-112xm91 > :first-child, .framer-Vf3gm .framer-1sy4ngr > :first-child, .framer-Vf3gm .framer-592wvg > :first-child { margin-top: 0px; } .framer-Vf3gm.framer-9bxczk > :last-child, .framer-Vf3gm .framer-13xggoz > :last-child, .framer-Vf3gm .framer-1cqc4gj > :last-child, .framer-Vf3gm .framer-112xm91 > :last-child, .framer-Vf3gm .framer-1sy4ngr > :last-child, .framer-Vf3gm .framer-592wvg > :last-child { margin-bottom: 0px; } .framer-Vf3gm .framer-13xggoz > *, .framer-Vf3gm .framer-1cqc4gj > *, .framer-Vf3gm .framer-112xm91 > *, .framer-Vf3gm .framer-1sy4ngr > *, .framer-Vf3gm .framer-592wvg > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Vf3gm .framer-p98hcv > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-Vf3gm .framer-p98hcv > :first-child, .framer-Vf3gm .framer-1ehhw77 > :first-child { margin-left: 0px; } .framer-Vf3gm .framer-p98hcv > :last-child, .framer-Vf3gm .framer-1ehhw77 > :last-child { margin-right: 0px; } .framer-Vf3gm .framer-1ehhw77 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-Vf3gm.framer-v-9bxczk.hover .framer-3sfobu-container { order: 0; top: 42%; }\",\".framer-Vf3gm.framer-v-9bxczk.hover .framer-592wvg { order: 4; width: 100%; }\",\".framer-Vf3gm.framer-v-9bxczk.hover .framer-p98hcv { z-index: 8; }\",\".framer-Vf3gm.framer-v-9bxczk.hover .framer-qw0siv { order: 1; }\",\".framer-Vf3gm.framer-v-9bxczk.hover .framer-1dx9eqf { order: 2; }\",\".framer-Vf3gm.framer-v-9bxczk.hover .framer-1i3cf4w { order: 3; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 250\n * @framerIntrinsicWidth 285\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"UaB4CB8GF\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"FA3q0T8hH\":\"proTag\",\"XNBoX1t0l\":\"image\",\"Q80bxUB0O\":\"title\",\"bs5ftCEIE\":\"background\",\"dzdfpoupU\":\"freeVersion\",\"OZnso1ipD\":\"databaseTable\",\"eLXeUhSNq\":\"dataID\",\"molqv2PXB\":\"fontName\",\"fhCuObuMr\":\"liveLink\",\"RCEvdHB7d\":\"guestButton\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerjQw9eRjRx=withCSS(Component,css,\"framer-Vf3gm\");export default FramerjQw9eRjRx;FramerjQw9eRjRx.displayName=\"Webflow Component\";FramerjQw9eRjRx.defaultProps={height:250,width:285};addPropertyControls(FramerjQw9eRjRx,{FA3q0T8hH:PriceTagControls?.[\"variant\"]&&{...PriceTagControls[\"variant\"],defaultValue:\"tRdfUNZUA\",description:undefined,hidden:undefined,title:\"Pro Tag\"},XNBoX1t0l:{title:\"Image\",type:ControlType.ResponsiveImage},Q80bxUB0O:{defaultValue:\"Pricing\",displayTextArea:false,title:\"Title\",type:ControlType.String},bs5ftCEIE:{defaultValue:\"rgb(255, 255, 255)\",title:\"Background\",type:ControlType.Color},dzdfpoupU:WebflowCopyButtonControls?.[\"variant\"]&&{...WebflowCopyButtonControls[\"variant\"],defaultValue:\"nCXj_IZFm\",description:undefined,hidden:undefined,title:\"Free Version\"},OZnso1ipD:{defaultValue:\"webflow_components\",title:\"Database Table\",type:ControlType.String},eLXeUhSNq:{defaultValue:\"example_row_id\",title:\"Data ID\",type:ControlType.String},molqv2PXB:{defaultValue:\"Font Name\",displayTextArea:false,title:\"Font Name\",type:ControlType.String},fhCuObuMr:{title:\"Live Link\",type:ControlType.Link},RCEvdHB7d:WebflowCopyButtonControls?.[\"variant\"]&&{...WebflowCopyButtonControls[\"variant\"],defaultValue:\"hhRKDiNXX\",description:undefined,hidden:undefined,title:\"Guest Button\"}});addFonts(FramerjQw9eRjRx,[{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\"}]},...WebflowCopyButtonFonts,...ButtonFonts,...SupabaseUserStateVariantsFonts,...PriceTagFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjQw9eRjRx\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"FA3q0T8hH\\\":\\\"proTag\\\",\\\"XNBoX1t0l\\\":\\\"image\\\",\\\"Q80bxUB0O\\\":\\\"title\\\",\\\"bs5ftCEIE\\\":\\\"background\\\",\\\"dzdfpoupU\\\":\\\"freeVersion\\\",\\\"OZnso1ipD\\\":\\\"databaseTable\\\",\\\"eLXeUhSNq\\\":\\\"dataID\\\",\\\"molqv2PXB\\\":\\\"fontName\\\",\\\"fhCuObuMr\\\":\\\"liveLink\\\",\\\"RCEvdHB7d\\\":\\\"guestButton\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"285\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UaB4CB8GF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"250\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["log", "args", "copyWebflowToClipboard", "webflowCode", "jsonData", "resolve", "listener", "event", "err", "CopyWebflowComponentButton", "tableName", "rowId", "buttonBackground", "buttonHoverBackground", "buttonText", "textColor", "borderRadius", "onLoading", "onSuccess", "onError", "sessionData", "setSessionData", "useSessionData", "loading", "setLoading", "ye", "buttonLabel", "setButtonLabel", "cachedData", "pe", "resetButtonText", "fetchWebflowCode", "cacheKey", "onComponentUsed", "data", "error", "supabase", "buttonStyles", "p", "Frame", "e", "addPropertyControls", "ControlType", "CopyWebflowComponentButtonFonts", "getFonts", "CopyWebflowComponentButton", "FeatherFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "databaseTable", "dataID", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "XcKaLvf8i", "o3ByWT2MD", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapp4j2nt", "args", "onAppear1108dtb", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "SVG", "RichText2", "css", "FramerMgeIZFpJC", "withCSS", "MgeIZFpJC_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "WebflowCopyButtonFonts", "getFonts", "MgeIZFpJC_default", "ButtonFonts", "namjL52tJ_default", "SupabaseUserStateVariantsFonts", "UserStateVariants", "PriceTagFonts", "Fa75Cm7aD_default", "PriceTagControls", "getPropertyControls", "WebflowCopyButtonControls", "enabledGestures", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableEnumMap1", "getProps", "background", "databaseTable", "dataID", "fontName", "freeVersion", "guestButton", "height", "id", "image", "liveLink", "proTag", "title", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "FA3q0T8hH", "XNBoX1t0l", "Q80bxUB0O", "bs5ftCEIE", "dzdfpoupU", "OZnso1ipD", "eLXeUhSNq", "molqv2PXB", "fhCuObuMr", "RCEvdHB7d", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "enabledGestures", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "UserStateVariants", "MgeIZFpJC_default", "namjL52tJ_default", "RichText2", "Image2", "getLoadingLazyAtYPosition", "Fa75Cm7aD_default", "css", "FramerjQw9eRjRx", "withCSS", "jQw9eRjRx_default", "addPropertyControls", "PriceTagControls", "ControlType", "WebflowCopyButtonControls", "addFonts", "WebflowCopyButtonFonts", "ButtonFonts", "SupabaseUserStateVariantsFonts", "PriceTagFonts", "getFontsFromSharedStyle", "fonts"]
}
