{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/7WvOI2O5XEGGk7zoSv7d/WQYHQUbVe4T0fKpTZMBM/qp7_CWH9V-2.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.Off&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/ _jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__PURE__*/ _jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/ _jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/ _jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as e,jsxs as r}from\"react/jsx-runtime\";import{ComponentPresetsConsumer as t,Link as i}from\"framer\";import{motion as n}from\"framer-motion\";import*as a from\"react\";import{Youtube as s}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";export const richText=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"At Clicki, we\u2019re constantly striving to enhance our platform with powerful new features to supercharge your referral programs. We\u2019ve listened to your feedback and are thrilled to announce a series of new updates. Read on to discover how these can transform your referral marketing strategy!\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"1. QR Codes Are Here!\"})}),/*#__PURE__*/e(\"p\",{children:\"Sharing referral links just got easier with QR codes now available across the Clicki platform! Whether you\u2019re a promoter or a business owner, you can instantly generate a QR code and let interested customers scan and join your referral program on the spot.\"}),/*#__PURE__*/r(\"blockquote\",{children:[/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Where to find QR codes\"}),\":\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Promoters:\"}),\" Generate unique referral QR codes directly in your promoter app.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Businesses:\"}),\" Create QR codes within the Clicki dashboard to seamlessly onboard new promoters.\"]})})]})]}),/*#__PURE__*/e(\"p\",{children:\"A quick scan is all it takes to turn someone into a promoter\u2014give it a try!\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,RRtrxRkuOcpxsawxBvr13tq5GtI.png\",\"data-framer-height\":\"1814\",\"data-framer-width\":\"3436\",height:\"907\",src:\"https://framerusercontent.com/images/RRtrxRkuOcpxsawxBvr13tq5GtI.png\",srcSet:\"https://framerusercontent.com/images/RRtrxRkuOcpxsawxBvr13tq5GtI.png?scale-down-to=512 512w,https://framerusercontent.com/images/RRtrxRkuOcpxsawxBvr13tq5GtI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RRtrxRkuOcpxsawxBvr13tq5GtI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RRtrxRkuOcpxsawxBvr13tq5GtI.png 3436w\",style:{aspectRatio:\"3436 / 1814\"},width:\"1718\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,aT2MO8aJpRtIhEXBrlHR98XREg.png\",\"data-framer-height\":\"1248\",\"data-framer-width\":\"1036\",height:\"624\",src:\"https://framerusercontent.com/images/aT2MO8aJpRtIhEXBrlHR98XREg.png\",srcSet:\"https://framerusercontent.com/images/aT2MO8aJpRtIhEXBrlHR98XREg.png?scale-down-to=1024 850w,https://framerusercontent.com/images/aT2MO8aJpRtIhEXBrlHR98XREg.png 1036w\",style:{aspectRatio:\"1036 / 1248\"},width:\"518\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,gQXAxFA2rA3khc331EQ2yRiWQE.png\",\"data-framer-height\":\"774\",\"data-framer-width\":\"1112\",height:\"387\",src:\"https://framerusercontent.com/images/gQXAxFA2rA3khc331EQ2yRiWQE.png\",srcSet:\"https://framerusercontent.com/images/gQXAxFA2rA3khc331EQ2yRiWQE.png?scale-down-to=512 512w,https://framerusercontent.com/images/gQXAxFA2rA3khc331EQ2yRiWQE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gQXAxFA2rA3khc331EQ2yRiWQE.png 1112w\",style:{aspectRatio:\"1112 / 774\"},width:\"556\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"2. Zapier Integration (Private Beta)\"})}),/*#__PURE__*/r(\"p\",{children:[\"Say goodbye to tedious manual tasks and hello to effortless automation! Our new \",/*#__PURE__*/e(\"strong\",{children:\"Zapier app\"}),\" lets you connect Clicki with thousands of other apps and systems without writing a single line of code. Sync referral data with your CRM, schedule email notifications, or streamline payouts instantly.\"]}),/*#__PURE__*/r(\"blockquote\",{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"How to get started:\"})}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Request early access to our private beta.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Follow our guide on connecting \",/*#__PURE__*/e(\"strong\",{children:\"Clicki & Zapier\"}),\".\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Automate your workflows and watch your productivity soar.\"})})]})]}),/*#__PURE__*/r(\"p\",{children:[\"If you\u2019re eager to test out this cutting-edge integration, join our private beta and simplify your processes today! \",/*#__PURE__*/e(i,{href:\"https://docs.joinclicki.com/hc/documentation/articles/1738951108-requesting-access-to-the-clicki-zapier-app-private-beta\",nodeId:\"qp7_CWH9V\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Click here to join beta\"})}),/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"3. Content Library: Google Drive & Canva Templates\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,YiaaWK2iQh9s0sVYtklCdXoppqQ.png\",\"data-framer-height\":\"500\",\"data-framer-width\":\"1218\",height:\"250\",src:\"https://framerusercontent.com/images/YiaaWK2iQh9s0sVYtklCdXoppqQ.png\",srcSet:\"https://framerusercontent.com/images/YiaaWK2iQh9s0sVYtklCdXoppqQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/YiaaWK2iQh9s0sVYtklCdXoppqQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YiaaWK2iQh9s0sVYtklCdXoppqQ.png 1218w\",style:{aspectRatio:\"1218 / 500\"},width:\"609\"}),/*#__PURE__*/r(\"p\",{children:[\"Need eye-catching marketing materials for your referral program? Look no further! We\u2019ve curated a \",/*#__PURE__*/e(\"strong\",{children:\"Google Drive\"}),\" of \",/*#__PURE__*/e(\"strong\",{children:\"Canva templates\"}),\"\u2014professionally designed with proven engagement in mind. Customize them in minutes to fit your brand and messaging.\"]}),/*#__PURE__*/r(\"blockquote\",{children:[/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Why you\u2019ll love these templates\"}),\":\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Saves Time:\"}),\" No more starting from scratch.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Proven Designs:\"}),\" Use templates that have delivered results.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Unlimited Personalization:\"}),\" Add your images, colors, and copy.\"]})})]})]}),/*#__PURE__*/r(\"p\",{children:[\"Access our content library and step up your marketing game with ease! \",/*#__PURE__*/e(i,{href:\"https://drive.google.com/drive/folders/1jE6g2mQpZLiQzy3FQPBR8a6wpdRUtaKz?usp=drive_link\",nodeId:\"qp7_CWH9V\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Link to google drive\"})}),/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"4. Bravo Integration \u2014 Automate Reviews, Tipping, & NPS Surveys\"})}),/*#__PURE__*/r(\"p\",{children:[\"We\u2019re proud to announce our brand-new \",/*#__PURE__*/e(\"strong\",{children:\"Bravo integration\"}),\"! Bravo is your go-to tool for automating:\"]}),/*#__PURE__*/e(\"p\",{children:\"\u2705 Tip a tech program \u2705 Google Reviews \u2705 Employee Tipping \u2705 NPS (Net Promoter Score) Surveys\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Why this integration matters\"}),\":\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Boost Referrals at the Perfect Time:\"}),\" When an NPS survey shows a happy customer, it\u2019s the ideal moment to nudge them toward referring a friend.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Streamlined Customer Feedback:\"}),\" Gather valuable insights while effortlessly powering up your referral pipeline.\"]})})]}),/*#__PURE__*/r(\"p\",{children:[\"Get more out of every satisfied customer with this powerful synergy. \",/*#__PURE__*/e(i,{href:\"https://launchbravo.com\",nodeId:\"qp7_CWH9V\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Learn more here \"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"5. Real Green & FieldRoutes Native Integrations\"})}),/*#__PURE__*/r(\"p\",{children:[\"Our native integrations with \",/*#__PURE__*/e(\"strong\",{children:\"HubSpot, Real Green, and FieldRoutes\"}),\" are now live in the Clicki dashboard! Manage your customer data, streamline referral triggers, and handle everything from one central location.\"]}),/*#__PURE__*/r(\"blockquote\",{children:[/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Here\u2019s what you gain\"}),\":\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Smooth, automated data syncing across platforms.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Effortless referral program management.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Time savings and fewer manual steps.\"})})]})]}),/*#__PURE__*/e(\"p\",{children:\"Enjoy a seamless workflow and focus on scaling your business.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"Your Feedback Fuels Us\"})}),/*#__PURE__*/r(\"p\",{children:[\"We thrive on your suggestions. If there\u2019s a feature or integration you\u2019d love to see, let us know! Your input drives our mission to create the \",/*#__PURE__*/e(\"strong\",{children:\"best\"}),\" referral marketing platform possible.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Stay tuned for more updates, and as always, \",/*#__PURE__*/e(\"strong\",{children:\"happy referring\"}),\"! \uD83D\uDE80\"]})]});export const richText1=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Supercharge Your Referral Program with Clicki\u2019s New Zapier Integration\"})}),/*#__PURE__*/r(\"p\",{children:[\"Referral marketing is one of the most powerful ways to grow your customer base and increase brand awareness\u2014when it\u2019s done right. But manually tracking referrals, bonuses, and promoter data can become a headache if you\u2019re juggling multiple software platforms. That\u2019s where the brand-new \",/*#__PURE__*/e(\"strong\",{children:\"Zapier integration\"}),\" for \",/*#__PURE__*/e(\"strong\",{children:\"Clicki Referrals\"}),\" comes into play. This integration lets you automate workflows and seamlessly connect your referral program to the other apps you rely on every day.\"]}),/*#__PURE__*/e(\"p\",{children:\"In this article, we\u2019ll explore all the different triggers, actions, and workflows you can create through Zapier, giving you a detailed view of how to supercharge your referral marketing strategy. By the end, you\u2019ll see how frictionless your referral program can become when Clicki is connected to your app ecosystem through Zapier.\"}),/*#__PURE__*/e(\"h2\",{children:\"Why Integrate Clicki with Zapier?\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Zapier\"}),\" is a market-leading automation tool that connects thousands of apps so they can share data without any coding. With \",/*#__PURE__*/e(\"strong\",{children:\"Clicki Referrals\"}),\", you already enjoy powerful features for managing promoters, tracking referral activities, awarding bonuses, and more. Now, by leveraging Zapier\u2019s easy-to-use interface, you can:\"]}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Automate Time-Consuming Tasks:\"}),\" Eliminate manual data entry so you can focus on high-impact work.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Consolidate Data Across Platforms:\"}),\" Automatically sync your referral data with CRMs, email marketing software, project management tools, and more.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Trigger Customized Workflows:\"}),\" Each time a new promoter signs up or a referral is approved, Zapier can trigger notifications, create tasks, or update records in other systems.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Maximize Referral Engagement:\"}),\" With automated messaging and personalized follow-ups, you can nurture relationships faster and more effectively.\"]})})]}),/*#__PURE__*/e(\"h2\",{children:\"Key Triggers in the Clicki Referrals Zapier Integration\"}),/*#__PURE__*/r(\"h3\",{children:[\"1. \",/*#__PURE__*/e(\"strong\",{children:\"New Promoter\"})]}),/*#__PURE__*/e(\"p\",{children:\"Whenever someone signs up to promote your business, Zapier can detect this event. You might use this trigger to:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Automatically add new promoters to your \",/*#__PURE__*/e(\"strong\",{children:\"CRM\"}),\" (e.g., HubSpot, Salesforce).\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Send a personalized \",/*#__PURE__*/e(\"strong\",{children:\"email\"}),\" or \",/*#__PURE__*/e(\"strong\",{children:\"SMS\"}),\" welcome message (via Mailchimp, ActiveCampaign, Twilio, etc.).\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Tag them in your \",/*#__PURE__*/e(\"strong\",{children:\"customer support system\"}),\" (e.g., Zendesk) for personalized onboarding.\"]})})]}),/*#__PURE__*/r(\"h3\",{children:[\"2. \",/*#__PURE__*/e(\"strong\",{children:\"New Referral Added\"})]}),/*#__PURE__*/e(\"p\",{children:\"This trigger fires every time a referral is submitted in Clicki. Possible actions include:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Creating a \",/*#__PURE__*/e(\"strong\",{children:\"lead record\"}),\" in your CRM so your sales team can follow up.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Sending a \u201Cthank you\u201D or \u201Ccongratulations\u201D \",/*#__PURE__*/e(\"strong\",{children:\"email\"}),\" to the promoter.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Adding or updating data in a \",/*#__PURE__*/e(\"strong\",{children:\"spreadsheet\"}),\" or project management tool (e.g., Google Sheets, Airtable, Trello).\"]})})]}),/*#__PURE__*/r(\"h3\",{children:[\"3. \",/*#__PURE__*/e(\"strong\",{children:\"Bonus Awarded\"})]}),/*#__PURE__*/e(\"p\",{children:\"When a promoter meets the criteria to earn a bonus, this trigger can automate next steps. Examples:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Send a \",/*#__PURE__*/e(\"strong\",{children:\"payment\"}),\" via PayPal or Stripe (or update an invoice in your accounting software).\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Notify your \",/*#__PURE__*/e(\"strong\",{children:\"team on Slack\"}),\" that a bonus is ready for payment.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Track referral bonuses in a \",/*#__PURE__*/e(\"strong\",{children:\"financial ledger\"}),\" (e.g., QuickBooks, Xero).\"]})})]}),/*#__PURE__*/r(\"h3\",{children:[\"4. \",/*#__PURE__*/e(\"strong\",{children:\"Bonus Rejected\"})]}),/*#__PURE__*/e(\"p\",{children:\"If a bonus is rejected due to failing to meet certain referral criteria, you can configure Zapier to:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Notify your \",/*#__PURE__*/e(\"strong\",{children:\"accounting team\"}),\" to stop any pending payments.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Update your \",/*#__PURE__*/e(\"strong\",{children:\"CRM record\"}),\" to reflect the status.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Send an \",/*#__PURE__*/e(\"strong\",{children:\"email\"}),\" to the promoter explaining why the bonus was rejected.\"]})})]}),/*#__PURE__*/e(\"h2\",{children:\"Powerful Actions to Extend Your Referral Program\"}),/*#__PURE__*/e(\"p\",{children:\"Along with triggers, the Clicki Zapier integration offers robust actions that let you automatically update or create records in Clicki whenever something happens in another app.\"}),/*#__PURE__*/r(\"h3\",{children:[\"1. \",/*#__PURE__*/e(\"strong\",{children:\"Lookup Promoter\"})]}),/*#__PURE__*/e(\"p\",{children:\"If you have a promoter\u2019s email or ID from another platform, you can automatically find their information in Clicki. This is ideal for verifying whether someone is an existing promoter before adding duplicate data.\"}),/*#__PURE__*/r(\"h3\",{children:[\"2. \",/*#__PURE__*/e(\"strong\",{children:\"Add Promoter\"})]}),/*#__PURE__*/e(\"p\",{children:\"Got a new email signup on your website? Or maybe a new contact subscribed to your newsletter? Use this action to instantly create a new promoter in Clicki. This ensures everyone who expresses interest can start promoting your brand right away.\"}),/*#__PURE__*/r(\"h3\",{children:[\"3. \",/*#__PURE__*/e(\"strong\",{children:\"Add Referral\"})]}),/*#__PURE__*/e(\"p\",{children:\"Want to attribute a referral to a specific promoter without manually logging into Clicki? Use this action to automatically create a new referral record whenever a purchase is made, a form is filled, or a lead is generated in another system.\"}),/*#__PURE__*/r(\"h3\",{children:[\"4. \",/*#__PURE__*/e(\"strong\",{children:\"Award Bonus\"})]}),/*#__PURE__*/e(\"p\",{children:\"If a partner app indicates a successful referral, you can automate awarding the bonus. This action ensures your top promoters are rewarded quickly, encouraging them to keep spreading the word.\"}),/*#__PURE__*/r(\"h3\",{children:[\"5. \",/*#__PURE__*/e(\"strong\",{children:\"Reject Bonus\"})]}),/*#__PURE__*/e(\"p\",{children:\"For referrals that don\u2019t meet your criteria, you can automate the rejection workflow to keep your Clicki system and your promoters\u2019 records accurate.\"}),/*#__PURE__*/e(\"h2\",{children:\"Popular Ways to Use Clicki\u2019s Zapier Integration\"}),/*#__PURE__*/r(\"p\",{children:[\"Below are a few practical examples to get your creative juices flowing. Each of these workflows (called \",/*#__PURE__*/e(\"em\",{children:\"Zaps\"}),\" in Zapier-speak) help streamline your referral program and overall business processes:\"]}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Add New Website Leads to Clicki as Promoters\"})}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Trigger:\"}),\" New form submission on your website (e.g., via Gravity Forms, Typeform, or WPForms)\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Action:\"}),\" Add Promoter in Clicki\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Benefit:\"}),\" Every new lead can be automatically enrolled in your referral program, expanding your reach.\"]})})]})]}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Notify Your Team on Slack About High-Value Promoters\"})}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Trigger:\"}),\" New Promoter in Clicki with a VIP tag or certain criteria\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Action:\"}),\" Send message to Slack channel\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Benefit:\"}),\" Your sales and marketing teams instantly know about high-value promoters, so they can provide personalized follow-up.\"]})})]})]}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Automatically Award Referral Bonuses After Purchase\"})}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Trigger:\"}),\" New order in eCommerce platform (e.g., Shopify, WooCommerce, BigCommerce)\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Action:\"}),\" Add Referral or Award Bonus in Clicki\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Benefit:\"}),\" Instantly track referrals and process bonuses without manual intervention.\"]})})]})]}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Sync Referrals with Your CRM\"})}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Trigger:\"}),\" New Referral Added in Clicki\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Action:\"}),\" Create or update a lead or contact in your CRM (e.g., Salesforce, Pipedrive, or Zoho CRM)\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Benefit:\"}),\" Ensure your sales pipeline is always up to date with every new referral lead.\"]})})]})]}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Send Automatic Email Thank-You Notes\"})}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Trigger:\"}),\" Bonus Awarded in Clicki\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Action:\"}),\" Send an email campaign via Mailchimp or ActiveCampaign\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Benefit:\"}),\" Show gratitude instantly and encourage more referrals by building stronger relationships.\"]})})]})]}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Maintain Accounting Accuracy\"})}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Trigger:\"}),\" Bonus Awarded in Clicki\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Action:\"}),\" Create a record in QuickBooks or Xero\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Benefit:\"}),\" Keep financial records aligned automatically with your referral bonuses for accurate reporting.\"]})})]})]})]}),/*#__PURE__*/e(\"h2\",{children:\"Step-by-Step: How to Get Started with Clicki Referrals on Zapier\"}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Sign Up for a Zapier Account\"}),/*#__PURE__*/e(\"br\",{}),\"If you don\u2019t already have an account, you can set up a free trial or paid plan depending on your needs.\"]})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Connect Your Clicki Account\"})}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Look for \u201CClicki Referrals\u201D in Zapier\u2019s App Directory.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Click the \u201CConnect\u201D button and log in using your Clicki API key or credentials.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Grant the necessary permissions to sync data between Zapier and Clicki.\"})})]})]}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Create Your First Zap\"})}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Choose the \",/*#__PURE__*/e(\"strong\",{children:\"Trigger\"}),\" (e.g., \u201CNew Promoter in Clicki\u201D).\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Specify the \",/*#__PURE__*/e(\"strong\",{children:\"Action\"}),\" (e.g., \u201CSend Slack Channel Message\u201D).\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Map any relevant fields (e.g., name, email, bonus amount) you want passed from Clicki to Slack.\"})})]})]}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Test & Refine\"})}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"After setting up your Zap, run a test to ensure data flows correctly.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Make any adjustments to the fields, filters, or formatting as needed.\"})})]})]}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Turn On Your Zap\"})}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Once everything is working smoothly, switch on your Zap to go live.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Watch as Clicki and your other apps instantly start sharing data automatically.\"})})]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"h2\",{children:\"Conclusion\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Clicki\u2019s Zapier integration\"}),\" unlocks boundless possibilities for growing your referral program while simplifying daily operations. Whether you want to automatically sign up new promoters, sync referral data to your CRM, award bonuses, or keep track of finances, this new integration puts everything on autopilot.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Not only does it help you scale, but it also frees you and your team to focus on what really matters: \",/*#__PURE__*/e(\"strong\",{children:\"building meaningful relationships\"}),\" with your promoters and delivering outstanding experiences to your customers. Ready to take your referral program to the next level? \",/*#__PURE__*/e(\"strong\",{children:\"Give the Clicki Referrals Zapier integration a try today\"}),\" and experience seamless referral management like never before.\"]})]});export const richText2=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"FieldRoutes + Clicki Referrals\"}),/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"em\",{children:\"Transforming Field Service Management with Seamless Referral Automation\"})]}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Grow. Innovate. Scale.\"}),/*#__PURE__*/e(\"br\",{}),\"Looking for a way to amplify your referral program and engage customers more effectively? By integrating FieldRoutes\u2019 powerful field service management solution with Clicki Referrals, you can effortlessly nurture leads, deliver instant referral rewards, and seamlessly enroll new customers in your referral network. Whether your goal is to spark word-of-mouth or boost operational efficiency, \",/*#__PURE__*/e(\"strong\",{children:\"FieldRoutes + Clicki Referrals\"}),\" offers the ideal synergy.\"]}),/*#__PURE__*/e(\"h3\",{children:\"Key Advantages\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Effortless Lead Synchronization\"}),/*#__PURE__*/e(\"br\",{}),\"Forget about manual data entry! Every referral and prospect from Clicki flows directly into FieldRoutes, ensuring you never skip a follow-up opportunity.\"]}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Immediate Referral Incentives\"}),/*#__PURE__*/e(\"br\",{}),\"Show appreciation to loyal clients in real-time. Track referrals instantly and distribute rewards as soon as they convert, fueling excitement among your customers.\"]}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Hands-Off Enrollment\"}),/*#__PURE__*/e(\"br\",{}),\"As soon as your new clients achieve the appropriate status in FieldRoutes, Clicki automatically enrolls them into your referral ecosystem\u2014no manual steps needed.\"]}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"User-Friendly Social Sharing\"}),/*#__PURE__*/e(\"br\",{}),\"Put shareable referral links at your customers\u2019 fingertips. Encourage them to post and promote across social media, expanding your brand\u2019s visibility with minimal effort.\"]}),/*#__PURE__*/e(\"h3\",{children:\"Why Choose FieldRoutes + Clicki Referrals?\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Accelerate Your Growth\"}),/*#__PURE__*/e(\"br\",{}),\"Combine FieldRoutes\u2019 comprehensive field service platform with Clicki\u2019s standout referral capabilities to tap into unprecedented growth potential.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Boost Marketing Efficiency\"}),/*#__PURE__*/e(\"br\",{}),\"Turn happy customers into brand advocates with minimal manual intervention, freeing up your team for other critical tasks.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Enjoy Quality Leads\"}),/*#__PURE__*/e(\"br\",{}),\"Benefit from higher conversion rates and a steady stream of genuinely interested prospects driven by real customer endorsements.\"]})})]}),/*#__PURE__*/r(\"p\",{children:[\"Empower your field service operations and amplify your marketing impact. \",/*#__PURE__*/e(\"strong\",{children:\"FieldRoutes + Clicki Referrals\"}),\" delivers a streamlined, automated system that converts delighted customers into your most potent brand promoters.\"]})]});export const richText3=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"TLDR:\"}),\" In 2025, supercharging your referral program is all about creating a seamless experience, increasing your incentives to match rising marketing costs, segmenting your campaigns for different audiences, empowering your team with the right knowledge, and adding a competitive edge.\"]}),/*#__PURE__*/e(\"p\",{children:\"Kendall Hines here, founder of Clicki. Today, I want to share five strategies that will help you supercharge your referral program in 2025. Referrals remain one of the most cost-effective ways to grow your business, and I believe that by making them fun, rewarding, and effortless, you\u2019ll see just how quickly word-of-mouth can become your secret weapon.\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"1. Send a 2025 Kickoff Reminder Blast\"}),/*#__PURE__*/e(\"br\",{}),\"Don\u2019t let your customers forget they can refer you to friends and family\u2014start the year with a friendly reminder about your referral program. Email, SMS, or even a personal phone call can do wonders to reignite interest and keep your business top of mind. This is your chance to highlight what\u2019s in it for them and encourage them to spread the word early in the year, setting the stage for consistent referrals in 2025. Need help? \",/*#__PURE__*/e(i,{href:\"about:blank#\",nodeId:\"qp7_CWH9V\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Request it here.\"})})]}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"2. Raise Your Referral Bonus\"}),/*#__PURE__*/e(\"br\",{}),\"With the average cost to acquire customers through Google and Facebook ads now topping $200 for many businesses, boosting your referral bonus can be a true game-changer. We recommend offering a bonus between $50\u2013$200+ because a more generous incentive makes your customers feel genuinely valued and appreciated. When people stand to earn real rewards, their excitement to tell friends, neighbors, and colleagues about your services grows exponentially\u2014especially if you also consider increasing your \u201Cclick\u201D amount to keep customers motivated to share those personal referral links.\"]}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"3. Add More Campaigns (Realtor, Partner, Employee, etc.)\"}),/*#__PURE__*/e(\"br\",{}),\"A one-size-fits-all approach doesn\u2019t cut it anymore, so consider creating targeted campaigns for real estate agents, business partners, employees, or influencers. Each audience has different motivations, and by tailoring your incentives and messaging, you\u2019ll speak directly to their needs. This personal touch not only grabs their attention but also drives them to take action and spread the word about your business to their specific networks.\"]}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"4. Train Your Staff About Clicki\"}),/*#__PURE__*/e(\"br\",{}),\"Your team is on the front line, interacting with customers every day\u2014so it\u2019s vital they understand how your referral program works and why it\u2019s a big deal. By training them on Clicki, you\u2019ll ensure they can guide customers through the process, answer questions, and generate enthusiasm about sharing referral links. When staff are confident and informed, they create a seamless experience that motivates customers to join in and start referring immediately. If you\u2019d like a refresher for you or your team, feel free to \",/*#__PURE__*/e(i,{href:\"about:blank#\",nodeId:\"qp7_CWH9V\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"book a call here.\"})})]}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"5. Run a Competition\"}),/*#__PURE__*/e(\"br\",{}),\"If you\u2019re looking to bring more excitement and urgency to your referral program, a competition can do the trick. Offering a limited-time challenge encourages participants to act fast and share your business with as many people as possible. Along with your standard referral bonuses, adding fun prizes\u2014like exclusive experiences, branded swag, or other memorable rewards\u2014keeps the buzz going and fosters a sense of friendly competition that boosts referrals and brand loyalty.\"]}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Ready to Drive Referral Success in 2025?\"}),/*#__PURE__*/e(\"br\",{}),\"Ultimately, building a standout referral program comes down to creating an experience that customers actually enjoy and want to share. By starting strong with a New Year\u2019s reminder, stepping up your incentives, tailoring campaigns, training your team, and adding a competitive edge, you\u2019ll pave the way for steady growth in 2025 and beyond. Most importantly, remember to stay creative, adaptable, and completely committed to delivering a rewarding experience for everyone involved. Here\u2019s to your success!\"]})]});export const richText4=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Real Green + Clicki Referrals\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Seamless CRM Integration for a Better Referral Experience\"})}),/*#__PURE__*/e(\"h3\",{children:\"Grow. Innovate. Connect.\"}),/*#__PURE__*/e(\"p\",{children:\"Ready to supercharge your referral program and maximize customer engagement? With Real Green SA5\u2019s powerful CRM capabilities combined with Clicki Referrals, you can automatically nurture leads, reward referrals, and move new customers seamlessly into your pipeline. Whether you\u2019re looking to boost word-of-mouth or streamline operations, Real Green + Clicki Referrals offers you the perfect solution.\"}),/*#__PURE__*/e(\"h3\",{children:\"Key Benefits\"}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Automatic Lead Sync\"}),/*#__PURE__*/e(\"br\",{}),\"Eliminate double data entry! Every new referral and lead from Clicki is instantly synced to your Real Green SA5 CRM, so you never miss a chance to follow up.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Instant Referral Rewards\"}),/*#__PURE__*/e(\"br\",{}),\"Reward your brand advocates faster. Automatically track referrals and pay out rewards the moment they convert, creating immediate gratification for customers.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Automated Enrollment\"}),/*#__PURE__*/e(\"br\",{}),\"When new customers reach Status 8 or 9 in SA5, Clicki steps in to automatically enroll them in your referral program\u2014no manual processes required.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"One-Click Social Sharing\"}),/*#__PURE__*/e(\"br\",{}),\"Empower your loyal clients with shareable referral links. They can easily promote your business across social media, expanding your reach with every click.\"]})})]}),/*#__PURE__*/e(\"h3\",{children:\"Why Choose Real Green + Clicki Referrals?\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Drive Business Forward\"}),\": Unlock more growth potential by combining Real Green\u2019s robust CRM with Clicki\u2019s high-performing referral system.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Automate Your Marketing\"}),\": Transform satisfied customers into your best marketers\u2014no extra manpower needed.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Grow Faster\"}),\": Experience higher conversion rates and a steady influx of qualified leads fueled by genuine customer advocacy.\"]})})]})]});export const richText5=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"Why Private Equity Firms Need a Scalable Referral System Across Their Portfolio Brands\"}),/*#__PURE__*/e(\"p\",{children:\"Private equity firms are in the business of growth. When a firm acquires multiple brands, there\u2019s a clear focus on optimizing performance, cutting costs, and driving revenue. But for these firms, achieving the next level of growth requires more than just internal efficiencies or expanded product lines\u2014it\u2019s about leveraging each brand\u2019s existing customers and network for organic growth. That\u2019s where Clicki Referrals comes in.\"}),/*#__PURE__*/e(\"h4\",{children:\"The Challenge: Fragmented Referral Programs\"}),/*#__PURE__*/e(\"p\",{children:\"A typical private equity portfolio consists of a diverse range of brands, each with its own marketing strategies, customer bases, and operational processes. Referral programs, when not standardized, can become disorganized and costly, resulting in missed opportunities and inconsistent results. Moreover, managing multiple referral systems across different brands leads to inefficiencies, a lack of visibility, and fragmented data\u2014making it nearly impossible to scale a unified strategy.\"}),/*#__PURE__*/e(\"h4\",{children:\"The Solution: Clicki Referrals\u2014A Centralized, Scalable System\"}),/*#__PURE__*/e(\"p\",{children:\"Clicki offers a centralized referral system that seamlessly integrates with any CRM or software that each acquired brand may already be using. This centralized approach means that private equity firms can create a standardized referral system across the entire portfolio, giving them full control, visibility, and trackability over every single referral transaction. Here\u2019s why Clicki is the perfect solution for private equity firms:\"}),/*#__PURE__*/r(\"h3\",{children:[\"1. \",/*#__PURE__*/e(\"strong\",{children:\"Standardization Across the Portfolio\"})]}),/*#__PURE__*/e(\"p\",{children:\"With Clicki, every brand under the portfolio can operate under a single referral system, offering a consistent customer and partner experience. This consistency strengthens the brand equity of each business and allows firms to deploy a repeatable, scalable system that can be rolled out across new acquisitions with ease.\"}),/*#__PURE__*/r(\"h3\",{children:[\"2. \",/*#__PURE__*/e(\"strong\",{children:\"Streamlined Integration with Any CRM\"})]}),/*#__PURE__*/e(\"p\",{children:\"Private equity firms often acquire brands with existing tech stacks\u2014each potentially using different CRM systems. Clicki is built to integrate seamlessly into any CRM or sales system, whether the brand uses Salesforce, HubSpot, or industry-specific platforms like ServiceTitan or Housecall Pro. This flexibility ensures that no matter the existing infrastructure, Clicki can be plugged in to provide referral automation and tracking without disrupting current workflows.\"}),/*#__PURE__*/r(\"h3\",{children:[\"3. \",/*#__PURE__*/e(\"strong\",{children:\"Scalability for Multi-Brand Management\"})]}),/*#__PURE__*/e(\"p\",{children:\"Managing multiple brands requires systems that can scale without adding administrative burden. Clicki\u2019s end-to-end referral automation does just that, enabling firms to monitor referral performance, reward promoters, and optimize campaigns\u2014all from a single dashboard. This scalability means that firms can rapidly expand referral programs to new acquisitions without reinventing the wheel each time.\"}),/*#__PURE__*/r(\"h3\",{children:[\"4. \",/*#__PURE__*/e(\"strong\",{children:\"Centralized Data & Insights\"})]}),/*#__PURE__*/e(\"p\",{children:\"One of the biggest benefits of a centralized system is the ability to collect and analyze data across the entire portfolio. Clicki provides in-depth analytics on which brands, promoters, and campaigns are driving the most value. With this level of insight, private equity firms can make data-driven decisions on where to invest marketing dollars, which customer segments to target, and how to optimize referral strategies for the highest return.\"}),/*#__PURE__*/r(\"h3\",{children:[\"5. \",/*#__PURE__*/e(\"strong\",{children:\"Modern Payout Options & Compliance Handling\"})]}),/*#__PURE__*/e(\"p\",{children:\"Promoter satisfaction is key to referral success. Clicki offers instant payouts via Venmo, PayPal, Zelle, ACH, Visa gift cards, and more, ensuring that your promoters are happy and engaged. For private equity firms managing multiple brands, this ease of payment administration across the board is a game-changer. Additionally, Clicki handles all 1099 tax compliance automatically, reducing the administrative burden for each brand\u2019s accounting team.\"}),/*#__PURE__*/r(\"h3\",{children:[\"6. \",/*#__PURE__*/e(\"strong\",{children:\"Cost Efficiency and ROI\"})]}),/*#__PURE__*/e(\"p\",{children:\"Traditional digital advertising is expensive, and costs are only rising. Referral programs, on the other hand, provide a cost-effective way to tap into a brand\u2019s most powerful marketing asset: satisfied customers. With Clicki, private equity firms can reduce dependency on paid channels like Google and Facebook, instead harnessing the power of word-of-mouth to drive growth. The result? Higher ROI and lower customer acquisition costs across the portfolio.\"}),/*#__PURE__*/r(\"h3\",{children:[\"7. \",/*#__PURE__*/e(\"strong\",{children:\"Tailored Campaigns for Diverse Brands\"})]}),/*#__PURE__*/e(\"p\",{children:\"Not every brand in a private equity portfolio has the same target audience or customer lifecycle. Clicki\u2019s flexible campaign structure allows firms to customize referral campaigns for each brand\u2014whether they\u2019re paying per click, per lead, or per signup. This flexibility means that the referral system can be adapted to meet the unique needs of each business without losing the benefits of centralization.\"}),/*#__PURE__*/r(\"h3\",{children:[\"8. \",/*#__PURE__*/e(\"strong\",{children:\"Employee and Partner Incentives\"})]}),/*#__PURE__*/e(\"p\",{children:\"Clicki isn\u2019t just for customer referrals. Many private equity firms see significant growth opportunities by incentivizing internal employees and B2B partners to refer new business. With Clicki, these incentive programs can be run alongside traditional customer campaigns, using the same platform to manage payouts, monitor results, and maintain compliance.\"}),/*#__PURE__*/r(\"h3\",{children:[\"9. \",/*#__PURE__*/e(\"strong\",{children:\"Brand Protection with Advanced Fraud Detection\"})]}),/*#__PURE__*/e(\"p\",{children:\"Ensuring the integrity of referral campaigns is crucial, especially when operating at scale. Clicki\u2019s advanced fraud detection system prevents abuse by automatically cross-referencing promoter details and monitoring for suspicious activity. This protects the portfolio\u2019s reputation and ensures that promotional dollars are spent effectively.\"}),/*#__PURE__*/r(\"h3\",{children:[\"10. \",/*#__PURE__*/e(\"strong\",{children:\"Turnkey Solution for New Acquisitions\"})]}),/*#__PURE__*/e(\"p\",{children:\"One of the fastest ways to grow new acquisitions is through word-of-mouth marketing. With Clicki, private equity firms can instantly deploy a proven referral strategy across newly acquired brands, accelerating growth from day one. This turnkey approach means that no time is wasted, and every brand starts benefiting from a scalable referral system immediately.\"}),/*#__PURE__*/e(\"h3\",{children:\"Why Clicki? Built by Business Owners, for Business Owners\"}),/*#__PURE__*/e(\"p\",{children:\"Clicki was built with one goal in mind: to simplify growth for businesses by automating referrals. Having scaled multiple businesses to millions in revenue, our team knows firsthand the challenges that brands face every day. Our referral software was built to solve these challenges\u2014by business owners, for business owners.\"}),/*#__PURE__*/e(\"p\",{children:\"Private equity firms are always looking for ways to increase value and scale growth. With Clicki, they get a centralized, trackable, and easily scalable referral system that fits seamlessly into any CRM or operational workflow. It\u2019s the simplest, most effective way to unlock the power of referrals across an entire portfolio.\"}),/*#__PURE__*/e(\"h4\",{children:\"Ready to Scale Your Growth?\"}),/*#__PURE__*/e(\"p\",{children:\"Schedule a demo to see how Clicki can drive scalable, trackable growth across your portfolio brands. With our centralized referral system, modern payout options, and deep CRM integrations, Clicki is the solution private equity firms need to standardize and optimize their referral strategies\u2014no matter how diverse their brand portfolio is.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]});export const richText6=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h4\",{children:\"Introduction\"}),/*#__PURE__*/e(\"p\",{children:\"In the competitive market of medical spas, effective referral programs are not just a bonus; they are essential for customer acquisition and retention. Traditionally, many businesses have utilized account credits as a means of rewarding referrals, but Clicki challenges this approach by advocating for cash rewards. This shift not only aligns with modern consumer preferences but also enhances compliance with regulations like the Anti-Kickback Statute (AKS). This article explores why Clicki's model of paying out in cash, as opposed to offering discounts on services, represents a strategic advantage for med spas.\"}),/*#__PURE__*/e(\"h4\",{children:\"Understanding the Limitations of Account Credits\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Account Credits\"}),\": Historically, med spas have rewarded referrals with account credits, which are amounts credited directly to the referrer's account within the business. This method is perceived to encourage repeat visits and loyalty. However, it also presents several drawbacks:\"]}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(13, 13, 13)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Limited Utility\"}),\": Credits can only be used at the issuing med spa, which may not appeal to all customers, particularly if they were looking for more flexibility or had different needs that cash could satisfy.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Complex Management\"}),\": Running an account credit system requires robust tracking and management, which can be administratively burdensome and prone to errors, potentially leading to customer dissatisfaction.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Deferred Benefits\"}),\": Credits offer deferred value, which may not be as compelling as immediate rewards, affecting the overall attractiveness of the referral program.\"]})})]}),/*#__PURE__*/e(\"h4\",{children:\"The Clicki Difference: Cash Rewards for Referrals\"}),/*#__PURE__*/e(\"p\",{children:\"Clicki introduces a model that focuses on providing cash rewards instead of credits. This approach aligns with the preferences of modern consumers and carries several strategic advantages:\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(13, 13, 13)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Immediate and Universal Appeal\"}),\": Cash is universally appealing and provides immediate gratification. Unlike credits, cash can be used anywhere, for any purpose, enhancing the perceived value of the reward.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Simplified Operations\"}),\": Clicki handles all aspects of the reward process, from tracking referrals to disbursing rewards. This reduces the administrative burden on the med spa, allowing staff to focus more on patient care and less on managing a referral program.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Enhanced Compliance with AKS\"}),\": By offering cash rewards for marketing activities (like generating leads or clicks rather than direct referrals), Clicki helps ensure that med spas remain compliant with AKS. This distinction is crucial as it aligns the reward system with legal standards, avoiding potential legal pitfalls associated with direct referral payments.\"]})})]}),/*#__PURE__*/e(\"h4\",{children:\"Why Paying Cash is Better Than Discounts on Services\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(13, 13, 13)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Flexibility and Freedom\"}),\": Cash rewards offer unparalleled flexibility, allowing customers to decide how they want to use their benefits. This freedom not only enhances customer satisfaction but also increases the likelihood of program participation.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Perceived Generosity\"}),\": Cash is often viewed as a more generous reward compared to discounts or credits. This perception can boost the effectiveness of the referral program, as participants feel more genuinely rewarded for their efforts.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Boosting Customer Loyalty\"}),\": While discounts on services require recipients to return to the same med spa, cash rewards can indirectly foster loyalty by creating positive associations with the brand. Satisfied customers who feel valued are more likely to return and recommend the spa to others, even without the obligation of a credit.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Operational and Financial Transparency\"}),\": Cash transactions are straightforward to track and less complex to manage than credit systems that require ongoing oversight of balances and expirations. This clarity can lead to better financial planning and fewer customer service issues.\"]})})]}),/*#__PURE__*/e(\"h4\",{children:\"Clicki's Third-Party Role and Cashout Money Flow: A Concrete Example\"}),/*#__PURE__*/e(\"p\",{children:\"To illustrate the seamless process of Clicki's cash rewards system, let's consider a practical example:\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Scenario\"}),\": A customer refers a friend to a med spa using a Clicki-provided referral link. The friend visits the spa and makes a qualifying purchase.\"]}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Step 1\"}),\": The referral is tracked through Clicki's advanced software, which verifies that the referral meets all the criteria set out in the spa's marketing campaign.\"]}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Step 2\"}),\": Once the action is confirmed, Clicki processes the reward. The spa is notified and the amount to be paid as a cash reward is determined based on the pre-agreed terms.\"]}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Step 3\"}),\": Clicki initiates a charge to the med spa's registered payment method (such as a business credit card) for the agreed reward amount.\"]}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Step 4\"}),\": Simultaneously, Clicki disburses the cash reward to the referrer's chosen payment method, which could be direct bank transfer, PayPal, Venmo, or any other available cash-out option.\"]}),/*#__PURE__*/e(\"p\",{children:'This process exemplifies the \"third-party veil\" Clicki maintains, ensuring that the med spa never directly pays the customer for referrals, thus maintaining compliance with AKS. The med spa funds the reward, but the transaction and customer interaction are managed entirely by Clicki, keeping the spa\u2019s operations AKS-compliant and simplifying their reward system.'}),/*#__PURE__*/e(\"h4\",{children:\"Conclusion\"}),/*#__PURE__*/e(\"p\",{children:\"For med spas, adapting to the evolving preferences of consumers and maintaining compliance with healthcare regulations are both critical. Clicki\u2019s model of offering cash rewards for referrals addresses these needs effectively, providing a compelling alternative to traditional credit-based systems. By opting for cash rewards, med spas can enhance the appeal of their referral programs, simplify their operations, and ensure compliance with critical regulations like the AKS. Ultimately, this approach not only satisfies customers but also positions med spas for greater business success and customer loyalty.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Disclaimer\"}),/*#__PURE__*/e(\"p\",{children:\"The information provided in this article, including recommendations and examples pertaining to referral program practices and compliance with the Anti-Kickback Statute (AKS), is for general informational and educational purposes only. While we strive to keep the information up-to-date and correct, we make no representations or warranties of any kind, express or implied, about the completeness, accuracy, reliability, suitability, or availability with respect to the content.\"}),/*#__PURE__*/e(\"p\",{children:\"This article is not intended to provide, and should not be relied on for, legal advice. Med spa owners and other readers are strongly encouraged to consult with a qualified attorney or legal expert to obtain advice with respect to any particular legal matter or question, including compliance with AKS or any other laws.\"}),/*#__PURE__*/e(\"p\",{children:\"No reader, user, or browser of this site should act or refrain from acting on the basis of information on this site without first seeking legal advice from counsel in the relevant jurisdiction. Only your individual attorney can provide assurances that the information contained herein \u2013 and your interpretation of it \u2013 is applicable or appropriate to your particular situation.\"}),/*#__PURE__*/e(\"p\",{children:\"Clicki, the authors, and all affiliates of this publication expressly disclaim all liability in respect to actions taken or not taken based on any or all the contents of this article.\"})]});export const richText7=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"The Clicki Advantage: Elevating Your Marketing Strategy with Custom-Branded Referral Links\"}),/*#__PURE__*/e(\"p\",{children:\"In the dynamic landscape of digital marketing, referrals stand as a fundamental pillar for driving growth and customer acquisition. Clicki's custom-branded referral links offer a potent mechanism to amplify this potential, providing businesses with a sophisticated yet accessible tool to expand their customer base. What sets Clicki apart is its ability to fully white label the platform, offering a fully branded referral campaign experience from front to back. In this comprehensive exploration, we'll delve into the myriad advantages of custom-branded referral links, highlighting why they serve as the linchpin to unlocking superior results for your business with Clicki.\"}),/*#__PURE__*/e(\"p\",{children:\"The Essence of Trust: The Significance of Custom-Branded Links\"}),/*#__PURE__*/e(\"p\",{children:\"Custom-branded referral links are built on a foundation of trust. By including a familiar and trusted brand name in referral links, businesses can instill a sense of credibility and professionalism. This trust factor significantly enhances click-through rates, leading to a higher conversion rate and, ultimately, greater revenue.\"}),/*#__PURE__*/e(\"p\",{children:\"Viral Potential: The Amplifying Effect of Custom-Branded Links\"}),/*#__PURE__*/e(\"p\",{children:\"Custom-branded referral links possess a unique viral potential. Individuals are more inclined to share links that feature a recognizable brand name, as it reflects positively on their personal brand. This inherent shareability ensures that your custom-branded links are disseminated across various social media platforms and channels, exponentially increasing their reach and effectiveness.\"}),/*#__PURE__*/e(\"p\",{children:\"Seamless Setup, Immediate Impact: Simplifying Custom-Branding with Clicki\"}),/*#__PURE__*/e(\"p\",{children:\"Setting up custom-branded referral links with Clicki is a breeze, ensuring accessibility for businesses of all sizes. Through Clicki's intuitive dashboard, you can customize your referral links in a matter of minutes by incorporating a few DNS records into your domain. This streamlined process enables most companies to launch their custom-branded referral links on Clicki within minutes, maximizing the efficacy of their referral programs.\"}),/*#__PURE__*/e(\"p\",{children:\"Setting Clicki Apart: Fully White Labeling for a Unique Brand Experience\"}),/*#__PURE__*/e(\"p\",{children:\"What truly sets Clicki apart is its ability to fully white label the platform, offering a fully branded referral campaign experience from front to back. Unlike many other referral or affiliate software options, Clicki allows brands to infuse their unique brand identity into every aspect of the referral program, creating a cohesive and immersive brand experience for customers and promoters alike.\"}),/*#__PURE__*/e(\"p\",{children:\"Real-World Exemplars: Custom-Branded Links in Action\"}),/*#__PURE__*/e(\"p\",{children:'To illustrate the potency of custom-branded referral links, consider the following real-world examples. Picture a customer encountering a referral link such as \"refer.marshallash.com\" or \"refer.betterlifemades.com.\" These links not only exude visual appeal but also convey a sense of trust and credibility, resulting in heightened engagement and conversion rates.'}),/*#__PURE__*/e(\"p\",{children:\"Conclusion: Unleashing the Potential of Custom-Branded Referral Links with Clicki\"}),/*#__PURE__*/e(\"p\",{children:\"In conclusion, custom-branded referral links serve as a catalyst for businesses seeking to augment their referral marketing endeavors. By harnessing Clicki's user-friendly platform and fully white labeling capabilities, you can swiftly establish custom-branded links that yield superior results. With enhanced trust, heightened sharing potential, and effortless setup, custom-branded referral links emerge as an indispensable asset for any business aiming to expand its customer base.\"})]});export const richText8=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"Introduction\"}),/*#__PURE__*/e(\"p\",{children:'Hi, I\\'m Kendall Hines, the founder and CEO of Clicki. My journey with Clicki began with a question that changed everything: \"What if I paid my customers instead of Google to promote our business?\" This simple yet profound thought laid the foundation for what Clicki is today - a revolution in referral marketing.'}),/*#__PURE__*/e(\"h3\",{children:\"The Genesis of Clicki: A Personal Mission\"}),/*#__PURE__*/e(\"p\",{children:\"My entrepreneurial journey wasn't always about software and technology. It began with a lawn care business, Lawn Doctor, handed down by my parents. Transforming it from a struggling enterprise into a million-dollar success story was my first taste of how powerful customer-driven growth can be. But the real challenge was managing the overwhelming leads and ensuring each one was a stepping stone to more business. That's where the roots of Clicki were planted.\"}),/*#__PURE__*/e(\"h3\",{children:\"Simplifying Referrals: The Heart of Clicki's Philosophy\"}),/*#__PURE__*/e(\"p\",{children:\"In a world cluttered with complex marketing tools, I envisioned Clicki as the epitome of simplicity. It's not just a tool; it's a mindset shift. We empower small businesses to leverage their happiest customers, turning word-of-mouth into a tangible, trackable, and rewarding system. This simplicity is evident in our one-click sharing, native app functionality, and real-time referral tracking \u2013 features designed to make referral marketing as effortless as having a conversation.\"}),/*#__PURE__*/e(\"h3\",{children:\"One-Click Sharing: Revolutionizing Referral Engagement\"}),/*#__PURE__*/e(\"p\",{children:\"The key to a successful referral program is making it easy for customers to share their love for your business. With Clicki, we introduced one-click sharing \u2013 a feature that allows your customers to share their referral links across various platforms with just one click. Whether it's Facebook, email, or text, sharing a referral is as simple as pressing a button. This simplicity isn't just a convenience; it's a strategy to significantly increase customer engagement and participation in your referral programs.\"}),/*#__PURE__*/e(\"h3\",{children:\"Native App Functionality: Beyond Traditional Boundaries\"}),/*#__PURE__*/e(\"p\",{children:\"In today\u2019s mobile-first world, having a responsive, app-like experience is crucial. We developed Clicki's native app functionality to ensure that both business owners and their customers have an intuitive, seamless experience, whether they're on a desktop or a smartphone. This approach not only provides convenience but also increases engagement and interaction with your referral program.\"}),/*#__PURE__*/e(\"h3\",{children:\"Seamless Tracking: Building Trust Through Transparency\"}),/*#__PURE__*/e(\"p\",{children:\"At Clicki, we understand the importance of trust and transparency in business relationships. That\u2019s why we\u2019ve invested heavily in developing a real-time tracking system. It gives both you and your customers immediate insights into the performance of your referral program. You can see who\u2019s sharing, who\u2019s engaging, and most importantly, who\u2019s converting. This transparency builds trust and motivates your customers to actively participate in growing your business.\"}),/*#__PURE__*/e(\"h3\",{children:\"Integration Ecosystem: Making Clicki a Part of Your Business\"}),/*#__PURE__*/e(\"p\",{children:\"Integration is key in today\u2019s interconnected digital ecosystem. Clicki seamlessly integrates with popular tools like Jobber and Zapier, making it an extension of your existing business processes. This integration simplifies referral tracking and rewards distribution, ensuring that your focus remains on growing your business, not on managing another standalone tool.\"}),/*#__PURE__*/e(\"h3\",{children:\"Rewarding Referrals: A Personalized Approach\"}),/*#__PURE__*/e(\"p\",{children:\"Our reward system goes beyond mere transactions. It's about creating a personalized experience for your customers. With Clicki, you can tailor the rewards to match your business model and customer preferences. Whether it\u2019s cash, discounts, or custom rewards, Clicki\u2019s flexible rewards system allows you to show your appreciation in the most fitting way possible.\"}),/*#__PURE__*/e(\"h3\",{children:\"Clicki\u2019s Vision: Empowering Small Businesses\"}),/*#__PURE__*/e(\"p\",{children:\"My vision for Clicki is clear: to empower over 100,000 small businesses around the world with authentic, customer-driven marketing. We are not just fighting the high costs of digital advertising; we are revolutionizing the way small businesses connect with their communities. It\u2019s about bringing the power back to the real heartbeat of the economy - the local businesses.\"}),/*#__PURE__*/e(\"h3\",{children:\"Conclusion: A Commitment to Your Success\"}),/*#__PURE__*/e(\"p\",{children:\"As we continue on this exciting journey, my commitment to your success remains unwavering. With Clicki, referral marketing is no longer a challenge; it's an opportunity to grow and thrive. Join us in this revolution, and let\u2019s turn every customer into a story that spreads far and wide.\"})]});export const richText9=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"img\",{alt:'<table style=\"width:100%; border-collapse: collapse;\">   <tr>     <th style=\"padding: 15px; text-align: left; background-color: #555555; color: white;\">Feature</th>     <th style=\"padding: 15px; text-align: left; background-color: #32CD32; color: white;\">Clicki (Cash Payouts)</th>     <th style=\"padding: 15px; text-align: left; background-color: #D3D3D3; color: black;\">Traditional Method (Account Credits)</th>   </tr>   <tr>     <td style=\"padding: 15px; border-bottom: 1px solid #ddd; background-color: #555555; color: white;\">Immediate Value</td>     <td style=\"padding: 15px; border-bottom: 1px solid #ddd; background-color: #90EE90; color: black;\">Cash rewards provide immediate, tangible value to customers.</td>     <td style=\"padding: 15px; border-bottom: 1px solid #ddd; background-color: #F0F0F0; color: grey;\">Credits may feel less tangible and are tied to future purchases.</td>   </tr>   <tr>     <td style=\"padding: 15px; border-bottom: 1px solid #ddd; background-color: #555555; color: white;\">Flexibility</td>     <td style=\"padding: 15px; border-bottom: 1px solid #ddd; background-color: #90EE90; color: black;\">Cash can be used anywhere, offering more freedom to the customer.</td>     <td style=\"padding: 15px; border-bottom: 1px solid #ddd; background-color: #F0F0F0; color: grey;\">Credits are restricted to the issuing business or platform.</td>   </tr>   <tr>     <td style=\"padding: 15px; border-bottom: 1px solid #ddd; background-color: #555555; color: white;\">Simplicity & Efficiency</td>     <td style=\"padding: 15px; border-bottom: 1px solid #ddd; background-color: #90EE90; color: black;\">Simple, one-tap process for receiving rewards reduces operational complexity.</td>     <td style=\"padding: 15px; border-bottom: 1px solid #ddd; background-color: #F0F0F0; color: grey;\">Managing account credits can be time-consuming and error-prone.</td>   </tr>   <tr>     <td style=\"padding: 15px; border-bottom: 1px solid #ddd; background-color: #555555; color: white;\">Customer Perception</td>     <td style=\"padding: 15px; border-bottom: 1px solid #ddd; background-color: #90EE90; color: black;\">Perceived as a more generous and desirable reward.</td>     <td style=\"padding: 15px; border-bottom: 1px solid #ddd; background-color: #F0F0F0; color: grey;\">Often seen as less valuable than cash.</td>   </tr>   <tr>     <td style=\"padding: 15px; border-bottom: 1px solid #ddd; background-color: #555555; color: white;\">Engagement & Sharing</td>     <td style=\"padding: 15px; border-bottom: 1px solid #ddd; background-color: #90EE90; color: black;\">Higher motivation for customers to participate and share due to immediate cash reward.</td>     <td style=\"padding: 15px; border-bottom: 1px solid #ddd; background-color: #F0F0F0; color: grey;\">Lower incentive to engage and share due to restricted use of credits.</td>   </tr>   <tr>     <td style=\"padding: 15px; border-bottom: 1px solid #ddd; background-color: #555555; color: white;\">Cost-Effectiveness</td>     <td style=\"padding: 15px; border-bottom: 1px solid #ddd; background-color: #90EE90; color: black;\">Reduces administrative overhead and potential errors, leading to long-term cost savings.</td>     <td style=\"padding: 15px; border-bottom: 1px solid #ddd; background-color: #F0F0F0; color: grey;\">Hidden costs in management and potential errors can be higher.</td>   </tr>   <!-- Continue with other rows as needed --> </',className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,uxAMAWGcjvzU62ftkhqvvXHIc.png?originalFilename=Screenshot+2024-04-04+at+1.50.46%C3%A2%C2%80%C2%AFPM.png\",\"data-framer-height\":\"620\",\"data-framer-width\":\"1521\",height:\"310\",src:\"https://framerusercontent.com/images/uxAMAWGcjvzU62ftkhqvvXHIc.png\",srcSet:\"https://framerusercontent.com/images/uxAMAWGcjvzU62ftkhqvvXHIc.png?scale-down-to=512 512w,https://framerusercontent.com/images/uxAMAWGcjvzU62ftkhqvvXHIc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uxAMAWGcjvzU62ftkhqvvXHIc.png 1521w\",style:{aspectRatio:\"1521 / 620\"},width:\"760\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"In the dynamic landscape of modern business, where customer engagement and brand loyalty are paramount, referral programs stand out as crucial drivers of growth and customer retention. For years, many businesses have relied on account credits as a means of rewarding referrals. However, Clicki is challenging this norm by advocating for the benefits of liquid cash rewards. This comprehensive exploration delves into why paying out in cash, as opposed to account credits, is not merely a matter of customer preference but a strategic business decision with far-reaching benefits.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Understanding the Traditional Approach: Account Credits\"})}),/*#__PURE__*/e(\"p\",{children:\"Traditionally, businesses have preferred account credits for their referral programs. This approach is often perceived as cost-effective and a method to ensure repeat patronage. Account credits are seen as a way to keep the rewards within the business ecosystem. While this method can indeed encourage repeat business, it comes with several limitations and hidden costs that are often overlooked.\"}),/*#__PURE__*/e(\"p\",{children:\"Firstly, account credits limit the freedom of choice for the customer. Credits can typically only be used for services or products offered by the issuing company, which might not always align with the customer's immediate needs or wants. This limitation can reduce the perceived value of the reward, potentially affecting the customer's enthusiasm for participating in the referral program.\"}),/*#__PURE__*/e(\"p\",{children:\"Moreover, managing an account credit system can be surprisingly complex and resource-intensive. Tracking the issuance and redemption of credits, ensuring they are correctly applied, and dealing with any errors or discrepancies can consume significant time and administrative resources. This hidden cost is an important factor that businesses need to consider. Additionally, account credits can lead to complications in accounting, particularly in recognizing revenue and managing liabilities.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Clicki Difference: Embracing Liquid Cash Rewards\"})}),/*#__PURE__*/e(\"p\",{children:\"Clicki, with its innovative approach, offers a stark contrast to the traditional account credit system. By providing liquid cash rewards for referrals, Clicki addresses many of the shortcomings associated with account credits.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"1. Immediate and Tangible Value\"})}),/*#__PURE__*/e(\"p\",{children:\"Cash rewards offer immediate and tangible value to customers. Unlike account credits, which are abstract and can only be redeemed under certain conditions, cash is universally accepted and provides freedom for the recipient to use it as they see fit. This tangibility and flexibility make cash rewards inherently more attractive and can significantly enhance the appeal of a referral program.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"2. Simplicity and Efficiency\"})}),/*#__PURE__*/e(\"p\",{children:\"Clicki's system is designed for simplicity and efficiency. When a referral is successful, the process for claiming a reward is straightforward. With just a few clicks, the reward is processed and transferred seamlessly to the referrer. Customers can receive their rewards through popular and widely accepted platforms like Venmo, Cash App, Zelle, or even as Amazon Gift Cards. This simplicity eliminates the need for customers to follow up on their rewards or understand complex credit systems.\"}),/*#__PURE__*/e(\"p\",{children:\"For businesses, this means a significant reduction in the administrative burden. There is no need to track credits, worry about expiration dates, or handle customer inquiries related to credit redemption. This streamlined process not only saves time but also reduces the potential for errors, a common issue with credit systems.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"3. Enhanced Customer Perception and Loyalty\"})}),/*#__PURE__*/e(\"p\",{children:\"The way customers perceive rewards can have a profound impact on the effectiveness of a referral program. Cash is often seen as a more generous reward compared to account credits. This perception can lead to enhanced customer satisfaction and loyalty. When customers feel valued and rewarded in a tangible way, they are more likely to speak positively about the brand and participate in the referral program again.\"}),/*#__PURE__*/e(\"p\",{children:\"Furthermore, the flexibility of cash allows customers to feel a sense of autonomy and appreciation. They are not restricted to spending their reward in a particular way, which can often lead to a more positive association with the brand. This positive experience is crucial in turning one-time referrers into long-term brand advocates.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"4. Operational Efficiency and Cost-Effectiveness\"})}),/*#__PURE__*/e(\"p\",{children:\"From an operational standpoint, Clicki's cash payout system can be more cost-effective than managing account credits. While it might seem counterintuitive, the reduction in administrative overhead, error correction, and customer service inquiries related to credit management can result in significant savings.\"}),/*#__PURE__*/e(\"p\",{children:\"Moreover, Clicki's automated process minimizes the likelihood of human error, further reducing potential costs associated with correcting such mistakes. This efficiency is not just about saving money; it's also about optimizing staff time and resources, allowing employees to focus on more productive and strategic activities.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"5. Increased Engagement and Sharing\"})}),/*#__PURE__*/e(\"p\",{children:\"One of the most significant advantages of Clicki's cash reward system is the increased engagement and sharing it fosters. When customers know they will receive a cash reward that they can use immediately and in any way they choose, they are more motivated to participate in the referral program and share it with their network.\"}),/*#__PURE__*/e(\"p\",{children:\"This increased engagement can have a ripple effect. Satisfied customers who have had a positive experience with the referral program are more likely to share their experiences with friends, family, and social networks, thereby amplifying the reach and effectiveness of the referral program.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Comparative Analysis: Cash Payouts vs. Account Credits\"})}),/*#__PURE__*/e(\"p\",{children:\"To further understand the impact of Clicki's cash payout system, let's compare it to the traditional account credit system across various parameters:\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"1. Value Perception\"})}),/*#__PURE__*/e(\"p\",{children:\"Cash is universally valued and offers immediate gratification, making it a more attractive incentive for customers. In contrast, account credits are often perceived as having less value since they are tied to future purchases and can have restrictions.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"2. Flexibility and Freedom\"})}),/*#__PURE__*/e(\"p\",{children:\"Cash offers unparalleled flexibility. Customers are free to use their rewards in any manner they see fit, whether it\u2019s to pay bills, buy groceries, or splurge on something they\u2019ve been eyeing. This freedom is a significant advantage over account credits, which restrict the customer to spend within the confines of the issuing business.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"3. Customer Experience\"})}),/*#__PURE__*/e(\"p\",{children:\"The process of receiving and using cash rewards is straightforward and hassle-free, enhancing the customer experience. With account credits, customers often need to navigate the business's specific rules and restrictions, which can be a source of frustration and confusion.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"4. Operational Complexity\"})}),/*#__PURE__*/e(\"p\",{children:\"Clicki's automated cash payout system is operationally simpler and more efficient than managing an account credit system. The latter requires ongoing tracking, accounting, and potential customer support interventions, adding layers of complexity and potential for error.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"5. Encouraging Repeat Business\"})}),/*#__PURE__*/e(\"p\",{children:\"While account credits are designed to encourage repeat business, they can sometimes have the opposite effect. If customers feel forced to spend their rewards in a way that doesn't align with their preferences, it can lead to negative feelings towards the business. On the other hand, the goodwill generated by cash rewards can indirectly encourage customers to return to the business out of a sense of loyalty and positive association.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Clicki\u2019s Role in Streamlining Referral Programs\"})}),/*#__PURE__*/e(\"p\",{children:\"Clicki is not just a platform for managing referral rewards; it's a comprehensive tool that helps businesses streamline their referral programs. By automating the reward process and offering cash payouts, Clicki allows businesses to focus on what matters most: building strong relationships with their customers and growing their customer base.\"}),/*#__PURE__*/e(\"p\",{children:\"The ease of use and effectiveness of the Clicki platform make it an attractive option for businesses of all sizes. Whether it's a small startup looking to gain traction or a well-established company seeking to enhance its customer engagement strategies, Clicki offers a versatile and powerful solution.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Clicki's Non-Custodial Approach to Funds\"})}),/*#__PURE__*/e(\"p\",{children:\"An important aspect of Clicki's functionality is its non-custodial approach to funds. This means that Clicki does not hold onto the reward funds. Instead, the funds are conceptual until the moment a customer decides to cash out. At that point, Clicki initiates a charge to the company's credit card and then seamlessly transfers the funds to the customer. This process ensures that the funds are always current and eliminates the need for businesses to maintain a separate account for referral rewards.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Future of Referral Rewards with Clicki\"})}),/*#__PURE__*/e(\"p\",{children:\"As businesses continue to navigate the ever-changing landscape of customer engagement, the importance of an effective referral program cannot be overstated. Clicki's innovative approach to referral rewards, with its emphasis on cash payouts, presents a compelling alternative to the traditional account credit method.\"}),/*#__PURE__*/e(\"p\",{children:\"By offering a system that is customer-centric, operationally efficient, and strategically advantageous, Clicki is paving the way for a new era in customer referral programs. Businesses that embrace this approach are likely to see enhanced customer loyalty, increased engagement, and ultimately, greater growth and success.\"}),/*#__PURE__*/e(\"p\",{children:\"In conclusion, Clicki's cash payout system represents not just a shift in how referral rewards are distributed, but a reimagining of the referral program as a tool for genuine customer engagement and business growth. By understanding the limitations of account credits and embracing the benefits of liquid cash rewards, businesses can unlock new opportunities and create more meaningful connections with their customers.\"})]});export const richText10=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"Embrace Clicki: The Ultimate Referral Solution\"}),/*#__PURE__*/e(\"h4\",{children:/*#__PURE__*/e(\"strong\",{children:\"Digital Referrals: A Click Away\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Experience the seamless integration of digital referrals with Clicki. Tap into the power of referral links to effortlessly drive traffic and track user engagement.\"})}),/*#__PURE__*/e(\"h4\",{children:/*#__PURE__*/e(\"strong\",{children:\"Analog Referrals: Merging Tradition with Technology\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Revolutionize traditional word-of-mouth marketing by adding manual rewards for analog referrals. Clicki bridges the gap between personal recommendations and digital tracking.\"})}),/*#__PURE__*/e(\"h4\",{children:/*#__PURE__*/e(\"strong\",{children:\"Simplified Rewarding System\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Enjoy a user-friendly interface for rewarding both digital and analog referrals. Clicki's streamlined process encourages ongoing promoter engagement.\"})}),/*#__PURE__*/e(\"h3\",{children:\"Seamless Integration with Your Business Ecosystem\"}),/*#__PURE__*/e(\"h4\",{children:/*#__PURE__*/e(\"strong\",{children:\"Effortless Automation\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Automate your referral programs with Clicki. Focus on growth while the system manages the intricacies of your referral strategy.\"})}),/*#__PURE__*/e(\"h4\",{children:/*#__PURE__*/e(\"strong\",{children:\"Diverse Cashout Options\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Offer a variety of cashout options including Venmo, PayPal, and more, catering to the preferences of your diverse promoter base.\"})}),/*#__PURE__*/e(\"h4\",{children:/*#__PURE__*/e(\"strong\",{children:\"Data-Driven Insights\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Make informed decisions with Clicki's comprehensive analytics tools, ensuring your referral strategies align with business objectives.\"})}),/*#__PURE__*/e(\"h3\",{children:\"Why Clicki Stands Out\"}),/*#__PURE__*/e(\"h4\",{children:/*#__PURE__*/e(\"strong\",{children:\"Versatile for Every Business\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Clicki's scalable platform caters to businesses of all sizes. Choose from a range of plans to fit your specific needs.\"})}),/*#__PURE__*/e(\"h4\",{children:/*#__PURE__*/e(\"strong\",{children:\"Tailored to Your Needs\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Customize your referral program with features like GeoBounty targeting and advanced fraud detection.\"})}),/*#__PURE__*/e(\"h4\",{children:/*#__PURE__*/e(\"strong\",{children:\"Trusted by Industry Leaders\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Join the community of satisfied Clicki users. Read testimonials that attest to its effectiveness and efficiency.\"})}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"Conclusion: Step into Growth with Clicki\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Clicki is not just a referral software, but a gateway to enhanced organic growth. With its integration of digital and analog referrals, coupled with an easy-to-use reward system, it's the perfect tool for businesses aiming for expansion.\"})}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(i,{href:\"https://clicki.com/\",nodeId:\"qp7_CWH9V\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"Get Started with Clicki\"})})}),/*#__PURE__*/e(\"strong\",{children:\" - Transform Your Referral Marketing Strategy Today!\"})]})]});export const richText11=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:' \"If you\\'re willing to pay Google per click, why not pay your own customers instead?\" - Kendall Hines / Co-founder & CEO @ Clicki'})}),/*#__PURE__*/r(\"strong\",{children:[/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"Introduction:\"]}),\" In today's digital marketing arena, the GeoBounty feature within Clicki campaigns stands out, offering unmatched customization and control for businesses. This innovative tool allows companies to finely tune referral links, landing pages, and communication strategies, enhancing campaign effectiveness. GeoBounty uniquely positions promoters to earn by driving geographically relevant traffic. This ensures that businesses invest in impactful results. The core question Clicki poses is thought-provoking: If you're willing to pay Google per click, why not pay your own customers instead? This approach empowers loyal customers to become active brand ambassadors. This article explores GeoBounty's reshaping of referral marketing and how businesses can leverage it for significant growth.\"]}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"GeoBounty: Customizable Campaigns' Keystone\"})}),/*#__PURE__*/e(\"p\",{children:\"GeoBounty is more than a mere tool; it's the bedrock of Clicki\u2019s referral campaigns. It offers businesses the flexibility to mold every campaign aspect, ensuring each element aligns perfectly with both the target audience and the company's marketing goals.\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"Customization at Every Step:\"})}),/*#__PURE__*/r(\"ol\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(236, 236, 236)\",\"--framer-text-transform\":\"none\",\"--list-style-type\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Referral Links:\"}),\" Create customizable, easily shareable, and trackable referral links. This feature not only allows promoters to spread the word with ease but also enables businesses to monitor each link's effectiveness.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Landing Pages:\"}),\" A compelling landing page can significantly boost conversion rates. GeoBounty enables businesses to personalize these pages, making them resonate with their brand's identity and meet their audience's specific needs.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Email and SMS Communication:\"}),\" Clicki allows businesses to customize every piece of communication, ensuring messages are not just informative but engaging and aligned with the brand\u2019s tone.\"]})})]}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"Maximizing GeoBounty's Impact:\"})}),/*#__PURE__*/e(\"p\",{children:\"Harnessing GeoBounty's full power requires strategic customization:\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(236, 236, 236)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Target the Right Audience:\"}),\" Use geographic parameters to ensure campaigns reach the most relevant audiences, leading to better leads and improved ROI.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Craft Compelling Content:\"}),\" Tailored content on landing pages and in communications increases the likelihood of conversion.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Optimize Continuously:\"}),\" The digital landscape is ever-changing. Regular performance analysis and campaign adjustments can yield ongoing improvements.\"]})})]}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"Real-World Success Stories:\"})}),/*#__PURE__*/e(\"p\",{children:\"Actual testimonials from Clicki users underscore GeoBounty's effectiveness:\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(236, 236, 236)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Maria Hauch of Masha Lash\"}),': \"Clicki has been a key part of our growth strategy. 175 of our customers have become promoters, proving more effective than Facebook Ads or Google PPC.\"']})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Beret Loncar of Body Mechanics\"}),': \"Seeing Clicki integrated into our booking and CRM system is awesome. Everything is automated and trackable.\"']})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Travis Bottoms of Polite Pest Control\"}),': \"In the first 60 days using Clicki, we generated 165 referrals at a cost per lead of $7.65. These referrals converted to sales at a 65% close rate. AMAZING!\"']})})]}),/*#__PURE__*/e(\"p\",{children:\"These stories highlight how GeoBounty empowers businesses to transform loyal customers into successful promoters, a more direct and personal approach than traditional PPC channels.\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"Conclusion:\"})}),/*#__PURE__*/e(\"p\",{children:\"Clicki's GeoBounty feature is revolutionizing referral marketing by offering unprecedented customization levels. It challenges businesses to rethink their digital marketing strategies: Why pay search engines for clicks when you can invest in your customers, turning them into powerful brand ambassadors? This paradigm shift ensures that marketing efforts are not just effective but also foster deeper customer relationships. In an era where personalization and relevance are paramount, GeoBounty by Clicki emerges as a crucial tool for businesses aiming to boost their marketing strategies and achieve measurable results.\"})]});export const richText12=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Introduction\"}),/*#__PURE__*/e(\"p\",{children:\"In the digital age, communication has become the cornerstone of customer relations for small businesses. As the landscape of email and SMS communications becomes increasingly cluttered and challenging to navigate, these businesses face a significant hurdle: ensuring their essential communications reach their clients effectively. This challenge is magnified when clients opt out of marketing communications, often inadvertently blocking crucial account-based notifications as well. This scenario underscores the importance of a 'walled garden' communication strategy, particularly in today's economy.\"}),/*#__PURE__*/e(\"h2\",{children:\"The Challenge of Digital Communication in Today's Market\"}),/*#__PURE__*/e(\"h3\",{children:\"Growing Difficulty in Reaching Customers\"}),/*#__PURE__*/e(\"p\",{children:\"In the contemporary business environment, landing email and SMS communications with customers is becoming increasingly challenging. Factors like stringent email filters, rising competition for attention, and the sheer volume of digital messages contribute to this difficulty. This situation is particularly problematic for small businesses, where every customer interaction counts.\"}),/*#__PURE__*/e(\"h3\",{children:\"The Risk of Overlapping Communication Channels\"}),/*#__PURE__*/e(\"p\",{children:\"Traditionally, many small businesses use a singular channel for all customer-facing communications. This approach, while seemingly efficient, often leads to several drawbacks. Crucial notifications may be lost amid marketing content, or worse, customers opting out of promotional messages might unintentionally block vital account-related information.\"}),/*#__PURE__*/e(\"h2\",{children:\"The Walled Garden Approach: A Solution\"}),/*#__PURE__*/e(\"h3\",{children:\"Understanding the Walled Garden Strategy\"}),/*#__PURE__*/e(\"p\",{children:\"A 'walled garden' strategy in communication involves creating a distinct, controlled environment where important messages are delivered reliably. This approach separates essential communications like account notifications from marketing or promotional content. It ensures that critical messages are not subjected to the whims of customer preferences regarding marketing content.\"}),/*#__PURE__*/e(\"h3\",{children:\"Implementation in Small Businesses\"}),/*#__PURE__*/e(\"p\",{children:\"For small businesses, adopting a walled garden strategy means reevaluating their communication channels. It involves segmenting messages into different categories and ensuring that vital information is not tangled with marketing or promotional content.\"}),/*#__PURE__*/e(\"h3\",{children:\"Case Study: Clicky's Approach\"}),/*#__PURE__*/e(\"p\",{children:\"An exemplary implementation of this strategy is seen with Clicky, a referral software. Clicky manages SMS and email communications for its small business clients, ensuring that these messages are sent through the client's domain. This method significantly enhances the reliability of message delivery, even if customers opt out of marketing or referral-based notifications.\"}),/*#__PURE__*/e(\"h2\",{children:\"Benefits of a Walled Garden Strategy for Small Businesses\"}),/*#__PURE__*/e(\"h3\",{children:\"Ensured Delivery of Critical Communications\"}),/*#__PURE__*/e(\"p\",{children:\"The primary benefit of a walled garden strategy is the assurance that important messages reach the customers. This reliability is vital for maintaining customer relationships and ensuring smooth business operations.\"}),/*#__PURE__*/e(\"h3\",{children:\"Enhanced Customer Experience\"}),/*#__PURE__*/e(\"p\",{children:\"When customers receive only pertinent communications, it enhances their experience. It demonstrates respect for their preferences and reduces the likelihood of annoyance from unwanted messages.\"}),/*#__PURE__*/e(\"h3\",{children:\"Improved Message Targeting and Efficiency\"}),/*#__PURE__*/e(\"p\",{children:\"Separating different types of communications allows small businesses to tailor their strategies for each. This targeted approach leads to more efficient and effective communication campaigns.\"}),/*#__PURE__*/e(\"h2\",{children:\"Implementing a Walled Garden Strategy\"}),/*#__PURE__*/e(\"h3\",{children:\"Assessing Current Communication Channels\"}),/*#__PURE__*/e(\"p\",{children:\"The first step in adopting this strategy is a thorough assessment of existing communication channels. Businesses need to understand how their messages are currently being categorized and perceived by customers.\"}),/*#__PURE__*/e(\"h3\",{children:\"Developing a Segmented Communication Plan\"}),/*#__PURE__*/e(\"p\",{children:\"Next, businesses should develop a plan to segregate essential communications from marketing content. This might involve setting up separate channels or ensuring different treatment for different types of messages.\"}),/*#__PURE__*/e(\"h3\",{children:\"Leveraging Technology and Partnerships\"}),/*#__PURE__*/r(\"p\",{children:[\"Small businesses can benefit from partnering with platforms like Clicki, which specialize in managing segmented communications. These partnerships can provide the necessary technological and strategic support.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,1rKO22g2QC26eCNP0cLnf9cQQ.png\",\"data-framer-height\":\"1328\",\"data-framer-width\":\"1410\",height:\"664\",src:\"https://framerusercontent.com/images/1rKO22g2QC26eCNP0cLnf9cQQ.png\",srcSet:\"https://framerusercontent.com/images/1rKO22g2QC26eCNP0cLnf9cQQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/1rKO22g2QC26eCNP0cLnf9cQQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1rKO22g2QC26eCNP0cLnf9cQQ.png 1410w\",style:{aspectRatio:\"1410 / 1328\"},width:\"705\"}),/*#__PURE__*/e(\"h2\",{children:\"Challenges and Considerations\"}),/*#__PURE__*/e(\"h3\",{children:\"Balancing Personalization and Privacy\"}),/*#__PURE__*/e(\"p\",{children:\"While segmenting communications, it's important to balance personalization with privacy concerns. Businesses must ensure that their strategies comply with regulations like GDPR and respect customer privacy.\"}),/*#__PURE__*/e(\"h3\",{children:\"Technological Integration\"}),/*#__PURE__*/e(\"p\",{children:\"Integrating a walled garden communication strategy requires careful technological planning. It involves not just software solutions but also ensuring compatibility with existing business systems.\"}),/*#__PURE__*/e(\"h3\",{children:\"Continuous Monitoring and Adaptation\"}),/*#__PURE__*/e(\"p\",{children:\"Finally, this strategy requires ongoing monitoring and adaptation. As customer preferences and technological landscapes evolve, so must the communication strategies of small businesses.\"}),/*#__PURE__*/e(\"h2\",{children:\"Conclusion\"}),/*#__PURE__*/e(\"p\",{children:\"In conclusion, a walled garden communication strategy is becoming increasingly essential for small businesses. By ensuring that vital communications reach customers reliably and efficiently, these businesses can enhance customer relationships and improve operational effectiveness. In an economy where digital communication faces numerous hurdles, this strategic approach stands as a beacon of clarity and effectiveness.\"})]});export const richText13=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(n.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:r=>/*#__PURE__*/e(s,{...r,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://www.youtube.com/watch?v=pztVHgIVtyI&t=10s\"})})}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/r(\"h3\",{children:[/*#__PURE__*/e(\"br\",{}),\"Case Study: Eisner Laser Center's Strategic Integration with Clicki and HighLevel CRM\"]}),/*#__PURE__*/e(\"h3\",{children:\"Introduction\"}),/*#__PURE__*/e(\"p\",{children:\"In 2023, Eisner Laser Center in Central Georgia embraced a comprehensive digital marketing strategy by integrating Clicki's referral program with their existing HighLevel CRM system. This case study delves into how this synergy enhanced their referral program's effectiveness, leading to impressive results within three months.\"}),/*#__PURE__*/e(\"h3\",{children:\"Company Background: Eisner Laser Center\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Location:\"}),\" Central Georgia, with a widespread clientele.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Specialization:\"}),\" Expert in LASIK and laser vision correction, led by Dr. Richard A. Eisner.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Objective:\"}),\" Augment patient acquisition and streamline marketing processes.\"]})})]}),/*#__PURE__*/e(\"h3\",{children:\"Challenge\"}),/*#__PURE__*/e(\"p\",{children:\"Eisner Laser Center sought to leverage its existing client base to acquire new patients while maintaining a streamlined, efficient marketing system.\"}),/*#__PURE__*/e(\"h3\",{children:\"Solution: Integrating Clicki with HighLevel CRM\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Referral Program Enhancement:\"}),\" Clicki's referral program was not only implemented but also integrated with HighLevel CRM to maximize efficiency.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Data-Driven Approach:\"}),\" Utilizing the combined power of Clicki and HighLevel CRM for deeper insights into customer behavior and referral tracking.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Automated Marketing Workflows:\"}),\" Leveraging HighLevel's automation capabilities to nurture leads from the referral program.\"]})})]}),/*#__PURE__*/e(\"h3\",{children:\"Strategies Employed\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Targeted Referral Campaigns:\"}),\" Utilizing CRM data to tailor referral requests and incentives.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Automated Follow-Ups:\"}),\" Employing HighLevel\u2019s tools for timely and effective communication with both referrers and referrals.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Streamlined Lead Management:\"}),\" Integrating referral data directly into the CRM for seamless tracking and conversion efforts.\"]})})]}),/*#__PURE__*/e(\"h3\",{children:\"Results\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"45 Quality Referrals:\"}),\" Attracted in a three-month period, a testament to the effectiveness of the integrated approach.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"$13.00 Cost Per Lead:\"}),\" A significant reduction, indicating efficient use of marketing resources.\"]})})]}),/*#__PURE__*/e(\"h3\",{children:\"Analysis\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Enhanced Lead Management:\"}),\" The integration with HighLevel CRM allowed for more precise tracking and nurturing of leads.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Optimized Resource Utilization:\"}),\" The combined system reduced manual effort and time required for lead management.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Increased Conversion Potential:\"}),\" Automated follow-ups and tailored messaging led to higher engagement and conversion rates.\"]})})]}),/*#__PURE__*/e(\"h3\",{children:\"Conclusion\"}),/*#__PURE__*/e(\"p\",{children:\"Eisner Laser Center's implementation of Clicki's referral program, integrated with HighLevel CRM, demonstrates a strategic approach to digital marketing in the healthcare sector. This dual-platform integration not only reduced costs but also enhanced the effectiveness of their marketing efforts. It serves as a model for other healthcare providers looking to optimize their marketing strategies.\"})]});export const richText14=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h4\",{children:\"The Innovative Edge in Referral Programs\"}),/*#__PURE__*/e(\"p\",{children:\"In the highly regulated mortgage and real estate industries, professionals are often in search of creative and compliant referral solutions. Clicki emerges as a platform offering just that \u2014 a compliant route to rewarding referrals without directly compensating for closed sales. This approach piques curiosity and calls for a deeper dive into potential use cases within the industry.\"}),/*#__PURE__*/e(\"h4\",{children:\"Referral Rewards Reimagined\"}),/*#__PURE__*/e(\"p\",{children:\"Clicki's model stands out by rewarding actions, not outcomes. Traditionally, referral programs have been outcome-focused, rewarding successful closures. Clicki, however, has taken a step back to reevaluate what can be rewarded within the confines of legal guidelines, sparking interest in the flexibility of referral program incentives.\"}),/*#__PURE__*/e(\"h4\",{children:\"Payouts with a Purpose\"}),/*#__PURE__*/e(\"p\",{children:\"One significant advantage of Clicki's system is the source of payout funds. By ensuring that rewards are distributed directly from Clicki's accounts, not the accounts of the mortgage or real estate professional, there's a layer of separation that could help in aligning with RESPA regulations. This distinction means professionals aren't directly paying for referrals, which is a crucial consideration under RESPA's anti-kickback provisions.\"}),/*#__PURE__*/e(\"h4\",{children:\"Addressing the 1099 Puzzle\"}),/*#__PURE__*/e(\"p\",{children:\"A vital component of compliance is the handling of tax liabilities. Clicki steps up by taking on the responsibility of issuing 1099 forms to promoters who earn over $600 within a fiscal year. This not only eases the administrative burden on professionals but also situates Clicki as the responsible party for managing this aspect of the referral program, potentially mitigating any direct tax implications for the professionals using the platform.\"}),/*#__PURE__*/e(\"h4\",{children:\"Pay-per-Click: A Compliant Strategy\"}),/*#__PURE__*/e(\"p\",{children:\"At the core of Clicki's compliance-centric design is the pay-per-click model, a system that compensates promoters for verified human interactions rather than closed deals. This shifts the focus from the end result of a sale to the earlier stage of lead generation \u2014 a nuance that may provide a compliant path forward for industry professionals who are already accustomed to paying for lead services.\"}),/*#__PURE__*/e(\"h4\",{children:\"Complementing Current Practices\"}),/*#__PURE__*/e(\"p\",{children:\"For many professionals, paying for lead generation services is a standard practice. Clicki integrates with this existing framework by providing a tool that compensates for the initial referral click \u2014 a subtle yet significant difference from paying for a successful sale. This approach aligns with the common industry practice of investing in lead generation, staying clear of the restrictions on paying for business referrals.\"}),/*#__PURE__*/e(\"h4\",{children:\"The Clicki Advantage\"}),/*#__PURE__*/e(\"p\",{children:\"Beyond compliance, Clicki offers mortgage brokers and real estate professionals a competitive edge. With Clicki, they can:\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Enhance Brand Visibility\"}),\": Through targeted campaigns that drive clicks and interest.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Improve Customer Engagement\"}),\": By incentivizing promoters to share their experiences and bring in potential leads.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Track and Optimize\"}),\": With Clicki's analytics, professionals can refine their strategies in real-time, ensuring the best use of their marketing budgets.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Stay Ahead of the Curve\"}),\": By adopting a system that's designed with both innovation and compliance in mind.\"]})})]}),/*#__PURE__*/e(\"h4\",{children:\"Conclusion\"}),/*#__PURE__*/e(\"p\",{children:\"Clicki's referral program model presents a promising avenue for mortgage and real estate professionals to enhance their marketing strategies while adhering to RESPA guidelines. By redefining the reward system to focus on lead generation rather than sale closures, Clicki offers a potential path to compliance that aligns with industry practices. As the landscape of legal requirements continues to evolve, so too does the necessity for adaptable, forward-thinking solutions like Clicki.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Disclaimer: The content of this article is intended for informational purposes only and does not constitute legal advice. The interpretations of RESPA laws are complex and can vary by jurisdiction. Mortgage brokers and real estate professionals are advised to consult with a legal professional to ensure their marketing practices comply with all applicable laws and regulations.\"})})]});export const richText15=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(n.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:r=>/*#__PURE__*/e(s,{...r,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://www.youtube.com/watch?v=jHkfSILenho\"})})}),/*#__PURE__*/e(\"h4\",{children:\"Introduction\"}),/*#__PURE__*/e(\"p\",{children:\"Hi again, Kendall here from Clicki. Today, I'm excited to share an inspiring success story about BOSS LASHES, one of our esteemed clients, and how Clicki transformed their referral marketing strategy.\"}),/*#__PURE__*/e(\"h4\",{children:\"BOSS LASHES: Embracing Referral Innovation\"}),/*#__PURE__*/e(\"p\",{children:\"BOSS LASHES, a thriving beauty business, faced challenges in expanding their customer base through traditional marketing techniques. They needed a solution that was not only effective but also aligned with the digital habits of their target audience.\"}),/*#__PURE__*/e(\"h4\",{children:\"The Clicki Impact\"}),/*#__PURE__*/e(\"p\",{children:\"When BOSS LASHES partnered with Clicki, they were introduced to a world of streamlined, digital-first referral marketing. Here\u2019s how we made a difference:\"}),/*#__PURE__*/r(\"ol\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\",\"--list-style-type\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Seamless Ambassador Integration:\"}),\" BOSS LASHES utilized Clicki to create an ambassador app, providing a direct and engaging way for their customers to refer friends and family.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Enhanced Brand Experience:\"}),\" The ambassador app, branded specifically for BOSS LASHES, elevated their customer engagement, making every referral feel personal and connected to the brand.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"User-Friendly Interface:\"}),\" The simplicity of our platform meant that BOSS LASHES\u2019 customers could easily navigate and actively participate in the referral program without any hassle.\"]})})]}),/*#__PURE__*/e(\"h4\",{children:\"Real Results for BOSS LASHES\"}),/*#__PURE__*/e(\"p\",{children:\"The implementation of Clicki\u2019s referral system led to tangible results for BOSS LASHES:\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Increased Customer Engagement:\"}),\" There was a noticeable uptick in customer participation in the referral program.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Higher Conversion Rates:\"}),\" The ease of use and engaging interface led to more successful referrals.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Brand Loyalty:\"}),\" Customers became active brand ambassadors, strengthening the brand's community feel.\"]})})]}),/*#__PURE__*/e(\"h4\",{children:\"Conclusion\"}),/*#__PURE__*/e(\"p\",{children:\"BOSS LASHES\u2019 journey with Clicki highlights the power of modern referral systems in today\u2019s digital age. It's not just about getting more customers; it's about building a community around your brand and empowering your customers to be a part of your growth story.\"}),/*#__PURE__*/e(\"h4\",{children:\"Join the Referral Revolution\"}),/*#__PURE__*/e(\"p\",{children:\"Inspired by BOSS LASHES\u2019 story? It's time to rethink your referral strategy with Clicki. Discover more about how our platform can transform your business by visiting our website or booking a demo.\"})]});export const richText16=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h4\",{children:\"Introduction\"}),/*#__PURE__*/e(\"p\",{children:\"In 2023, Body Mechanics Orthopedic Massage in New York City achieved groundbreaking success by fully automating their referral program through Clicki, integrating it seamlessly with Boulevard, their booking system. This case study details the process and impact of this integration.\"}),/*#__PURE__*/e(\"h4\",{children:\"Company Background: Body Mechanics Orthopedic Massage\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Location\"}),\": Midtown Manhattan, New York.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Services\"}),\": Specialized massage therapies including sports, prenatal, and medical.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Objective\"}),\": Streamline client acquisition and enhance operational efficiency.\"]})})]}),/*#__PURE__*/e(\"h4\",{children:\"Challenge\"}),/*#__PURE__*/e(\"p\",{children:\"Body Mechanics sought an innovative solution to automate their referral process, reducing manual tasks and enhancing client experience, all while maintaining a high standard of service.\"}),/*#__PURE__*/e(\"h4\",{children:\"Solution: Clicki and Boulevard Integration\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Automated Referral System with Clicki\"}),\": Customized and fully automated referral program.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Seamless Integration with Boulevard\"}),\": Boulevard\u2019s platform was used to integrate the referral system directly into Body Mechanics\u2019 booking and operational processes.\"]})})]}),/*#__PURE__*/e(\"h4\",{children:\"Boulevard: A Brief Overview\"}),/*#__PURE__*/e(\"p\",{children:\"Boulevard is a comprehensive client experience platform designed for self-care businesses. It offers features such as:\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Client Booking\"}),\": Seamless self-booking for clients.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Client Preparation\"}),\": Customizable intake forms and messaging.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Service Personalization\"}),\": Detailed client profiles for personalized appointments.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Efficient Payment Process\"}),\": Features to enhance checkout and upselling.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Client Retention Tools\"}),\": Branded email campaigns for improved retention.\"]})})]}),/*#__PURE__*/e(\"h4\",{children:\"Implementation and Strategies\"}),/*#__PURE__*/r(\"ol\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\",\"--list-style-type\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Referral Tracking\"}),\": Automated tracking of referrals through Clicki, directly linked with Boulevard\u2019s booking system.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Client Engagement\"}),\": Enhanced client experience through personalized communication and offers.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Data-Driven Decisions\"}),\": Leveraged analytics from both Clicki and Boulevard to refine marketing and operational strategies.\"]})})]}),/*#__PURE__*/e(\"h4\",{children:\"Results\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"159 Referrals and 475 Unique Clicks\"}),\": Demonstrating high client engagement and effective referral outreach.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"63% close ratio\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"4:1 ROAS (Return on ad-spend)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Full Automation\"}),\": Reduced manual workload and increased efficiency.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Enhanced Client Experience\"}),\": Streamlined booking and service processes, leading to higher client satisfaction.\"]})})]}),/*#__PURE__*/e(\"h4\",{children:\"Analysis\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Operational Efficiency\"}),\": The integration led to significant time savings and reduced manual efforts.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Improved Client Journey\"}),\": From referral to booking and service delivery, clients experienced a cohesive and personalized journey.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Data Utilization\"}),\": Effective use of analytics led to better-targeted marketing and operational decisions.\"]})})]}),/*#__PURE__*/e(\"h4\",{children:\"Conclusion\"}),/*#__PURE__*/e(\"p\",{children:\"The integration of Clicki with Boulevard at Body Mechanics Orthopedic Massage is a testament to the power of leveraging digital tools in enhancing business efficiency and client experience. By automating their referral program and embedding it into their operational workflow, Body Mechanics not only streamlined their processes but also provided a superior service experience to their clients.\"})]});export const richText17=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h4\",{children:\"Introduction\"}),/*#__PURE__*/e(\"p\",{children:\"In 2023, Polite Pest Control, a renowned pest control service provider based in Arizona, leveraged Clicki's referral program to enhance its customer acquisition and marketing efforts. This case study explores how Polite Pest Control, using Clicki, achieved an impressive 62% conversion rate from 144 referrals, significantly reducing their cost per lead to below $10.\"}),/*#__PURE__*/e(\"h4\",{children:\"Company Background: Polite Pest Control\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Location\"}),\": Arizona (Chandler, Gilbert, Mesa, Scottsdale)\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Size\"}),\": 1-2M in Annual recurring revenue\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Services\"}),\": Comprehensive pest control, including ants, bed bugs, bees, termites, rodents, scorpions.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Objective\"}),\": To increase customer acquisition and reduce marketing costs while maintaining quality service.\"]})})]}),/*#__PURE__*/e(\"h4\",{children:\"Challenge\"}),/*#__PURE__*/e(\"p\",{children:\"Polite Pest Control faced the challenge of high customer acquisition costs and a competitive market. They needed a cost-effective strategy to attract more customers without compromising service quality.\"}),/*#__PURE__*/e(\"h4\",{children:\"Solution: Implementing Clicki\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Fully Automated Referral Program\"}),\": Integration of Clicki\u2019s automated referral system into Polite Pest Control\u2019s operations.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Fieldroutes Connection\"}),\": Seamless integration with Fieldroutes, their operational software, for streamlined processes.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Customized Referral Rewards\"}),\": Tailored rewards suitable for Polite Pest Control\u2019s customer base to encourage participation.\"]})})]}),/*#__PURE__*/e(\"h4\",{children:\"Strategies Employed\"}),/*#__PURE__*/r(\"ol\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\",\"--list-style-type\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Targeted Referral Incentives\"}),\": Focused on customers in specific service areas using Clicki's GeoBounty\u2122.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Engagement through Clicki's Branded Promoter App\"}),\": Utilized to send push notifications and keep customers engaged.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"1-Click Payouts\"}),\": Simplified reward system for quick and efficient customer gratification.\"]})})]}),/*#__PURE__*/e(\"h4\",{children:\"Results\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"144 Referrals Acquired\"}),\": Through Clicki\u2019s AI-driven system, Polite Pest Control managed to attract 144 new referrals.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"62% Conversion Rate\"}),\": A significant percentage of these referrals converted to loyal customers.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Cost Per Lead Below $10\"}),\": Drastically reduced from previous marketing strategies.\"]})})]}),/*#__PURE__*/e(\"h4\",{children:\"Analysis\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Improved ROI\"}),\": The high conversion rate and reduced cost per lead indicate a strong return on investment.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Customer Engagement\"}),\": The automated system and targeted approach increased customer engagement and satisfaction.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Efficiency\"}),\": The integration with Fieldroutes and the use of Clicki's automated features saved time and resources.\"]})})]}),/*#__PURE__*/e(\"h4\",{children:\"Conclusion\"}),/*#__PURE__*/e(\"p\",{children:\"Polite Pest Control's implementation of Clicki\u2019s referral program in 2023 stands as a testament to the effectiveness of digital marketing strategies in the pest control industry. By embracing Clicki's innovative technology, Polite Pest Control not only reduced its customer acquisition costs but also enhanced its operational efficiency and customer engagement. This success story underscores the potential of referral marketing as a powerful tool for business growth, especially in service-oriented sectors.\"})]});export const richText18=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"Tesla's Referral Program: A Brief Overview\"}),/*#__PURE__*/e(\"p\",{children:\"Tesla's referral program was renowned for its simplicity and the high-value rewards it offered. Customers who referred new buyers received incentives like exclusive vehicle accessories, discounts on future purchases, and more. This program harnessed the power of word-of-mouth, leveraging Tesla's customer base as brand ambassadors.\"}),/*#__PURE__*/e(\"h4\",{children:\"Key Elements:\"}),/*#__PURE__*/r(\"ol\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\",\"--list-style-type\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Simplicity\"}),\": Easy to understand and participate.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Incentive Structure\"}),\": High-value rewards motivated customers.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Exclusivity\"}),\": Offering unique products or experiences.\"]})})]}),/*#__PURE__*/e(\"h3\",{children:\"Clicki: Empowering SMBs with Tesla-Like Capabilities\"}),/*#__PURE__*/e(\"p\",{children:\"Clicki's platform seems tailor-made to replicate and scale the kind of success seen in Tesla's referral program, but with a focus on SMBs. Its features are specifically designed to address the challenges and opportunities unique to smaller businesses.\"}),/*#__PURE__*/e(\"h4\",{children:\"Automated Referral Tracking\"}),/*#__PURE__*/e(\"p\",{children:\"Tesla's success lay in its automated tracking of referrals. Clicki's AI-powered system offers similar automation, ensuring SMBs can efficiently track and manage referrals with minimal manual intervention.\"}),/*#__PURE__*/e(\"h4\",{children:\"Customizable Rewards\"}),/*#__PURE__*/e(\"p\",{children:\"While Tesla offered high-value, often extravagant rewards, Clicki enables SMBs to tailor rewards to their specific audience. This customization could range from discounts to exclusive experiences, mirroring Tesla's approach but on a scale suitable for SMBs.\"}),/*#__PURE__*/e(\"h4\",{children:\"Digital Integration\"}),/*#__PURE__*/e(\"p\",{children:\"Tesla\u2019s program was seamlessly integrated into its digital ecosystem. Clicki\u2019s platform similarly offers easy integration with existing tools and systems, making it convenient for businesses and customers alike.\"}),/*#__PURE__*/e(\"h4\",{children:\"1-Click Payouts\"}),/*#__PURE__*/e(\"p\",{children:\"Tesla's program was straightforward in rewarding referrals. Clicki's 1-click payout system simplifies the reward process, making it easy for SMBs to manage and appealing for customers to participate.\"}),/*#__PURE__*/e(\"h4\",{children:\"GeoBounty\u2122\"}),/*#__PURE__*/e(\"p\",{children:\"This feature allows SMBs to concentrate their referral efforts geographically, similar to how Tesla targeted specific markets. It ensures that marketing efforts are not wasted on non-potential areas.\"}),/*#__PURE__*/e(\"h4\",{children:\"Branded Promoter App\"}),/*#__PURE__*/e(\"p\",{children:\"Tesla\u2019s brand strength was a key driver of its program\u2019s success. Clicki\u2019s Branded Promoter App allows SMBs to build a similar brand-centric approach, providing a direct line to customers through push notifications.\"}),/*#__PURE__*/e(\"h3\",{children:\"Comparing and Contrasting: Tesla and Clicki\"}),/*#__PURE__*/e(\"h4\",{children:\"Scale of Operation\"}),/*#__PURE__*/e(\"p\",{children:\"Tesla\u2019s global reach and brand recognition played a huge role in its program\u2019s success. Clicki, on the other hand, provides SMBs with tools to create impactful referral programs within their scale of operation.\"}),/*#__PURE__*/e(\"h4\",{children:\"Reward System\"}),/*#__PURE__*/e(\"p\",{children:\"Tesla's rewards were often high-end and exclusive. Clicki allows SMBs to create more sustainable and scalable reward systems that are more suitable for their customer base and business size.\"}),/*#__PURE__*/e(\"h4\",{children:\"Customization\"}),/*#__PURE__*/e(\"p\",{children:\"Clicki offers a high level of customization in referral programs, which is crucial for SMBs with diverse customer bases and varied product offerings, unlike Tesla\u2019s more uniform customer base.\"}),/*#__PURE__*/e(\"h3\",{children:\"Conclusion: The Power of Clicki for SMBs\"}),/*#__PURE__*/e(\"p\",{children:\"In conclusion, while Tesla's referral program was a game-changer in its field, Clicki offers SMBs the tools to create similarly impactful programs. Its features like automation, customization, digital integration, and targeted rewards position it as a powerful platform for SMBs to harness the power of referrals, much like Tesla did, but in a way that's tailored to their unique needs and scale\"})]});export const richText19=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"The Future of Referral Systems: How Clicki is Innovating SMB Referral Programs\"}),/*#__PURE__*/e(\"h4\",{children:\"Introduction\"}),/*#__PURE__*/e(\"p\",{children:\"In the rapidly evolving digital landscape, small and medium-sized businesses (SMBs) are constantly seeking innovative strategies to grow their customer base and enhance brand loyalty. Clicki emerges as a revolutionary platform in this domain, redefining traditional referral programs with its cutting-edge, AI-powered solutions.\"}),/*#__PURE__*/e(\"h4\",{children:\"What is Clicki?\"}),/*#__PURE__*/e(\"p\",{children:\"Clicki is akin to Mailchimp for referrals but tailored for SMBs. It's a comprehensive platform designed to automate and streamline the referral process, making it effortless for businesses to engage customers and convert them into brand ambassadors.\"}),/*#__PURE__*/e(\"h4\",{children:\"Key Features of Clicki\"}),/*#__PURE__*/r(\"h5\",{children:[\"1. \",/*#__PURE__*/e(\"strong\",{children:\"Automation and AI Integration\"})]}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Automated Referral Programs:\"}),\" Clicki digitizes referral programs, eliminating manual work and allowing businesses to focus on growth.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"AI-Driven Setup:\"}),\" The platform can build a customized referral program in minutes, based on the business's website content.\"]})})]}),/*#__PURE__*/r(\"h5\",{children:[\"2. \",/*#__PURE__*/e(\"strong\",{children:\"1-Click Payouts\"})]}),/*#__PURE__*/e(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Diverse Payout Options:\"}),\" Clicki offers various instant payout options, including Venmo, Zelle, PayPal, CashApp, and ACH, simplifying the reward process.\"]})})}),/*#__PURE__*/r(\"h5\",{children:[\"3. \",/*#__PURE__*/e(\"strong\",{children:\"User Experience and Engagement\"})]}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Push Notifications:\"}),\" The platform enables businesses to send notifications directly to customers' phones.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Branded Promoter App:\"}),\" A Progressive Web App (PWA) enhances brand visibility and customer engagement.\"]})})]}),/*#__PURE__*/r(\"h5\",{children:[\"4. \",/*#__PURE__*/e(\"strong\",{children:\"GeoBounty\u2122\"})]}),/*#__PURE__*/e(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Location-Based Referrals:\"}),\" This feature ensures businesses pay only for verified clicks and referrals in specified locations, enhancing the efficiency of marketing spend.\"]})})}),/*#__PURE__*/r(\"h5\",{children:[\"5. \",/*#__PURE__*/e(\"strong\",{children:\"Analytics and Payment Models\"})]}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Data-Driven Insights:\"}),\" Simple yet powerful analytics tools help in making informed decisions.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Flexible Payment Models:\"}),\" Businesses can choose between pay-per-click or pay-per-referral models, depending on their strategy.\"]})})]}),/*#__PURE__*/e(\"h4\",{children:\"Clicki's Approach to Collaboration and Campaign Management\"}),/*#__PURE__*/e(\"p\",{children:\"Clicki simplifies campaign creation and management, allowing businesses to:\"}),/*#__PURE__*/r(\"ol\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\",\"--list-style-type\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Build Campaigns:\"}),\" Set budgets and invite customers, affiliates, and partners.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Generate Referrals:\"}),\" Promoters use unique links or self-submit referrals through the branded app.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Efficient Payouts:\"}),\" Easy payment for every verified click and successful referral conversion.\"]})})]}),/*#__PURE__*/e(\"h4\",{children:\"Why Clicki Stands Out\"}),/*#__PURE__*/e(\"p\",{children:\"Clicki is designed with a deep understanding of small businesses\u2019 needs. Its unique features, such as the AI setup, GeoBounty\u2122, and the Branded Promoter App, provide a competitive edge. Moreover, its focus on automation and simplicity resonates with the SMB sector's requirements.\"}),/*#__PURE__*/e(\"h4\",{children:\"Integration and Pricing\"}),/*#__PURE__*/e(\"p\",{children:\"Clicki offers seamless integration with popular CRM platforms and other business tools, enhancing its adaptability. Its pricing structure is flexible, catering to businesses of varying sizes and needs.\"}),/*#__PURE__*/e(\"h4\",{children:\"Testimonials and Impact\"}),/*#__PURE__*/e(\"p\",{children:\"Clicki's impact is reflected in its customer testimonials. Businesses report significant improvements in lead generation, cost-efficiency, and conversion rates, attributing these successes to Clicki's innovative approach to referral marketing.\"}),/*#__PURE__*/e(\"h4\",{children:\"Conclusion\"}),/*#__PURE__*/e(\"p\",{children:\"Clicki is not just a tool; it's a strategic partner for SMBs looking to leverage the power of referrals. By offering a blend of modern technology, user-friendly features, and adaptable payment models, Clicki stands as a beacon of innovation in the referral program landscape. With Clicki, SMBs can now unlock the full potential of their customer networks, propelling their growth and success in the digital age.\"}),/*#__PURE__*/e(\"h4\",{children:\"Get Started with Clicki\"}),/*#__PURE__*/e(\"p\",{children:\"Ready to revolutionize your referral program? Explore Clicki's offerings, book a demo, or start integrating this powerful platform into your business strategy today. \"})]});export const richText20=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/r(\"strong\",{children:[\"Explore a comprehensive guide on how to effectively communicate with FieldRoutes' support team for API key requests. \",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"This article provides detailed templates for email communication, ensuring a smooth process in acquiring Limited Read-Write API credentials. Learn the nuances of requesting API access for Fieldroutes. \",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"Discover how to seamlessly integrate Clicki, a referral system, into FieldRoutes, enhancing your operational efficiency. \",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"Gain insights on forwarding credentials and setting up user permissions in FieldRoutes for a successful integration. This resource is ideal for businesses seeking to leverage FieldRoutes' capabilities, offering step-by-step guidance and practical tips for effective communication and technical setup.\"]})}),/*#__PURE__*/r(\"h5\",{children:[\"###\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"1. Initial Email Request for API Keys\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"Send email to Fieldroutes support team \",/*#__PURE__*/e(i,{href:\"mailto:support@fieldroutes.com\",nodeId:\"qp7_CWH9V\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"support@fieldroutes.com\"})})}),/*#__PURE__*/e(\"strong\",{children:\"\\xa0\"})]}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Subject:\"}),\" Request for Limited Read-Write API Tier Activation\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Dear FieldRoutes Support Team,\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"I hope this email finds you well. I am reaching out from ProForce Pest to request the activation of the Limited Read-Write API tier offered by FieldRoutes. After reviewing the available options, we believe that this tier will best suit our current operational requirements.\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Looking forward to your response.\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/r(\"em\",{children:[\"Best regards,\",/*#__PURE__*/e(\"br\",{}),\"[Your Name]\",/*#__PURE__*/e(\"br\",{}),\"ProForce Pest\"]})}),/*#__PURE__*/e(\"h3\",{children:\"2. Response to FieldRoutes' Follow-up Questions\"}),/*#__PURE__*/e(\"p\",{children:\"Thank you for your prompt response. Regarding your queries:\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"We would like to request API credentials for all our offices.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The primary use case for these credentials is to integrate Clicki, our referral system, into the FieldRoutes platform. More information about Clicki can be found here: \",/*#__PURE__*/e(i,{href:\"https://joinclicki.com/\",nodeId:\"qp7_CWH9V\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"https://joinclicki.com\"})}),\".\"]})})]}),/*#__PURE__*/e(\"p\",{children:\"We appreciate your assistance in this matter and await the provision of the API credentials.\"}),/*#__PURE__*/r(\"p\",{children:[\"Best regards,\",/*#__PURE__*/e(\"br\",{}),\"[Your Name]\",/*#__PURE__*/e(\"br\",{}),\"[Your Company Name]\"]}),/*#__PURE__*/e(\"h3\",{children:\"3. Final Steps After Receiving the Credentials\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(209, 213, 219)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Forward the credentials to crm@joinclicki.com for the connection process.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Invite crm@joinclicki.com as a user to your FieldRoutes instance with full permissions to facilitate the integration between FieldRoutes and Clicki.\"})})]})]});export const richText21=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Introduction: Clicki \u2013 The Future of Referral Systems\"})}),/*#__PURE__*/e(\"p\",{children:\"In an era where every click, referral, and customer interaction counts, Clicki emerges as a beacon of innovation. Designed for businesses eager to expand their reach without the usual hassle, Clicki stands at the forefront, integrating cutting-edge AI to redefine referral marketing. This isn't just a platform; it's a revolution for small to mid-sized businesses (SMBs), crafted to enhance efficiency and drive growth.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"AI-Powered Customization: Tailoring to Your Brand's Unique Voice\"})}),/*#__PURE__*/e(\"p\",{children:\"Clicki's AI empowers you to fully control and customize your referral campaigns. This intelligent system adapts to your brand's unique voice, ensuring that everything from invite emails to branded tracking links resonates with your audience. The AI's intuitive design interface allows you to create campaigns that truly reflect your brand's ethos, making every aspect of the customer's journey a part of your brand story.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Simplifying Success: The Art of Automation\"})}),/*#__PURE__*/e(\"p\",{children:\"The 'set it and forget it' philosophy is deeply embedded in Clicki's DNA. Our AI takes over the mundane, allowing your team to focus on what matters \u2013 growth. From digitizing referral tracking to automating payouts, Clicki's AI handles the heavy lifting. This automation extends to our 1-Click Payouts system, offering a range of instant cashout options, including Venmo, Zelle, PayPal, and more, enhancing the promoter experience.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"The 2-Minute AI Setup: From Zero to Hero\"})}),/*#__PURE__*/e(\"p\",{children:\"Imagine setting up a referral program in just two minutes. With Clicki's AI, this is not just possible; it's a reality. Enter your website, and our AI crafts your referral program, inviting you to experience its power as your first promoter. This rapid deployment ensures that your business doesn't miss a beat in the competitive digital landscape.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Building Trust with Custom Branding\"})}),/*#__PURE__*/e(\"p\",{children:\"In today's market, trust is currency. Clicki's AI extends your brand's reach by ensuring that every element, from referral links to the promoter web app, is custom-branded. This cohesive branding strategy, powered by AI, builds a consistent and trustworthy image for your promoters and participants in your referral programs.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Cutting Through the Noise: AI-Driven Push Notifications\"})}),/*#__PURE__*/e(\"p\",{children:\"With Clicki, your message never drowns in a sea of digital noise. Our AI-driven push notification system ensures that your communications reach your customers directly, increasing engagement and participation in your referral programs.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"GeoBounty\u2122: Localized AI for Targeted Impact\"})}),/*#__PURE__*/e(\"p\",{children:\"Clicki's GeoBounty\u2122 feature is a testament to the power of localized AI. It enables you to focus your referral efforts in specific service areas, ensuring you only pay for clicks and referrals that truly matter to your business. This targeted approach, powered by AI, maximizes your marketing ROI.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Data-Driven Decisions: AI and Analytics\"})}),/*#__PURE__*/e(\"p\",{children:\"Understanding your campaign's performance is crucial. Clicki's AI-powered analytics tools provide clear, actionable insights. From comprehensive charts to data visualization, our AI transforms complex data into easy-to-understand reports, guiding your strategic decisions.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"The AI Campaign Creator: A 30-Second Miracle\"})}),/*#__PURE__*/e(\"p\",{children:\"Enter your website URL, and watch as Clicki's AI creates your referral program in a mere 30 seconds. This feature not only saves time but also ensures that your campaigns are optimized for success from the start.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"AI Fraud Detection: Safeguarding Your Investments\"})}),/*#__PURE__*/e(\"p\",{children:\"Security is paramount in digital marketing. Clicki's Fraud and Abuse AI system ensures that you're only charged for verified human interactions, safeguarding your investment and maintaining the integrity of your campaigns.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Conclusion: Clicki \u2013 A Partner in Growth\"})}),/*#__PURE__*/e(\"p\",{children:\"Clicki isn't just a platform; it's a partner in your business's growth journey. By harnessing the power of AI, Clicki offers a seamless, efficient, and powerful tool for SMBs to thrive in the digital age. Whether it's through intelligent customization, streamlined processes, or insightful analytics, Clicki is here to ensure your referral marketing reaches new heights.\"}),/*#__PURE__*/e(\"h4\",{children:/*#__PURE__*/e(\"em\",{children:\"Join us at Clicki, where AI meets human creativity, and let's grow the heartbeat of the world \u2013 small businesses.\"})})]});export const richText22=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"In the digital age, understanding the concepts of DNS (Domain Name System) and domain is crucial for any business, especially for companies like Clicki, which specialize in referral programs for SMBs. In this article, we will explore what DNS and domain are, their importance, and how Clicki\u2019s whitelabeling feature enhances trust and brand identity. Additionally, we'll discuss a real-world scenario highlighting the significance of maintaining control over your DNS and domain.\"}),/*#__PURE__*/e(\"h2\",{children:\"What is DNS and Domain?\"}),/*#__PURE__*/e(\"p\",{children:'DNS is the internet\\'s equivalent of a phone book. It converts human-friendly domain names (like \"clicki.com\") into IP addresses that computers use to identify each other on the network. Your domain is your unique address on the internet, akin to your business\u2019s digital storefront.'}),/*#__PURE__*/e(\"h2\",{children:\"Why DNS and Domain are Vital\"}),/*#__PURE__*/e(\"p\",{children:\"Your domain is as critical as your Social Security Number. It is your unique identifier on the web, essential for establishing your business\u2019s digital identity and credibility. Like a SSN, it needs to be protected to prevent identity theft, which in the digital world can mean cyber attacks or domain hijacking.\"}),/*#__PURE__*/e(\"h2\",{children:\"The Role of Clicki\u2019s Whitelabeling in Building Trust\"}),/*#__PURE__*/e(\"p\",{children:\"Clicki\u2019s whitelabeling allows businesses to use their own branding while leveraging Clicki\u2019s robust referral program infrastructure. This feature not only ensures brand consistency but also builds customer confidence and trust, as clients interact with a familiar and secure domain.\"}),/*#__PURE__*/e(\"h2\",{children:\"A Cautionary Tale: Losing Control Over Your Website\"}),/*#__PURE__*/e(\"h3\",{children:\"The Scenario: A Boutique\u2019s Online Presence Hijacked\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Background:\"}),\" TrendyThreads, a boutique clothing store, sought to expand its business online. Without in-house technical expertise, they hired WebGenius, a web development company, to create their website.\"]}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"The Issue:\"}),\" Upon completion, the website operated smoothly under TrendyThreads' domain, and business flourished. However, when TrendyThreads decided to bring their digital operations in-house and informed WebGenius of their plan to terminate the service, they faced an unexpected challenge.\"]}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"The Complication:\"}),\" WebGenius, having registered the domain under their own name, refused to transfer the domain rights to TrendyThreads. The boutique found itself locked out of its own website, with no access to modify, update, or even redirect their customers. Their online business came to a standstill.\"]}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"The Outcome:\"}),\" TrendyThreads had to legally battle to regain control of their domain, incurring significant costs and losing valuable time and customers in the process.\"]}),/*#__PURE__*/e(\"h2\",{children:\"Lessons Learned\"}),/*#__PURE__*/e(\"p\",{children:\"This scenario underscores the importance of having control over your DNS and domain. Businesses should ensure that their domains are registered in their name, not the web developer's. It's also a testament to the value of Clicki's whitelabeling feature, which empowers businesses to maintain their unique digital identity and build customer trust through consistent branding.\"}),/*#__PURE__*/e(\"h2\",{children:\"Conclusion\"}),/*#__PURE__*/e(\"p\",{children:\"In the world of online business, your DNS and domain are as crucial as your social security number in the physical world. By understanding their importance and utilizing features like Clicki's whitelabeling, businesses can safeguard their digital presence and foster a trustworthy relationship with their customers.\"})]});\nexport const __FramerMetadata__ = {\"exports\":{\"richText14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText21\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText22\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText18\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText19\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText20\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "richText", "u", "x", "p", "Link", "richText1", "richText2", "richText3", "richText4", "richText5", "richText6", "richText7", "richText8", "richText9", "richText10", "richText11", "richText12", "richText13", "motion", "ComponentPresetsConsumer", "r", "Youtube", "richText14", "richText15", "richText16", "richText17", "richText18", "richText19", "richText20", "richText21", "richText22", "__FramerMetadata__"]
}
