{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js", "ssg:https://framerusercontent.com/modules/v9QyjB3Pg5jcU7INJjQW/pF0o5Z5qg95EcvmpQLk0/GL3H6ubFy-4.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:hasBorderRadius&&showVideo?\"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\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"315\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicWidth\":\"560\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as e,jsxs as t}from\"react/jsx-runtime\";import{ComponentPresetsConsumer as a,Link as n}from\"framer\";import{motion as r}from\"framer-motion\";import*as i from\"react\";import{Youtube as o}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js\";import{Youtube as s}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/vYIHSp44qmOgHgaaijWz/YouTube.js\";import{Youtube as l}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/zzGLuFF4YkasKl1lrsW9/YouTube.js\";export const richText=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"As a company founded by serial entrepreneurs, SoBanHang\u2019s management knew the benefits a team collaboration platform would have, especially during a pandemic.\"}),/*#__PURE__*/e(\"p\",{children:\"To that extent, the team tried a variety of tools including DingTalk, Skype and Telegram but found that while they excelled in certain features, none had the true all-in-one experience that management was looking for.\"}),/*#__PURE__*/e(\"p\",{children:\"Company leadership mentioned the steep learning curve, difficulty in onboarding and lack of an open integration system as well as a lack of local-language support as some of these key challenges.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Lark Advantage\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"472\",src:\"https://framerusercontent.com/images/2yncPo710Ht5kP94jWi3x6IpaI.jpg\",srcSet:\"https://framerusercontent.com/images/2yncPo710Ht5kP94jWi3x6IpaI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2yncPo710Ht5kP94jWi3x6IpaI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2yncPo710Ht5kP94jWi3x6IpaI.jpg 1416w\",style:{aspectRatio:\"1416 / 944\"},width:\"708\"}),/*#__PURE__*/e(\"p\",{children:\"In order to combat these challenges, the CEO came across Lark and within 3 days, the entire staff of 45 adopted Lark as the company\u2019s primary communication and collaboration platform.\"}),/*#__PURE__*/e(\"p\",{children:\"With the whole team on Lark, SoBanHang could do away with using siloed apps. This meant greater productivity with more streamlined professional communication with no distractions.\"}),/*#__PURE__*/e(\"p\",{children:\"Going beyond Lark\u2019s core communication and collaboration features, the team are big fans of Lark\u2019s marketplace of open apps, Workplace. In particular Lark Attendance and Approval have allowed management to automate key HR and admin functions, straight from Lark.\"}),/*#__PURE__*/e(\"p\",{children:\"Company management also liked how Lark handles third-party communication by creating a secured instance of groups and docs that allow for external collaboration without having to leave Lark.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Less time needed for onboarding\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Better collaboration for remote teams\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"No need to maintain multiple tools with multiple credentials\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Auto-translation helps to keep teams connected\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater cost-savings with Lark\u2019s all-in-one solution\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Key HR tasks integrated straight into Lark\"})})]})]});export const richText1=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h1\",{children:\"The Challenge\"}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Employees work in different time zones with different cultures and languages, making collaboration difficult\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The Anker team used a different product for every collaboration scenario (e.g. project management, customer relationship management). As a result, data was scattered in various systems, creating information silos\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Employees from different countries are unable to meet offline, making it difficult to build a cohesive organizational culture\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h1\",{children:\"The Solution\"}),/*#__PURE__*/e(\"h2\",{children:\"Turn cross-border collaboration into an efficient relay race\"}),/*#__PURE__*/e(\"p\",{children:\"Anker conducts business across North America, Europe, East Asia, the Middle East, and South East Asia, with offices in Shenzhen, Tokyo, Munich, Melbourne, and many more cities. Time zone differences made it difficult to find a time for everyone to meet together, and discussions sometimes dragged into days. \"}),/*#__PURE__*/e(\"p\",{children:\"Therefore, employees must take advantage of asynchronous communication, which is made possible by Lark. For example, employees in the US organize their ideas into a Lark Doc during the day. The next day after they wake up, they will receive numerous comments from their colleagues in Europe in the doc. In this way, collaboration can be seamlessly passed on from one region to the next, like a relay race, and Lark is their perfect relay baton. \"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1125\",src:\"https://framerusercontent.com/images/WzuN2q5JM1f7aT03G6wSev9A.jpg\",srcSet:\"https://framerusercontent.com/images/WzuN2q5JM1f7aT03G6wSev9A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WzuN2q5JM1f7aT03G6wSev9A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WzuN2q5JM1f7aT03G6wSev9A.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/WzuN2q5JM1f7aT03G6wSev9A.jpg 4000w\",style:{aspectRatio:\"4000 / 2250\"},width:\"2000\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"When it comes to cross-border communication, something as simple as authorizing a doc to a chat group can slow down the whole process. In the past, Anker had separate tools for chat and docs. When a doc was sent to a chat group, permissions had to be authorized manually. If a colleague forgot to grant the permissions, it would have taken another 12 hours for others to request and obtain authorization, due to time zone differences. Now, using Lark, once a doc is sent to a group chat, everyone in the group chat is automatically granted reading, or editing permission. This dramatically reduces the need for unnecessary back-and-forth communication, and speeds projects up.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"2400\",src:\"https://framerusercontent.com/images/fG2mIhqdF8wYBEBQrYIfnieolsQ.png\",srcSet:\"https://framerusercontent.com/images/fG2mIhqdF8wYBEBQrYIfnieolsQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/fG2mIhqdF8wYBEBQrYIfnieolsQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fG2mIhqdF8wYBEBQrYIfnieolsQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/fG2mIhqdF8wYBEBQrYIfnieolsQ.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/fG2mIhqdF8wYBEBQrYIfnieolsQ.png 6400w\",style:{aspectRatio:\"6400 / 4800\"},width:\"3200\"}),/*#__PURE__*/e(\"p\",{children:\"Even though Lark Docs has reduced the number of meetings, sometimes meetings are still necessary. Scheduling across time zones used to be a pain. Employees had to conduct mental arithmetic to find the right slot for meetings. Now, on Lark Calendar, they can view multiple time zones side by side, so that it's easy to see when it's afternoon in LA, it's late night in London. \"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1125\",src:\"https://framerusercontent.com/images/RQiRWwGqDGxrZKlv90KEmaNCzc.jpg\",srcSet:\"https://framerusercontent.com/images/RQiRWwGqDGxrZKlv90KEmaNCzc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RQiRWwGqDGxrZKlv90KEmaNCzc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RQiRWwGqDGxrZKlv90KEmaNCzc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RQiRWwGqDGxrZKlv90KEmaNCzc.jpg 4000w\",style:{aspectRatio:\"4000 / 2250\"},width:\"2000\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"What's more, employees from different countries have different proficiency levels in English, often creating language barriers and misunderstandings at work. \"}),/*#__PURE__*/e(\"p\",{children:\"Thanks to Lark's auto-translation, every chat, doc and meeting can be instantly translated into their native languages with one click. This also enables colleagues from different cultural backgrounds to express themselves confidently, creating a sense of participation and belonging.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"2556\",src:\"https://framerusercontent.com/images/Flr47pEaz5GOsOI36m6drDwKRg.png\",srcSet:\"https://framerusercontent.com/images/Flr47pEaz5GOsOI36m6drDwKRg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Flr47pEaz5GOsOI36m6drDwKRg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Flr47pEaz5GOsOI36m6drDwKRg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Flr47pEaz5GOsOI36m6drDwKRg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Flr47pEaz5GOsOI36m6drDwKRg.png 6668w\",style:{aspectRatio:\"6668 / 5112\"},width:\"3334\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"Speed up internal processes and be more customer-responsive\"}),/*#__PURE__*/e(\"p\",{children:\"Browsing Anker's products, you will notice that most of their products have a review of 4.5 stars or higher, which is exceptional for a consumer electronics brand.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"700\",src:\"https://framerusercontent.com/images/hLeDdVyct1zfEqF33UJPY15FuaY.jpg\",srcSet:\"https://framerusercontent.com/images/hLeDdVyct1zfEqF33UJPY15FuaY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hLeDdVyct1zfEqF33UJPY15FuaY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hLeDdVyct1zfEqF33UJPY15FuaY.jpg 1632w\",style:{aspectRatio:\"1632 / 1400\"},width:\"816\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"This can partly be attributed to the fact that Anker treats the voice of its customers as their single source of truth\u2014even for their internal workflows. Customer feedback is relayed and processed internally with agility, and Lark is key to this customer-centric approach.\"}),/*#__PURE__*/e(\"p\",{children:\"Before, issues raised by customers were managed on various disconnected platforms, resulting in a lot of back-and-forth and copy-and-paste. When an issue was finally noticed and resolved, days might have passed. \"}),/*#__PURE__*/e(\"p\",{children:\"Using Lark's open API, the Anker team now connects all their existing third-party systems (such as BI tools and CRMs) with Lark Docs. Team members no longer have to toggle between multiple windows or copy and paste data manually. For example, the data team can insert Tableau charts into Lark Docs directly. The sales team can write up customer information in Lark Docs, which gets automatically synced into Anker's CRM and shared with the management.\"}),/*#__PURE__*/e(\"p\",{children:\"Anker also integrated its own issue management system with Lark Docs to create a unified issue tracking platform. When a colleague resolves an issue or has context to share, they can simply write the information in the doc. The latest progress is automatically synced to their internal issue management system. What used to take hours now only takes 10 minutes. \"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"2168\",src:\"https://framerusercontent.com/images/s9lKBJTJ9V6AEEW6jZE9rMqWqc.png\",srcSet:\"https://framerusercontent.com/images/s9lKBJTJ9V6AEEW6jZE9rMqWqc.png?scale-down-to=512 512w,https://framerusercontent.com/images/s9lKBJTJ9V6AEEW6jZE9rMqWqc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/s9lKBJTJ9V6AEEW6jZE9rMqWqc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/s9lKBJTJ9V6AEEW6jZE9rMqWqc.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/s9lKBJTJ9V6AEEW6jZE9rMqWqc.png 6560w\",style:{aspectRatio:\"6560 / 4336\"},width:\"3280\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Thanks to Lark's open capabilities, Lark Docs have become bridges connecting Anker's various systems, breaking information silos, and speeding up processes. Lark helps Anker turn \\\"customer centric\\\" from a slogan into everyday business processes.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"Build an innovation-oriented culture \"}),/*#__PURE__*/e(\"p\",{children:'In the consumer electronics industry, \"Continuous innovation is a life-or-death issue,\" CEO Steven Yang says. Without constant innovation, a company, however successful it might be, loses its competitiveness in no time. '}),/*#__PURE__*/e(\"p\",{children:\"Anker must keep developing new products and finding new markets. Colleagues from different geographies and cultural backgrounds need to be mobilized to contribute to this great cause. Building an innovation-oriented organizational culture is key.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"878\",src:\"https://framerusercontent.com/images/8v5AFNmnBIJmpTdGNyqxrp6qLI.jpg\",srcSet:\"https://framerusercontent.com/images/8v5AFNmnBIJmpTdGNyqxrp6qLI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8v5AFNmnBIJmpTdGNyqxrp6qLI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8v5AFNmnBIJmpTdGNyqxrp6qLI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/8v5AFNmnBIJmpTdGNyqxrp6qLI.jpg 2702w\",style:{aspectRatio:\"2702 / 1756\"},width:\"1351\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"To that end, Anker conducted a company-wide hackathon, which utilized Lark every step of the way. \"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark Announcement was used to publicize the competition. All employees received a notification in their chat feed\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark Survey was used to collect information from participants\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark chat groups were created to send updates of the competition\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"During the Hackathon, each group organized and presented their ideas in Lark Docs. Others gave feedback through commenting\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The hackathon was broadcast via Lark, so that employees everywhere could watch and participate virtually\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1125\",src:\"https://framerusercontent.com/images/DtojRwCWbCMUeEG8vrF27AdLfd4.jpg\",srcSet:\"https://framerusercontent.com/images/DtojRwCWbCMUeEG8vrF27AdLfd4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DtojRwCWbCMUeEG8vrF27AdLfd4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DtojRwCWbCMUeEG8vrF27AdLfd4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DtojRwCWbCMUeEG8vrF27AdLfd4.jpg 4000w\",style:{aspectRatio:\"4000 / 2250\"},width:\"2000\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h1\",{children:\"Conclusion\"}),/*#__PURE__*/e(\"p\",{children:'As a company, Anker puts a lot of thought into how they should operate and work together as a team. However, before Lark, it was difficult to turn those ideas into practice. Using Lark, \"customer-centrality\", \"constant innovation\", \"efficient collaboration\" are no longer just empty slogans or principles. They are embedded in the everyday actions of Anker employees, because the tools we use shape the way we work.'}),/*#__PURE__*/t(\"p\",{children:[\"Feeling inspired? \",/*#__PURE__*/e(n,{href:\"https://www.larksuite.com/en_us/salessupport?from=customers_anker\",motionChild:!0,nodeId:\"GL3H6ubFy\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"Contact us to schedule a customized demo\"})}),\", and see how Lark can help your company implement these best practices.\"]})]});export const richText2=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenges\"}),/*#__PURE__*/e(\"p\",{children:\"As V12Software welcomed more clients, the team started to look into how to make onboarding, consultation, and retention a closed loop in order to achieve customer success efficiently and at scale. \"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"In need of greater transparency\"}),\": Previously, customer data was tracked separately in different places, making it difficult to track sales and customer progress holistically. This made it harder to make informed decisions, and also created hurdles for sales and customer success teams to know how they perform over a period of time.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Missing the opportunity to rise above\"}),\": With sales information spread across different platforms and siloed from each other, each group in the sales team risked operating in a vacuum. It not only hindered the ability to optimize sales performance but also created blind spots that could make it easy to overlook opportunities for improvement.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Better ways to focus on a book of business\"}),\": Both the advisors and their managers on the customer success team sought more flexibility in browsing and analyzing customer portfolios without distracting the team with countless views. They needed a solution that would allow them to focus on their own customers while being able to update client status centrally.\"]})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"The Solutions\"}),/*#__PURE__*/e(\"p\",{children:\"The V12Software team initially tried Slack and ClickUp as alternatives for internal communication and customer success management but had difficulties receiving reminders, notifications, and reports directly in their chat feed without additional integration. With the help of Lark's customer success team, the team built a customer management hub using Lark Base from scratch.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:\"A unified customer management hub\"}),/*#__PURE__*/e(\"p\",{children:\"For V12Software, customer success hinges on understanding customer goals, responding to requests promptly, and proactively identifying needs to ensure a smooth flow from onboarding to retention. To achieve this, Mona consolidated sales and customer success teams' workspace into Lark Base, centralizing sales leads, onboarding status, follow-up dates, and key information.\"}),/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"The sales team can conveniently submit new deals through the form view in Lark Base, whether in the office or on the go. The automated workflow will also calculate commissions based on deal type and promotions, returning a real-time total for sales leaders to refer to. With sales data centralized, each leader in the team can easily track their group's performance separately. They can also compare progress across different groups to identify areas for improvement. This allows the team to continuously optimize their sales strategy and drive better results.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"329\",src:\"https://framerusercontent.com/images/mNbZ0NupU8QJul6zoYdeqTvWphg.png\",srcSet:\"https://framerusercontent.com/images/mNbZ0NupU8QJul6zoYdeqTvWphg.png?scale-down-to=512 512w,https://framerusercontent.com/images/mNbZ0NupU8QJul6zoYdeqTvWphg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mNbZ0NupU8QJul6zoYdeqTvWphg.png 1280w\",style:{aspectRatio:\"1280 / 658\"},width:\"640\"})]})}),/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"The customer success team can key in and track customer onboarding and follow-ups efficiently in Base; in addition, each group under the customer success team can view records only related to them through custom permissions, and each advisor on the team can further create private views only available to themselves to organize clients easily.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"421\",src:\"https://framerusercontent.com/images/I7GIKJVuwT7GxE1Ay7hFAq01qTI.png\",srcSet:\"https://framerusercontent.com/images/I7GIKJVuwT7GxE1Ay7hFAq01qTI.png?scale-down-to=512 512w,https://framerusercontent.com/images/I7GIKJVuwT7GxE1Ay7hFAq01qTI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/I7GIKJVuwT7GxE1Ay7hFAq01qTI.png 1280w\",style:{aspectRatio:\"1280 / 842\"},width:\"640\"})]})}),/*#__PURE__*/e(\"p\",{children:'With all customer success records organized in one place, the team can gain the transparency needed to continuously make improvements. \"What I like a lot on top of the ability to create different dashboards so easily is that we can also access the dashboards directly in chats,\" says Mona, \"it really helps our teams and the managers stay on top of how they are doing, and actually makes the number useful for the team.\" In Lark, the dashboards created for each team are further added as a tab for the teams to view charts within a group chat, and discuss needed actions in order to improve the numbers.'}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"473\",src:\"https://framerusercontent.com/images/r4vzhcLQwxLntP2HngDUitG3as.gif\",srcSet:\"https://framerusercontent.com/images/r4vzhcLQwxLntP2HngDUitG3as.gif?scale-down-to=512 512w,https://framerusercontent.com/images/r4vzhcLQwxLntP2HngDUitG3as.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/r4vzhcLQwxLntP2HngDUitG3as.gif 1310w\",style:{aspectRatio:\"1310 / 946\"},width:\"655\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:\"Free up teams for more customer work\"}),/*#__PURE__*/e(\"p\",{children:\"In Lark Base, the V12Software team has established automated processes, allowing sales and customer success teams to work more closely with a customer. When a new sale is made, the automated workflow will add the customer into the marketing advisors' workspace, so that the customer success team knows there are new customers that urgently need to be onboarded. With the automated workflow in place, the sales team no longer needs to manually remind the customer success team and hold multiple meetings to ensure a smooth transition. \"}),/*#__PURE__*/e(\"p\",{children:\"In addition, the customer success team boosts punctuality by turning on reminders for key dates in a few clicks, so that they can follow up with customers on their status on time upon receiving the reminder through Lark's Messenger. \"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"384\",src:\"https://framerusercontent.com/images/JMvnw2I1DnsCNci5eResrIywso.png\",srcSet:\"https://framerusercontent.com/images/JMvnw2I1DnsCNci5eResrIywso.png?scale-down-to=512 512w,https://framerusercontent.com/images/JMvnw2I1DnsCNci5eResrIywso.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JMvnw2I1DnsCNci5eResrIywso.png 1280w\",style:{aspectRatio:\"1280 / 769\"},width:\"640\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"With a unified customer management hub in place, the sales and customer success teams at V12Software have more time to focus on onboarding, following up with customers, and improving customer success, and are able to gain a better understanding on how each team performs comparatively in order to capture the opportunity to rise above.\"})]});export const richText3=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(a,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/vYIHSp44qmOgHgaaijWz/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(s,{...t,isRed:!0,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://www.youtube.com/watch?v=hkQHciv2KK0\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"568\",src:\"https://framerusercontent.com/images/gnlL0jU33Hr96DW2XWXGaTNofGc.png\",srcSet:\"https://framerusercontent.com/images/gnlL0jU33Hr96DW2XWXGaTNofGc.png?scale-down-to=512 512w,https://framerusercontent.com/images/gnlL0jU33Hr96DW2XWXGaTNofGc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gnlL0jU33Hr96DW2XWXGaTNofGc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gnlL0jU33Hr96DW2XWXGaTNofGc.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/gnlL0jU33Hr96DW2XWXGaTNofGc.png 5112w\",style:{aspectRatio:\"5112 / 1136\"},width:\"2556\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"Before using Lark, Surgo Media juggled multiple collaboration platforms to manage different aspects of their business. However, as their client base quickly expanded, their existing collaboration tools were not scaling well to adapt to their speed of growth. \"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Scattered client information\"}),\": They would use different communication platforms to cater to each client's preferred mode of contact. Not only was it difficult to juggle various clients on different apps, but they also could not efficiently search across all the apps for specific information\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"No bird's eye view on business performance: \"}),\"Surgo couldn't track real-time key metrics across multiple essential areas, such as revenue, profitability, deliverable statuses, hiring, and marketing campaigns, which led to many hours wasted on manual work and scattered spreadsheets\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Inefficient workflows: \"}),\"Surgo spent lots of time manually sharing data with customers, updating project statuses, and writing up tedious, repetitive reminder messages, which resulted in inefficient collaboration \"]})}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Slow onboarding: \"}),\"Each new client or employee had to create several new accounts, such as Loom, Slack, and Google Docs, to complete the onboarding process and wasted time trying to find materials and tutorials\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"p\",{children:'\"I tried integrating everything with Zapier\u2014but it wasn\u2019t efficient at all.\" says Alexei, \"Since everything was siloed within separate apps, we couldn\\'t have a comprehensive view of everything going on with clients and overall the business performance.\"'}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Solution\"})}),/*#__PURE__*/e(\"p\",{children:\"With Lark, the Surgo team is able to consolidate internal chats and communication with clients onto Lark, automate client management workflows, create visualized dashboards for marketing campaign performance, all to lift client partnerships and grow their business efficiently.\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"Everyone. And everything. On Lark.\"}),/*#__PURE__*/e(\"p\",{children:'All communication with every client and team member is now happening Lark through chat groups, email, and video meetings. \"Before, we had to use Google Meet, Zoom, and more platforms to meet with clients.\" says Alexei, \"Now, our customers are all on Lark. I keep track of everything without having important information fall through the cracks.\"'}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"900\",src:\"https://framerusercontent.com/images/AWPemlK7dgUWlovUmxkkCJWFdk.png\",srcSet:\"https://framerusercontent.com/images/AWPemlK7dgUWlovUmxkkCJWFdk.png?scale-down-to=512 512w,https://framerusercontent.com/images/AWPemlK7dgUWlovUmxkkCJWFdk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AWPemlK7dgUWlovUmxkkCJWFdk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/AWPemlK7dgUWlovUmxkkCJWFdk.png 2880w\",style:{aspectRatio:\"2880 / 1800\"},width:\"1440\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:'Plus, when having everyone on one platform, they don\\'t need to worry about any geographic or language barriers. \"We work with a lot of remote teams, and a bunch are using multiple languages for work, \" says Alexei, \"so Lark\\'s translation features help a lot with our communication and we don\\'t need to use an external tool to manually translate.\" '}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"833\",src:\"https://framerusercontent.com/images/6alwDYaR4cTyq4bZXYHNn5q7968.png\",srcSet:\"https://framerusercontent.com/images/6alwDYaR4cTyq4bZXYHNn5q7968.png?scale-down-to=512 512w,https://framerusercontent.com/images/6alwDYaR4cTyq4bZXYHNn5q7968.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6alwDYaR4cTyq4bZXYHNn5q7968.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/6alwDYaR4cTyq4bZXYHNn5q7968.png 2453w\",style:{aspectRatio:\"2453 / 1666\"},width:\"1226\"}),/*#__PURE__*/t(\"p\",{children:[\"The team at Surgo Media is able to make use of real-time \",/*#__PURE__*/e(n,{href:\"https://www.larksuite.com/en_us/product/video?from=surgo-customer-story\",motionChild:!0,nodeId:\"GL3H6ubFy\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"video meeting\"})}),\" translation subtitles, and all of their chat messages can be automatically translated for easy communication, too.\"]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"Real-time data on business and clients.\"}),/*#__PURE__*/t(\"p\",{children:['\"The Lark feature that especially transformed Surgo is Lark Base dashboards: being able to pull statistics from everything across their business helps us ',/*#__PURE__*/e(\"strong\",{children:'save up to 4 hours a day.\"'})]}),/*#__PURE__*/t(\"p\",{children:[\"With \",/*#__PURE__*/e(n,{href:\"https://www.larksuite.com/product/base?from=surgo-customer-story\",motionChild:!0,nodeId:\"GL3H6ubFy\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"Lark Base\"})}),\", Surgo Media has a bird's eye view on their business performance by tracking all business metrics, like revenue, sales, profitability, budgeting, and costs in one dashboard. They customize their dashboards to include visualized charts, such as bar graphs and pie charts, so they can quickly derive business strategies from real-time data.\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"488\",src:\"https://framerusercontent.com/images/UyeR87q4sucVwdFZqC6ABdJ2kN4.png\",srcSet:\"https://framerusercontent.com/images/UyeR87q4sucVwdFZqC6ABdJ2kN4.png?scale-down-to=512 512w,https://framerusercontent.com/images/UyeR87q4sucVwdFZqC6ABdJ2kN4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UyeR87q4sucVwdFZqC6ABdJ2kN4.png 1532w\",style:{aspectRatio:\"1532 / 977\"},width:\"766\"}),/*#__PURE__*/e(\"p\",{children:\"When using Lark Base to run marketing project management for clients, the team can import project details quickly into Lark Base, then create different views, such as Gantt, Kanban, Calendar, and Gallery, to easily see project progress, track upcoming tasks, and create social media calendars.\"}),/*#__PURE__*/e(\"p\",{children:\"When it comes to handling client information, all of the data is also one dashboard so that they can easily filter or group client details within seconds. And for each client, they have a designated project plan table that automatically tracks their workloads and project statuses to collaborate faster.\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"No more grunt work. Hello automated solutions.\"}),/*#__PURE__*/t(\"p\",{children:[\"Surgo Media has built several automated workflows to increase their efficiency in client collaboration. For client projects, Lark will automatically send the team to Surgo Media a message about the updated project status, once a client has completed a task and marked it in the project tracker. When a prospect is interested in chatting with Surgo Media and schedules a time to call on \",/*#__PURE__*/e(n,{href:\"https://www.larksuite.com/hc/en-US/articles/059854660943-use-the-scheduler-in-calendar\",motionChild:!0,nodeId:\"GL3H6ubFy\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"Lark Scheduler\"})}),\", a Lark bot will immediately inform the Surgo team about the new meeting and add it to the Surgo team's calendar.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"843\",src:\"https://framerusercontent.com/images/TZeDbbZ5I7CJZkrsLY4VY0S7eCc.png\",srcSet:\"https://framerusercontent.com/images/TZeDbbZ5I7CJZkrsLY4VY0S7eCc.png?scale-down-to=512 512w,https://framerusercontent.com/images/TZeDbbZ5I7CJZkrsLY4VY0S7eCc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TZeDbbZ5I7CJZkrsLY4VY0S7eCc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/TZeDbbZ5I7CJZkrsLY4VY0S7eCc.png 2560w\",style:{aspectRatio:\"2560 / 1687\"},width:\"1280\"}),/*#__PURE__*/t(\"p\",{children:[\"Their team also uses \",/*#__PURE__*/e(n,{href:\"https://www.larksuite.com/hc/en-US/articles/360048488198-create-tasks\",motionChild:!0,nodeId:\"GL3H6ubFy\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"Lark Task Lists\"})}),' so they prioritize to-do\\'s for each week. They assign each task to a team member and attach a deadline; then, Lark automatically sends them reminders before the due date to keep them on track to hit key milestones. \"We now save a lot of time with automation because we don\\'t waste time on back-and-forth updates anymore,\" says Alexei, \"and our team gains around two hours of our time per day back on project management. Our processes have become 30% faster.\"']})]});export const richText4=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(a,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/vYIHSp44qmOgHgaaijWz/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(s,{...t,isRed:!0,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://www.youtube.com/watch?v=AiJjrtDV1r0\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"The challenges\"}),/*#__PURE__*/e(\"p\",{children:\"As Haidilao expanded its business globally, its teams recognized the necessity of a deeper digital transformation in their work methods in order to operate their business on a larger scale. This was crucial not only to consistently deliver exemplary service amidst competition, but also to innovate as a brand for long-term success.\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Too late to save issues from turning into catastrophes:\"}),\" When the store teams identified food defects, it took a long time to communicate with the suppliers, locate the root causes, and resolve the issues, incurring additional costs and risking customers' safety.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Inconsistent quality due to multiple versions:\"}),\" Recipes and production standards were stored in Excel or Word documents and printed out for training. This led to inconsistencies in the dining experience due to delayed updates in different stores.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Unable to generate revenue insights:\"}),\" There were multiple systems serving different purposes, making it difficult to gain a holistic view of the business without the laborious tasks of data cleaning, combining, and programming.\"]})}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Distributed teams and unheard voices:\"}),\" As store teams spanned across locations, they often felt distant from the headquarters without a way to relay on-ground observations. The management teams were also worried about missing opportunities to improve.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"h2\",{children:\"Landing Lark\"}),/*#__PURE__*/e(\"p\",{children:\"Haidilao started its digitization as early as 2011. While most restaurants still used pen and paper, Haidilao stores began using tablets for order placement, waitlists, membership management, and more. \"}),/*#__PURE__*/e(\"p\",{children:'\"The hurdles that restaurant businesses are now faced with can no longer be solved by adding a few more people.\" says Xibei. \"For example, adding more store staff to check food defects won\\'t help us eliminate them. Only by knowing and understanding food defect data can we choose the right suppliers and find the optimal pace to restock, ensuring that our food is always fresh and of high quality.\"'}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:\"100,000 employees, 1 source of truth\"}),/*#__PURE__*/e(\"p\",{children:\"To begin unifying the quality of service, the first task is to ensure that every staff member is referring to the same set of requirements. At Haidilao, store teams can use Lark Workplace to access the same, up-to-date guidelines, standards, company policies, and other necessary materials from a single location on their mobile devices.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"618\",src:\"https://framerusercontent.com/images/Ty4FX1jzSrULpGo1nNNhvH6t5ck.gif\",srcSet:\"https://framerusercontent.com/images/Ty4FX1jzSrULpGo1nNNhvH6t5ck.gif?scale-down-to=512 512w,https://framerusercontent.com/images/Ty4FX1jzSrULpGo1nNNhvH6t5ck.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ty4FX1jzSrULpGo1nNNhvH6t5ck.gif 1790w\",style:{aspectRatio:\"1790 / 1236\"},width:\"895\"}),/*#__PURE__*/e(\"p\",{children:\"In daily conversations with other staff members and managers on Lark, store employees are also able to click on keywords in text messages to access store information, recipe standards, and operational protocols. By using Lark Lingo, the frontline team can easily locate the operational knowledge they need.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"618\",src:\"https://framerusercontent.com/images/hCPO7hII9wg6zvS2NoQw99oCYlU.gif\",srcSet:\"https://framerusercontent.com/images/hCPO7hII9wg6zvS2NoQw99oCYlU.gif?scale-down-to=512 512w,https://framerusercontent.com/images/hCPO7hII9wg6zvS2NoQw99oCYlU.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/hCPO7hII9wg6zvS2NoQw99oCYlU.gif 1790w\",style:{aspectRatio:\"1790 / 1236\"},width:\"895\"}),/*#__PURE__*/e(\"p\",{children:\"To ensure that every staff member sees and acknowledges important updates, Haidilao shares them through Lark Announcement to accurately pushes the updates to relevant employees. Additionally, the company improves employee service responsiveness by automating more than 70% of Q&A via Lark Help Desk, which helps the admin team save over 60,000 hours every year.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"960\",src:\"https://framerusercontent.com/images/5YuildGoYTRKQ9MjSIENsWSbz4.png\",srcSet:\"https://framerusercontent.com/images/5YuildGoYTRKQ9MjSIENsWSbz4.png?scale-down-to=512 512w,https://framerusercontent.com/images/5YuildGoYTRKQ9MjSIENsWSbz4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5YuildGoYTRKQ9MjSIENsWSbz4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5YuildGoYTRKQ9MjSIENsWSbz4.png 2560w\",style:{aspectRatio:\"2560 / 1920\"},width:\"1280\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:\"Leaving no defects behind\"}),/*#__PURE__*/e(\"p\",{children:\"After establishing unified standards, the next challenge is to ensure consistent execution by store staff. Haidilao addresses this issue by digitizing processes in Lark Base. This enables teams to execute efficiently based on established standards, without worrying about laborious communication across departments.\"}),/*#__PURE__*/e(\"p\",{children:\"For example, store teams can quickly address issues that might compromise the quality of their dishes by submitting a form. Whenever the team identifies a problem with the food, they can immediately submit a report on their mobile device using the form view of Lark Base. The issues will then be automatically routed to the relevant teams for processing and resolution. By using this workflow, Haidilao has reduced the processing time for food defects from at least 2-3 days to as short as 2 hours, ensuring seamless execution and maintaining the desired food quality.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"641\",src:\"https://framerusercontent.com/images/DXyOEtH5cweeHSYdroGrU7vWARQ.gif\",srcSet:\"https://framerusercontent.com/images/DXyOEtH5cweeHSYdroGrU7vWARQ.gif?scale-down-to=512 512w,https://framerusercontent.com/images/DXyOEtH5cweeHSYdroGrU7vWARQ.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/DXyOEtH5cweeHSYdroGrU7vWARQ.gif 1920w\",style:{aspectRatio:\"1920 / 1282\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:\"Make informed decisions easily\"}),/*#__PURE__*/e(\"p\",{children:\"Lark empowers teams at Haidilao to identify insights from daily numbers without being hindered by technology. For example, the finance department used to spend a lot of time following up on missing revenue reports and waiting for engineers to centralize data. With Lark Base, the team can now automate the entire process on one table by themselves.\"}),/*#__PURE__*/e(\"p\",{children:\"Store managers can easily submit revenue reports and receive automated reminders as deadlines approach. Dashboards will be refreshed automatically based on the numbers. Additionally, the finance department provides varying permissions in Lark Base for store and regional managers to view dedicated sales calibrations and forecasts without the need to create multiple charts.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1200\",src:\"https://framerusercontent.com/images/9LEv5R9xFA7Omaed5Ogd6JVDNs.png\",srcSet:\"https://framerusercontent.com/images/9LEv5R9xFA7Omaed5Ogd6JVDNs.png?scale-down-to=512 512w,https://framerusercontent.com/images/9LEv5R9xFA7Omaed5Ogd6JVDNs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9LEv5R9xFA7Omaed5Ogd6JVDNs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9LEv5R9xFA7Omaed5Ogd6JVDNs.png 3600w\",style:{aspectRatio:\"3600 / 2400\"},width:\"1800\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:\"A sense of belonging starts with open conversations\"}),/*#__PURE__*/e(\"p\",{children:\"Stores are where Haidilao's day-to-day business takes place, and the teams recognize that only by listening to and addressing on-site suggestions can the company make the right moves. Using Lark Moments, Haidilao creates topic boards where all employees, whether in a store or in an office, can post their ideas, suggestions, or feedback about their experience.\"}),/*#__PURE__*/e(\"p\",{children:\"A dedicated operations team is in place to follow up on feedback and implement suggested changes. Moments also serve as virtual offices for frontline teams, enabling them to share memorable highlights and stories about life at Haidilao, even if they do not work in the same store.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"658\",src:\"https://framerusercontent.com/images/rN0EO4SYircZzXQoHV97xKJ7cI.png\",srcSet:\"https://framerusercontent.com/images/rN0EO4SYircZzXQoHV97xKJ7cI.png?scale-down-to=512 512w,https://framerusercontent.com/images/rN0EO4SYircZzXQoHV97xKJ7cI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rN0EO4SYircZzXQoHV97xKJ7cI.png 1791w\",style:{aspectRatio:\"1791 / 1317\"},width:\"895\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Haidilao's digital transformation has improved its ability to provide high-quality service across all locations. By using Lark, Haidilao can unify service standards and ensure efficient execution through automated processes. On Lark, the hot pot chain is able to greatly reduce costs and risks associated with food quality, gain better insights into the business, and improve communication across distributed teams in order to continue its exemplary service across the world.\"})]});export const richText5=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Unite and conquer\"}),/*#__PURE__*/e(\"p\",{children:'\"Developing hardware is just a part of Xiaomi\u2019s businesses. The driving forces behind those devices are its software and Internet content\" - Lei Jun'}),/*#__PURE__*/t(\"p\",{children:[\"Unlike traditional technology companies, Xiaomi offers a wide range of products and services, including consumer electronics, software, and household items. However, these diverse product lines initially resulted in the \",/*#__PURE__*/e(\"strong\",{children:\"use of multiple, siloed collaboration tools within the company\"}),\". \"]}),/*#__PURE__*/e(\"p\",{children:\"For example, different teams used different communication tools and relied on email and offline document management tools to coordinate projects. This fragmented system hindered productivity and efficiency within the organization.\"}),/*#__PURE__*/e(\"p\",{children:\"Xiaomi's team was also bogged down by the need to log in and check multiple internal systems with separate notification channels, leading to reduced productivity. \"}),/*#__PURE__*/e(\"p\",{children:\"To ensure smooth integration and collaboration among its various business units, Xiaomi needed a unified workplace solution that enables the efficient exchange of information, streamlined workflows, and quick access to knowledge and information. By using a single tool that aligns with Xiaomi's business strategy, the company can boost productivity and drive innovation within the organization\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"477\",src:\"https://framerusercontent.com/images/BVXzNDK3Gkkmxi3q9Dxav8a5si0.jpg\",srcSet:\"https://framerusercontent.com/images/BVXzNDK3Gkkmxi3q9Dxav8a5si0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BVXzNDK3Gkkmxi3q9Dxav8a5si0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BVXzNDK3Gkkmxi3q9Dxav8a5si0.jpg 1500w\",style:{aspectRatio:\"1500 / 955\"},width:\"750\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Lark became the unified hub for Xiaomi's internal collaboration\"})}),/*#__PURE__*/e(\"p\",{children:\"Xiaomi was drawn to Lark for its comprehensive tool integration, user-friendly interface, and commitment to fostering effective collaboration.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"More than just a communication tool\"}),/*#__PURE__*/t(\"p\",{children:[\"Previously, employees had used \",/*#__PURE__*/e(\"strong\",{children:\"personal chat software for workplace communication\"}),', which required them to add their colleagues as \"friends\" before being able to communicate with them. It was difficult for employees to connect with colleagues from different departments, and conversations often got lost in numerous chat groups.']}),/*#__PURE__*/e(\"p\",{children:\"Lark's contact feature helps Xiaomi users easily find and connect with relevant stakeholders within the organization, and keep relevant conversations organized in threads.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"875\",src:\"https://framerusercontent.com/images/y7ISr9OhUU3W97CgKq9xjqqpcD4.jpg\",srcSet:\"https://framerusercontent.com/images/y7ISr9OhUU3W97CgKq9xjqqpcD4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/y7ISr9OhUU3W97CgKq9xjqqpcD4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/y7ISr9OhUU3W97CgKq9xjqqpcD4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/y7ISr9OhUU3W97CgKq9xjqqpcD4.jpg 2880w\",style:{aspectRatio:\"2880 / 1750\"},width:\"1440\"}),/*#__PURE__*/t(\"p\",{children:[\"In addition to its communication challenges, Xiaomi struggled with \",/*#__PURE__*/e(\"strong\",{children:\"inefficient information flow\"}),\", as most documents were stored locally in individual employees' computers. This made it difficult to locate documents, track revisions, share them with the appropriate permission levels, or send them out on time.\"]}),/*#__PURE__*/e(\"p\",{children:\"With Lark Docs, Xiaomi's team was able to streamline their communication and improve their productivity. Since all Lark Docs live in the cloud, they are always the latest version, eliminating the confusion created by multiple versions. They are also easily accessible and searchable, on all devices. The comment function enabled them to exchange information quickly and follow up in real time, with notifications sent directly to their chat. \"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"763\",src:\"https://framerusercontent.com/images/rZVQit8FYZTGAmocc9NkRp1q0.jpg\",srcSet:\"https://framerusercontent.com/images/rZVQit8FYZTGAmocc9NkRp1q0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rZVQit8FYZTGAmocc9NkRp1q0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rZVQit8FYZTGAmocc9NkRp1q0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rZVQit8FYZTGAmocc9NkRp1q0.jpg 2880w\",style:{aspectRatio:\"2880 / 1527\"},width:\"1440\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://larkieenterprise.larksuite.com/sheets/shtusGglLOl9l1h4qgIxkuM7dUc\",motionChild:!0,nodeId:\"GL3H6ubFy\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"Get your event planning template here.\"})})}),/*#__PURE__*/e(\"p\",{children:\"Lark improved the team's ability to manage their knowledge and achieve better business results by streamlining their communication process with a single tool.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"The hidden cost of meetings\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Meetings were a significant overhead cost for Xiaomi\"}),\" and often wasted valuable time that could have been spent on high-value activities. Many meetings were one-way, lacking feedback or input from attendees, making them ineffective.\"]}),/*#__PURE__*/t(\"p\",{children:[\"Additionally, \",/*#__PURE__*/e(\"strong\",{children:\"employees often spent more time formatting presentations in PowerPoint\"}),\" rather than focusing on the content. \",/*#__PURE__*/e(\"strong\",{children:\"Sharing large presentation files\"}),\" was also a challenge. \"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"477\",src:\"https://framerusercontent.com/images/YBtdILYyrmPkSWbZr0dMy9Mno0.png\",srcSet:\"https://framerusercontent.com/images/YBtdILYyrmPkSWbZr0dMy9Mno0.png?scale-down-to=512 512w,https://framerusercontent.com/images/YBtdILYyrmPkSWbZr0dMy9Mno0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YBtdILYyrmPkSWbZr0dMy9Mno0.png 1500w\",style:{aspectRatio:\"1500 / 955\"},width:\"750\"}),/*#__PURE__*/t(\"p\",{children:[\"Too many of such ineffective meetings can \",/*#__PURE__*/e(\"strong\",{children:\"hinder innovation, contribute to employee burnout, and even increase employee turnover\"}),\". To address this issue, Xiaomi turned to Lark Docs to streamline meetings and improve productivity.\"]}),/*#__PURE__*/e(\"p\",{children:'\"Lark helps keep everyone on the same page in meetings, regardless of time zone or location. In one meeting with the internet department alone, the company was able to reduce meeting time by 5%, which is equivalent to adding 5% of productive time back to each employee.\" - Wang Chuan, Co-founder, Vice President'}),/*#__PURE__*/t(\"p\",{children:[\"Very often, inviting too many people to \",/*#__PURE__*/e(\"strong\",{children:\"meetings can be unproductive and waste time\"}),\". When meetings get too large, rich debate is often replaced by shallow comments, and people may be less willing to share their ideas. \"]}),/*#__PURE__*/e(\"p\",{children:\"Using Lark's SamePage Meeting method, Xiaomi ran a brainstorming session with 90 people to create a new avatar for their AI digital assistant, Xiao Ai. The result? 200 comments in a single one-hour meeting, with over five topic groups generated afterwards.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"524\",src:\"https://framerusercontent.com/images/RNCA0OWO07zu30k5IuQYxDFJHRw.png\",srcSet:\"https://framerusercontent.com/images/RNCA0OWO07zu30k5IuQYxDFJHRw.png?scale-down-to=512 512w,https://framerusercontent.com/images/RNCA0OWO07zu30k5IuQYxDFJHRw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RNCA0OWO07zu30k5IuQYxDFJHRw.png 1980w\",style:{aspectRatio:\"1980 / 1048\"},width:\"990\"}),/*#__PURE__*/e(\"p\",{children:\"Lark Docs helps transform Xiaomi meetings into productive working sessions by enabling the entire team to collaborate on the same document in real time, saving time and ensuring that everyone's contribution is valued.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"Navigating time zone differences in a global workplace\"}),/*#__PURE__*/t(\"p\",{children:[\"Since Xiaomi's team spans multiple continents and time zones, it's often difficult to \",/*#__PURE__*/e(\"strong\",{children:\"find a time to meet that works for everyone\"}),\". To address the challenges posed by time zone differences, Xiaomi uses Lark Calendar to facilitate coordination and communication with local teams.\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"875\",src:\"https://framerusercontent.com/images/nJgcfPeQ5cDUPGErACQHyzfCPU.jpg\",srcSet:\"https://framerusercontent.com/images/nJgcfPeQ5cDUPGErACQHyzfCPU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nJgcfPeQ5cDUPGErACQHyzfCPU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nJgcfPeQ5cDUPGErACQHyzfCPU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/nJgcfPeQ5cDUPGErACQHyzfCPU.jpg 2880w\",style:{aspectRatio:\"2880 / 1750\"},width:\"1440\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Lark calendar simplifies scheduling by comparing colleagues' local times side by side.\"})}),/*#__PURE__*/e(\"p\",{children:\"However, due to the narrow window of overlapping time between regions, opportunities for synchronous meetings are scarce. To address this challenge, Xiaomi has adopted the use of asynchronous meetings. Rather than scheduling meetings in different time zones, team leads send out a Lark Doc with project information and all relevant stakeholders are able to collaborate on the same document asynchronously. This allows team members to work on the project at their own convenience and avoids the need for scheduling meetings across time zones.\"}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Project lead sends out a group message and a Lark Doc for everyone to put in their inputs\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"398\",src:\"https://framerusercontent.com/images/VJgMnN4X5YqMek6bkkkyvwjYBk.png\",srcSet:\"https://framerusercontent.com/images/VJgMnN4X5YqMek6bkkkyvwjYBk.png?scale-down-to=512 512w,https://framerusercontent.com/images/VJgMnN4X5YqMek6bkkkyvwjYBk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VJgMnN4X5YqMek6bkkkyvwjYBk.png 1500w\",style:{aspectRatio:\"1500 / 797\"},width:\"750\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/t(\"p\",{children:[\"Everyone contributes at their own time before the stipulated deadline\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"763\",src:\"https://framerusercontent.com/images/Ft2Am2jsF8b0miuewVWsHeg5kto.jpg\",srcSet:\"https://framerusercontent.com/images/Ft2Am2jsF8b0miuewVWsHeg5kto.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ft2Am2jsF8b0miuewVWsHeg5kto.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ft2Am2jsF8b0miuewVWsHeg5kto.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ft2Am2jsF8b0miuewVWsHeg5kto.jpg 2880w\",style:{aspectRatio:\"2880 / 1526\"},width:\"1440\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"strong\",{children:\"Lark \"}),/*#__PURE__*/e(n,{href:\"https://www.larksuite.com/solutions/usecase/global-collaboration?from=customers_xiaomi\",motionChild:!0,nodeId:\"GL3H6ubFy\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:/*#__PURE__*/e(\"strong\",{children:\"supports over 100 source language translations\"})})}),/*#__PURE__*/e(\"strong\",{children:\", allowing you to work comfortably in your native language. \"})]})]})]}),/*#__PURE__*/e(\"p\",{children:\"This approach allows meetings to be used only when they are most necessary, giving people more time to contribute in their preferred language and enabling access to information even if people cannot meet at the same time.\"}),/*#__PURE__*/e(\"h1\",{children:\"Conclusion\"}),/*#__PURE__*/t(\"p\",{children:[\"In summary, Lark has proven to be a valuable resource for Xiaomi in establishing a hybrid work environment that allows for effective collaboration and communication regardless of team members' locations. Through its ability to drive more efficient meetings, facilitate better cross-border collaboration, and provide unified workplace solutions, Lark has helped Xiaomi overcome the challenges of working with a distributed team and has contributed to the company's success. If you're looking to improve collaboration and communication within your own organization, we highly recommend giving Lark a try. \",/*#__PURE__*/e(n,{href:\"https://www.larksuite.com/en_us/salessupport?from=customers_xiaomi\",motionChild:!0,nodeId:\"GL3H6ubFy\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"You can learn more and get started with Lark here.\"})})]})]});export const richText6=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"Before the pandemic, AMBD staff worked directly with tenants and other third-party personnel, often using paper forms and manual systems.\"}),/*#__PURE__*/e(\"p\",{children:\"With the pandemic necessitating social distancing, the manual processes that worked in the past would no longer suffice and AMBD needed a solution to not only take complex face-to-face interactions digital but also to improve overall efficiency.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Lark Advantage\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"319\",src:\"https://framerusercontent.com/images/F94cNS34RhgZE5Wid18zyjiczE.jpg\",srcSet:\"https://framerusercontent.com/images/F94cNS34RhgZE5Wid18zyjiczE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/F94cNS34RhgZE5Wid18zyjiczE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/F94cNS34RhgZE5Wid18zyjiczE.jpg 1572w\",style:{aspectRatio:\"1572 / 638\"},width:\"786\"}),/*#__PURE__*/e(\"p\",{children:\"Lark was introduced to AMBD by the Digital Promotion Team at The Representative Office of AEONMALL Co., Ltd in Ho Chi Minh City and endorsed by the New Business Strategy Team in AEONMALL VIETNAM.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark was able to solve AMBD\u2019s core issue of managing tenants while social distancing by using Lark\u2019s Approval and Survey features.\"}),/*#__PURE__*/e(\"p\",{children:\"These features, designed to work seamlessly on any platform and device, allowed AMBD management to keep on top of mall activities through a centralized knowledge system where all approvals would go through.\"}),/*#__PURE__*/e(\"p\",{children:\"AMBD management also had praise for Lark\u2019s Announcement, allowing it to quickly disseminate information to tenants and receive feedback succinctly.\"}),/*#__PURE__*/e(\"p\",{children:\"With requests now centralized on Lark, AMBD management is also able to better track and analyze long-term data, improving decision making across the board.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark has given AMBD the ability to do away with manual paper-based processes\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Proper social distancing can be implemented\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Centralized reporting for better knowledge management\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Improved efficiency thanks to a single channel of feedback\"})}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Lark helped management continuing engaging with tenants via mobile announcements\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]})]});export const richText7=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h1\",{children:/*#__PURE__*/e(\"strong\",{children:\"Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"Outlandish was trying to find the most effective way to connect their global, remote team. With employees based in China, US, UK, and the Phillipines, they struggled with streamlining all operations and updates from different geographical locations into one platform. They used over 10 different collaboration platform tools, such as Google Workspace, Microsoft Office, Zoom, Monday.com, Whatsapp, Calendly, and more.\"}),/*#__PURE__*/e(\"p\",{children:\"When working with employees around the world, some collaboration apps are not available for use in certain regions, which also led to communication challenges across separate platforms and time zones. Outlandish found it specifically challenging when collaboration on documents and processes alongside global teamwork.\"}),/*#__PURE__*/e(\"h1\",{children:/*#__PURE__*/e(\"strong\",{children:\"Solution\"})}),/*#__PURE__*/e(\"p\",{children:'Now, with Lark, Outlandish manages their employees and works all under one app. \"We found out quickly that we preferred it over mixing different software. All in one is much better. It is also very fairly priced and has a very good freemium version,\" says William August, CEO of Outlandish. The team now saves up to an hour a day on manual work, thanks to Lark\\'s centralized platform, automated workflows, and team-focused features.'}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"Bringing the team together has never been easier. \"}),/*#__PURE__*/e(\"p\",{children:'Since the entire team is dispersed, Lark brings everyone together through chat, video conferencing, and email. All of their employees conduct all communication via Lark, which is friendly for use in all geographical regions, so that they no longer need to juggle across various apps to communicate with each other. \"Lark brings my team together through group meetings, cameras on and chats. It\\'s a really great tool for building a community as well,\" says William.'}),/*#__PURE__*/e(\"p\",{children:\"Moreover, each region focuses on different initiatives\u2014such as UK on Ad Management, US on Livestream Operations, and more. With these different regional focuses, they also have chat groups per regional department to help streamline communications and make their discussions more focused.\"}),/*#__PURE__*/e(\"p\",{children:\"When collaborating with teammates in different regions, Lark makes it easy for them to see their coworker's time zones, so they can take into account different schedules when creating meetings. As a result, it helped their team quickly adjust and improve their efficiency by 30%.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"Customized workflows and databases that work just right for their business.\"}),/*#__PURE__*/e(\"p\",{children:'With Lark, Outlandish manages all operations, from client management, video creation, and finances in one place. Their favorite app to do all of this? Lark Base\u2014a robust, no-code dashboard and database that allows you to build custom workflows. \"Everything changed when we found Base. It is so much better than an excel sheet, easily scalable, you can set custom permissions and automations. It\\'s so customizable, saves a ton of time for us, and is great for managing projects,\" says William.'}),/*#__PURE__*/e(\"p\",{children:\"Outlandish uses Base as a CRM, Project Management, and Creator Management tool. They have a Lark Base that they use to track creators internally, one main sheet, and sheets for each client. To manage these various sheets, they have advanced permissions for each client where they can see their creators but no-one else can. \\\"It's just an extremely efficient way to communicate. Without this advanced permission and Lark Base, I can't imagine how this would have been possible without building a whole custom system internally. Lark is great for building systems fast,\\\" says William.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark Base also has an in-built business intelligence system, which helps them track work, easily search for information, and quickly build out dashboards. Now, they save hours a day on manual work.\"})]});export const richText8=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"As a young startup in a hypergrowth field like healthcare, WhiteCoat had three specific pain points that needed solving:\"}),/*#__PURE__*/e(\"p\",{children:\"WhiteCoat needed a unified platform that allowed for communication between the company\u2019s different regional teams. They were using a mix of different apps and programs creating confusion and a lack of efficiency.\"}),/*#__PURE__*/e(\"p\",{children:\"There was a language barrier between the company\u2019s Singapore HQ and their large Vietnamese division. Existing communication platforms did not allow for easy translation, meaning that staff often had to use third-party help.\"}),/*#__PURE__*/e(\"p\",{children:\"WhiteCoat needed a cloud-enabled docs solution that allowed staff from across different offices to collaborate on the same documents with support for multiple languages.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Lark Advantage\"})}),/*#__PURE__*/e(\"p\",{children:\"For WhiteCoat, Lark offered a global platform that was well priced and scalable, empowering the team to focus more on their mission of improving the healthcare experience. The key added benefits included:\"}),/*#__PURE__*/e(\"p\",{children:\"Lark Drive became a hub for WhiteCoat\u2019s regional employees to collaborate and share important documents on desktop or mobile.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s intuitive A.I. powered translation engine helped teams in Singapore and Vietnam chat and communicate better.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s all-in-one approach to collaboration meant that WhiteCoat had all the tools it needed within one single program, removing the need for a whole toolbox of disconnected programs that the company was using in the past.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/e(\"p\",{children:\"Cost savings from switching to Lark as it included tools such as calendars, drive storage and video conferencing. These were tools that the company had been paying for separately\"}),/*#__PURE__*/e(\"p\",{children:\"Teams in the company are able to communicate better, fostering greater collaboration and team spirit\"}),/*#__PURE__*/e(\"p\",{children:\"WhiteCoat\u2019s employees reported higher productivity using Lark's mobile app to take of business from wherever they were\"})]});export const richText9=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/t(\"p\",{children:[\"With over 30% of their team located globally, \",/*#__PURE__*/e(n,{href:\"https://www.voromotors.com/\",motionChild:!0,nodeId:\"GL3H6ubFy\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"Voro Motors\"})}),\" found it challenging to connect their distributed teams\u2014especially between Asian regions and their California HQ. With a large team of over 110 employees, Voro Motors teammates struggled with remote communication and the organization felt scattered in terms of collaboration, operations, and workflows. Voro Motors was also juggling numerous collaboration tools, some of which were also not available for use in other global regions, did not integrate well with other software, and made their workflows more inefficient.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Solution\"})}),/*#__PURE__*/e(\"p\",{children:'With Lark, they were able to replace over six different collaboration tools and run their business on just one platform. \"The main tools we moved from over to Lark were Monday.com, Quora, Guru, Slack, Google Docs, and Wetransfer\" says Melvin, the Founder of Voro Motors. With Lark, they are now able to centralize all operations\u2014from manufacturing, employee communication, customer support, to even scooter repairs\u2014and seamlessly connect their global team on one platform.'}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"Breaking down language and time zone barriers\"}),/*#__PURE__*/t(\"p\",{children:['Voro Motors\\' employees come from various countries across the world and speak different languages. In order for the team to freely express their ideas and projects without any limitations, their team heavily relies on Lark\\'s translation tools. \"My favorite Lark feature is translation,\" says Melvin. \"A lot of SaaS translation tools are not as instant as Lark. Lark translates within a second. For instance, ',/*#__PURE__*/e(n,{href:\"https://www.larksuite.com/en_us/product/video?from=voromotorsstory\",motionChild:!0,nodeId:\"GL3H6ubFy\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"Lark's video meetings\"})}),\" provide real-time translated subtitles, so that employees are able to understand instantly and if they were to miss any part of the meeting, they can immediately catch up on what the speaker is saying with Lark's transcription.\\\"\"]}),/*#__PURE__*/e(\"p\",{children:\"Since almost half of their team is global, finding meeting times across various time zones is key. With Lark, users can pull everyone's calendar together and no longer need to manually calculate time zone differences. To prevent clashes and save time organizing meetings, Lark puts meeting attendees' schedules side-by-side that automatically maps out time zones, so that meeting organizers can automatically spot out suitable meeting times. \\\"This was not available in Google Calendar, so having it within Lark is extremely helpful,\\\" says Melvin.\"}),/*#__PURE__*/e(\"img\",{alt:\"Lark calendar app with side-by-side cross border calendars\",className:\"framer-image\",height:\"896\",src:\"https://framerusercontent.com/images/fWlyBIMOlGN3LQUGk3AdxC8.png\",srcSet:\"https://framerusercontent.com/images/fWlyBIMOlGN3LQUGk3AdxC8.png?scale-down-to=512 512w,https://framerusercontent.com/images/fWlyBIMOlGN3LQUGk3AdxC8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fWlyBIMOlGN3LQUGk3AdxC8.png 2040w\",style:{aspectRatio:\"2040 / 1792\"},width:\"1020\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/t(\"p\",{children:['With transpacific communication comes different knowledge-specific vocabulary words, abbreviations, or region-specific terms at Voro Motors. \"Lingo is also a great feature to describe a component differently from a different country than someone in the US.\" With ',/*#__PURE__*/e(n,{href:\"https://www.larksuite.com/hc/en-US/articles/138097709909-quick-guide-to-lingo-video\",motionChild:!0,nodeId:\"GL3H6ubFy\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"Lark's Lingo\"})}),\" feature, all employees can add terms to the Lark Lingo dictionary, where it enables users to view a definition card and related resources to those specific terms when terminology pops up across the entire Lark platform. That way, users can learn and understand vocabulary immediately and ultimately work even faster.\"]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"Project management and collaboration made easy\"}),/*#__PURE__*/t(\"p\",{children:[\"To keep the company connected, all employees use \",/*#__PURE__*/e(n,{href:\"https://www.larksuite.com/en_us/product/messenger?from=voromotorsstory\",motionChild:!0,nodeId:\"GL3H6ubFy\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"Lark chat\"})}),' and even external vendors use to communicate with each other. Voro Motors has chat threads for all departments to keep conversations streamlined and heavily use the \"reply in thread\" feature to avoid data dumping into the main chat. ']}),/*#__PURE__*/t(\"p\",{children:[\"Not only do they use chat, but they also use Lark's collaborative tools, like \",/*#__PURE__*/e(n,{href:\"https://www.larksuite.com/en_us/product/creation?from=voromotorsstory\",motionChild:!0,nodeId:\"GL3H6ubFy\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"Docs\"})}),\", \",/*#__PURE__*/e(n,{href:\"https://www.larksuite.com/product/base?from=voromotorsstory\",motionChild:!0,nodeId:\"GL3H6ubFy\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"Sheets\"})}),\", and \",/*#__PURE__*/e(n,{href:\"https://www.larksuite.com/product/base?from=voromotorsstory\",motionChild:!0,nodeId:\"GL3H6ubFy\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"Base\"})}),\", which they view as their centralized source of truth. All of their documentation exists within Lark, so they can use Lark's universal search to quickly find relevant items across the entire app. \\\"With Lark's collaborative tools, our GTM products launch a lot faster, and our team works faster. For instance, our Chinese engineers can automatically translate a document into English to dissect the information and put it in a simple to understand format so they can execute faster.\\\" \"]}),/*#__PURE__*/t(\"p\",{children:[\"Plus, with \",/*#__PURE__*/e(n,{href:\"https://www.larksuite.com/product/base?from=voromotorsstory\",motionChild:!0,nodeId:\"GL3H6ubFy\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"Lark Base\"})}),\", they can collaborate cross-departments with their repair team to find out the status of scooter repairs and what has been completed. They have built out graphs to track repair data in one dashboard that updates in real time and use Forms within Base as well to gather warranty information.\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"900\",src:\"https://framerusercontent.com/images/ElWhGSXEeBmDb8So1IiLYaN9Wg.png\",srcSet:\"https://framerusercontent.com/images/ElWhGSXEeBmDb8So1IiLYaN9Wg.png?scale-down-to=512 512w,https://framerusercontent.com/images/ElWhGSXEeBmDb8So1IiLYaN9Wg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ElWhGSXEeBmDb8So1IiLYaN9Wg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ElWhGSXEeBmDb8So1IiLYaN9Wg.png 2880w\",style:{aspectRatio:\"2880 / 1800\"},width:\"1440\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:'Moreover, when it comes to Voro Motors content creation, they store large media files on the cloud through Lark. \"One large benefit to Lark is being able to store large files, which is quite underappreciated. Any company that does production marketing and makes large video content for marketing will find it extremely useful ,\" says Melvin.'}),/*#__PURE__*/e(\"p\",{children:\"With Lark's integrations, they are also able to connect other tools, such as Google Calendar and Email, to make their work more flexible.\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"Streamlining employee management\"}),/*#__PURE__*/t(\"p\",{children:[\"Voro Motors employs Lark for onboarding new employees, utilizing its features for daily operations and standard operating procedures (SOP's) through \",/*#__PURE__*/e(n,{href:\"https://www.larksuite.com/en_us/product/creation?from=voromotorsstory\",motionChild:!0,nodeId:\"GL3H6ubFy\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"Lark documents\"})}),\". They also build out automation tools to manage their employees, such as for checklists, reminders, and scheduling.\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"678\",src:\"https://framerusercontent.com/images/bJzqRAVoc3FzoofaDQG5pzLqYvY.png\",srcSet:\"https://framerusercontent.com/images/bJzqRAVoc3FzoofaDQG5pzLqYvY.png?scale-down-to=512 512w,https://framerusercontent.com/images/bJzqRAVoc3FzoofaDQG5pzLqYvY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bJzqRAVoc3FzoofaDQG5pzLqYvY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bJzqRAVoc3FzoofaDQG5pzLqYvY.png 2468w\",style:{aspectRatio:\"2468 / 1356\"},width:\"1234\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:'Sheets, databases, and flow charts can even be embedded into Lark documents, so the document can serve as a rich media knowledge base for employees. \"The Base flow chart is amazing, and communicating the information in doc format is super easy. It allows us to communicate crucial processes. For instance, people can immediately understand what a finance approval process is like and act upon it immediately,\" says Melvin.'}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"617\",src:\"https://framerusercontent.com/images/V28iYIcJdob4NnpZ4ZxiuwwDcCs.png\",srcSet:\"https://framerusercontent.com/images/V28iYIcJdob4NnpZ4ZxiuwwDcCs.png?scale-down-to=1024 967w,https://framerusercontent.com/images/V28iYIcJdob4NnpZ4ZxiuwwDcCs.png 1166w\",style:{aspectRatio:\"1166 / 1234\"},width:\"583\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/t(\"p\",{children:[\"In addition, for internal approval use cases such as repairs, OOO approvals, travel expenses, and business transactions, they use \",/*#__PURE__*/e(n,{href:\"https://www.larksuite.com/en_us/product/approval?from=voromotorsstory\",motionChild:!0,nodeId:\"GL3H6ubFy\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"Lark Approvals\"})}),' to centralize all requests in one place. \"We use lark approvals a lot. Not just for approvals, but also time clock correction which we have preset templates for too. HR softwares like ADP, Paychex do not have a process for time clock correction, so that\\'s why Lark is super helpful. We highly recommend Lark as your go-to collaboration platform, especially if your team is dispersed.\"',/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"Interested in learning more about Voro Motors? \",/*#__PURE__*/e(n,{href:\"https://www.voromotors.com/\",motionChild:!0,nodeId:\"GL3H6ubFy\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"Check out their website\"})}),\"!\"]})]});export const richText10=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"Premiere Anti-Aging Co\u2019s rapid rise over the past decade meant that the company was always looking for a more scalable solution.\"}),/*#__PURE__*/e(\"p\",{children:\"Its existing collaboration suite was mainly comprised of siloed apps like Gsuite, Slack and WeChat, that required multiple logins, individual credentials and specialized upkeep, not to mention the subscription costs. This led to inefficiency and greater friction as the brand continued to scale across Japan and the region.\"}),/*#__PURE__*/e(\"p\",{children:\"Add to this an inability for most collaboration apps to work with teams in China, a major market for the company and it became evident to company management that this was a problem that needed to be solved.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Lark Advantage\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"590\",src:\"https://framerusercontent.com/images/EVq17VIl7T8Gf2fjj6L0F4YwcU.jpg\",srcSet:\"https://framerusercontent.com/images/EVq17VIl7T8Gf2fjj6L0F4YwcU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/EVq17VIl7T8Gf2fjj6L0F4YwcU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/EVq17VIl7T8Gf2fjj6L0F4YwcU.jpg 1180w\",style:{aspectRatio:\"1180 / 1180\"},width:\"590\"}),/*#__PURE__*/e(\"p\",{children:\"Premiere Anti-Aging Co was able to move key functions like chat and doc creation away from individual apps to Lark\u2019s unified platform.\"}),/*#__PURE__*/e(\"p\",{children:\"In particular Lark Docs was game changing for the company because of its ability to integrate directly with Lark Messenger, project management features like reminders as well as the ability to handle rich media like video and image files.\"}),/*#__PURE__*/e(\"p\",{children:\"The company inserts flowcharts and UML modules directly into docs making it a truly unified way to display information.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark Messenger also improved communication between teams with its simple-yet-powerful design that didn\u2019t require any specialized apps.\"}),/*#__PURE__*/e(\"p\",{children:\"Also, with Lark\u2019s ability to work cross-border, the team could do away with VPNs in order to collaborate with teams in China, improving regional communication immensely.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark has unified the company's communication and collaboration to one platform.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Man-hours saved thanks to a much more simplified software solution\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Better collaboration with regional teams\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Improved project management with rich Docs and Base.\"})})]})]});export const richText11=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"Prior to Lark, Desty made use of more siloed third-party collaboration solutions such as Whatsapp, Dingtalk and Slack. However, due to a lack of integration with other key tools, the team had to upkeep multiple applications for basic tasks, leading to greater inefficiencies.\"}),/*#__PURE__*/e(\"p\",{children:\"Another major pain point for Desty was in inter-office collaboration between the teams in China and Indonesia. Slack in particular was not very effective at cross-border collaboration, impeding growth and causing unnecessary friction.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Lark Advantage\"})}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(a,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/zzGLuFF4YkasKl1lrsW9/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(l,{...t,borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,isMixedBorderRadius:!1,isRed:!1,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=1vnVeEgTMhk\"})})}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s comprehensive suite of enterprise collaboration tools allowed Desty to unify all their collaboration and communications tasks in a single platform.\"}),/*#__PURE__*/e(\"p\",{children:\"Off the bat, Lark helped do away with the need for multiple collaboration apps for inter-office communication by working seamlessly across different geographies.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s open-platform design also helped to consolidate key business tools such as Google Drive, Trello and Google Analytics directly into Lark.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s video conferencing was also a highlight for the team as prior to Lark, Desty had to use a standalone solution.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s intuitive design also allows team members in Indonesia and China to better collaborate without needing VPN\u2019s or specialized translation software.\"}),/*#__PURE__*/e(\"p\",{children:\"Advanced Lark tools such as Lark Approval also helps the team automate key HR tasks.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"499\",src:\"https://framerusercontent.com/images/CUAGCMQYSRrkvHVuyrxPsUKgUs.jpg\",style:{aspectRatio:\"1002 / 998\"},width:\"501\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark allowed for far more efficient team communication\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater cost savings with a single piece of software to maintain\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater collaboration across regional teams\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Improved employee satisfaction with less time wastage.\"})}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Integrated video conferencing means that the team never has to leave the Lark ecosystem.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]})]});export const richText12=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"For core business functions, Heptaco relied on a mix of consumer and business applications such as WhatsApp, Slack and Trello and as the company started expanding faster, the inefficiencies created by these stand-alone tools started to become a hurdle that the company needed to address.\"}),/*#__PURE__*/e(\"p\",{children:\"To that extent, company management were on the search for a solution that not only brought everything under one roof but was modular, scalable and secure.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Lark Advantage\"})}),/*#__PURE__*/e(\"p\",{children:\"For Heptaco, Lark\u2019s Super App \u201CSatu Aplikasi\u201D or single application design, was an immediate advantage as it allowed the team to consolidate all key business communication and collaboration tools onto a single platform.\"}),/*#__PURE__*/t(\"ul\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(81, 86, 93)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"In particular, the team at Heptaco found Lark\u2019s Attendance and Approval features to be immensely helpful, cutting down the need for managers to manually keep track of such functions.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s powerful video conferencing also allowed the team to stay productive while working remotely especially with features like Magic Share.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"With Lark\u2019s powerful cloud storage drive, Heptaco was able to securely maintain and share important documents with remote teams.\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(a,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/zzGLuFF4YkasKl1lrsW9/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(l,{...t,borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,isMixedBorderRadius:!1,isRed:!1,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=5rI1BMe8hqY\"})})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Since moving to Lark\u2019s ecosystem of apps and communication modules, the company has been able to create greater value for customers\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Heptaco leadership were onboarded onto Lark and in less than a month, the whole company were full fledged Lark Users.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"All onboarding was done independently due to the ease of the platform.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Cost savings due to Lark having everything that the company needed\"})})]})]});export const richText13=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"As Pasarnow continued to grow, it started to need more than its fragmented ecosystem of collaboration and communication tools could provide.\"}),/*#__PURE__*/e(\"p\",{children:\"In particular, this fragmentation was having a negative impact on team efficiency as switching between apps, maintaining different software and onboarding new employees on multiple systems\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Lark Advantage\"})}),/*#__PURE__*/e(\"p\",{children:\"For Pasarnow, Lark\u2019s biggest plus point was the ability to take core business collaboration functions like chat, document storage, calendar organization and video chatting, all on one powerful platform.\"}),/*#__PURE__*/e(\"p\",{children:\"Pasarnow had relied on a variety of off-the-shelf communication and collaboration tools such as WhatsApp or Google Docs but none had the true all-in-one capabilities that Lark did.\"}),/*#__PURE__*/e(\"p\",{children:\"In particular, Lark\u2019s robust messenger feature, that allows for teams to seamlessly communicate on any platform with rich text, emojis, GIFs and more was a real winner for Pasarnow.\"}),/*#__PURE__*/e(\"p\",{children:\"MagicShare, Lark\u2019s powerful in-call document collaboration feature was also listed as a highlight for the company.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark has become the default communication and collaboration platform for the whole company.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark has allowed the Pasarnow team to work more efficiently with less fragmentation.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark has helped Pasarnow save time and money by integrating all needed services into one place\"})})]})]});export const richText14=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"In the beginning, Osakakuma relied on basic, off-the shelf communication platforms like WeChat that were not built for proper enterprise-grade collaboration and communication.\"}),/*#__PURE__*/e(\"p\",{children:\"In particular, WeChat was unable to handle the complex documentation and chat management that the growing Osakakuma team needed. Also, unlike Lark\u2019s global server footprint, other solutions the team tried had geographical restrictions, making communicating with regional teams a hassle.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Lark Advantage\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"518\",src:\"https://framerusercontent.com/images/Z3JTzz80PSdEi58Zq9qSkZRVko.jpg\",srcSet:\"https://framerusercontent.com/images/Z3JTzz80PSdEi58Zq9qSkZRVko.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Z3JTzz80PSdEi58Zq9qSkZRVko.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Z3JTzz80PSdEi58Zq9qSkZRVko.jpg 1410w\",style:{aspectRatio:\"1410 / 1036\"},width:\"705\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s comprehensive suite of enterprise collaboration tools allowed Osakakuma to unify all their collaboration and communications tasks in a single platform.\"}),/*#__PURE__*/e(\"p\",{children:\"Off the bat, Lark Messenger allowed company communication to be better organized with groups and these group discussions are able to propagate into effective outcomes through the use of Lark Docs.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s newly released Base project management feature has allowed the team at Osakakuma to better make use of internal resources by creating effective workflows with clear visibility across the organization.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark Flowchart was also highlighted as a winning feature with its ability to allow teams to collaborate in a brand new visual style on projects that benefit from such a method such as the developing of websites.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s intuitive design also allows team members in Singapore and China to better collaborate without needing VPN\u2019s or specialized translation software.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"468\",src:\"https://framerusercontent.com/images/fw26zmh4XgVdQcbXeWdTJiztq4.jpg\",srcSet:\"https://framerusercontent.com/images/fw26zmh4XgVdQcbXeWdTJiztq4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fw26zmh4XgVdQcbXeWdTJiztq4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fw26zmh4XgVdQcbXeWdTJiztq4.jpg 1412w\",style:{aspectRatio:\"1412 / 936\"},width:\"706\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark allowed for more mature, enabled professional communication.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater cost savings with a single piece of software to maintain\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater collaboration across regional teams\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Improved employee satisfaction with less time wastage.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"More organized workflows with advanced features like Lark Flowchart and Base.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Better collaboration with cross border teams\"})})]})]});export const richText15=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"Trend Express\u2019s core business involves cross-border facilitation with China where a lot of business tools are unable to meet the unique challenges of the Chinese digital ecosystem.\"}),/*#__PURE__*/e(\"p\",{children:\"This meant that the company had to employ multiple tools to overcome this hurdle creating large-scale inefficiencies and hampering communication.\"}),/*#__PURE__*/e(\"p\",{children:\"With the company\u2019s rapid expansion, these efficiencies started to become a hurdle that the company needed to address.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Lark Advantage\"})}),/*#__PURE__*/e(\"p\",{children:\"For Trend Express, Lark's robust communication modules like Messenger meant easier communication across geographical boundaries.\"}),/*#__PURE__*/e(\"p\",{children:\"Thanks to Lark\u2019s seamless connectivity, the Trend Express team in Tokyo was able to collaborate with the team in Shanghai without having to download and implement a variety of solutions.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s integrated Video Conferencing was especially useful to Trend Express\u2019s management.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s intuitive UI and future-forward design also meant that onboarding both internal and external stakeholders was easy.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Since moving to Lark\u2019s ecosystem of apps and communication modules, the company has been able to create a seamless collaborative for cross-border teams.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Trend Express was able to do away with the multitude of different apps it was using.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Significant man-hours saved\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Cost savings due to Lark having everything that the company needed\"})})]})]});export const richText16=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenges\"}),/*#__PURE__*/e(\"p\",{children:\"As Purple Ruler welcomed more students, the growth has led to more operational complexity and posed a risk to the student experience, which could ultimately drive them away.\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Navigating the virtual classroom\"}),\": Scheduling classes was complicated with students, parents, and tutors on different platforms, resulting in time slot confusion and a lack of proactive preparation. Student engagement might flatline due to delayed homework grading, which risked course satisfaction and student retention.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Elevating teaching excellence:\"}),\" With growing tutor numbers, Purple Ruler needed standard guidelines and tools for consistent and quality classes. This included accessible guidelines, student progress demonstrations, and tools to track student feedback and improvements.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Fragmented support, confused students: \"}),\"Communication with students used to span across calls, texts, and emails, leading to confusion and uncertainty about where to start for a new student. This created unnecessary stress for both students and the operations team, and compromised the learning experience.\"]})})]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"The Solution\"}),/*#__PURE__*/t(\"p\",{children:[\"Starting out on Lark for internal communication and class management, Purple Ruler further created a teaching management hub, providing seamless workflows where student onboarding and support, classroom engagement, and tutor management have been combined into one. \",/*#__PURE__*/e(\"strong\",{children:\"The power of this unified hub has been impressive: for example, Purple Ruler has reduced program onboarding time for state schools from 15 working days to just 5.\"})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:\"Tangible results, one class at a time\"}),/*#__PURE__*/e(\"p\",{children:\"To begin with, Lark Base automates class scheduling at scale, greatly reducing manual work. After a student signs up, the operations team can quickly match available tutors, assign time slots in bulk, and have the automated workflows create calendar invites for both the student and the tutor. Tutors and students can book their classes easily, and start preparing for classes proactively.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"311\",src:\"https://framerusercontent.com/images/vSUBmU35ONON5mHJdvMrRzFvLfE.gif\",srcSet:\"https://framerusercontent.com/images/vSUBmU35ONON5mHJdvMrRzFvLfE.gif?scale-down-to=512 512w,https://framerusercontent.com/images/vSUBmU35ONON5mHJdvMrRzFvLfE.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/vSUBmU35ONON5mHJdvMrRzFvLfE.gif 1920w\",style:{aspectRatio:\"1920 / 622\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:\"Within the same Base, the Purple Ruler team also streamlines post-class routines. After each class, students will be automatically reminded to fill in a feedback form, and tutors will receive feedback once a student submits it. This aids tutors in improving future classes and tracking student reactions, changes, and progress in a timely manner.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"384\",src:\"https://framerusercontent.com/images/Er6O8eCWWB4jFsHfLtME2UVOSk.png\",srcSet:\"https://framerusercontent.com/images/Er6O8eCWWB4jFsHfLtME2UVOSk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Er6O8eCWWB4jFsHfLtME2UVOSk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Er6O8eCWWB4jFsHfLtME2UVOSk.png 1280w\",style:{aspectRatio:\"1280 / 768\"},width:\"640\"}),/*#__PURE__*/e(\"p\",{children:\"Lark Base also automates homework submission for students, relieving tutors from manual messaging. Students will receive a reminder and use a submission form to attach their homework, which then centralizes collection and grading work in one place for tutors. The consolidated view of submissions allows tutors to identify patterns and provide targeted support for students who need extra assistance.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:\"Empower tutors to engage and retain students\"}),/*#__PURE__*/t(\"p\",{children:[\"As Purple Ruler grows, the team wants to ensure every tutor knows the recipe for teaching a great class. To achieve this, Purple Ruler leverages the Lark Workplace to build a custom portal for tutors. This portal centralizes company news, tutor handbooks, class information, and Q&A resources in one easy-to-access location. Tutors can navigate the portal anytime, allowing them to quickly get up to speed and prepare for their first class. \",/*#__PURE__*/e(\"strong\",{children:\"This hub also boosts Purple Ruler's operational efficiency by reducing manual communication with tutors by almost 85%.\"})]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"605\",src:\"https://framerusercontent.com/images/dBeQNr9LvIcmwrjn2xHI84JjBv8.gif\",srcSet:\"https://framerusercontent.com/images/dBeQNr9LvIcmwrjn2xHI84JjBv8.gif?scale-down-to=512 512w,https://framerusercontent.com/images/dBeQNr9LvIcmwrjn2xHI84JjBv8.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/dBeQNr9LvIcmwrjn2xHI84JjBv8.gif 1920w\",style:{aspectRatio:\"1920 / 1210\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:\"In addition to creative in-class tools like polls, whiteboards, and breakout rooms, Purple Ruler tutors can monitor student progress and plan targeted sessions within Lark Base, where tutors can generate performance dashboards for individual students. Using the dashboards, tutors can track student attendance and performance improvement over time, and identify potential downturns. This empowers tutors with insights to provide better support and improve student outcomes with a target.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1954\",src:\"https://framerusercontent.com/images/ZPayncld05zEir0VnoYYmTtU7s.png\",srcSet:\"https://framerusercontent.com/images/ZPayncld05zEir0VnoYYmTtU7s.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZPayncld05zEir0VnoYYmTtU7s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZPayncld05zEir0VnoYYmTtU7s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZPayncld05zEir0VnoYYmTtU7s.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/ZPayncld05zEir0VnoYYmTtU7s.png 7787w\",style:{aspectRatio:\"7787 / 3908\"},width:\"3893\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:\"Student support is within easy reach\"}),/*#__PURE__*/e(\"p\",{children:\"Effective student engagement requires more than just a virtual classroom and score cards. Behind-the-scenes efforts to prepare and motivate students are just as crucial to the success of a class. At Purple Ruler, the team uses Lark to streamline all communication between students, parents, and tutors. \"}),/*#__PURE__*/e(\"p\",{children:\"In addition to a dedicated student portal centralizing class materials, submissions, and guidelines, the operations team further enhances student support by creating dedicated group chats for each student on Lark. These group chats connect tutors, class managers, parents, and students, facilitating discussions and keeping everyone in sync. The chats also serve as a gateway for students to quickly access study materials, with online documents and performance tracking pinned as tabs in the chat.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"800\",src:\"https://framerusercontent.com/images/A1UdmKULbMDEtzI3YNkG06oDaz8.gif\",srcSet:\"https://framerusercontent.com/images/A1UdmKULbMDEtzI3YNkG06oDaz8.gif?scale-down-to=512 512w,https://framerusercontent.com/images/A1UdmKULbMDEtzI3YNkG06oDaz8.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/A1UdmKULbMDEtzI3YNkG06oDaz8.gif 1920w\",style:{aspectRatio:\"1920 / 1600\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"In conclusion, Lark empowers Purple Ruler with a streamlined solution for remote learning, where the company can consistently provide high-quality student support and class management, and elevate teaching quality with improved operational efficiency.\"})]});export const richText17=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"470\",src:\"https://framerusercontent.com/images/kezwRM55prNQbIACAXAG8RuLInA.jpg\",srcSet:\"https://framerusercontent.com/images/kezwRM55prNQbIACAXAG8RuLInA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kezwRM55prNQbIACAXAG8RuLInA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kezwRM55prNQbIACAXAG8RuLInA.jpg 1414w\",style:{aspectRatio:\"1414 / 940\"},width:\"707\"}),/*#__PURE__*/e(\"p\",{children:\"As a young company growing rapidly, Naisu used off-the shelf third-party team collaboration solutions at the start, but as the team started to grow took on more complex tasks, the current solutions proved cumbersome requiring separate apps, credential management and onboarding.\"}),/*#__PURE__*/e(\"p\",{children:\"This created inefficiencies that began to have a greater impact on Naisu\u2019s business as more time was spent switching between tools and managing different apps. In order to deal with this, Naisu\u2019s management was on the lookout for a brand-new collaboration solution that brought necessary business functions under one roof while at the same time offering the flexibility that the team needed.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Lark Advantage\"})}),/*#__PURE__*/e(\"p\",{children:\"With Lark, Naisu was able to combine key business collaborative functions under one roof, improving efficiency and saving man-hours.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s core feature set of robust chat, intuitive cloud docs and unlimited video calling meant that the team had, on any device, the ability to work unhindered.\"}),/*#__PURE__*/e(\"p\",{children:\"In particular, the team at Naisu lauded Lark\u2019s built-in universal translation function that allows for seamless in-app translation of text messages, documents and more into a variety of languages including English, Chinese, Thai and more.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s video conferencing as well was a key factor in Naisu\u2019s Lark experience, allowing the team to practice remote working while maintaining business continuity.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark has become the default communication and collaboration platform for the whole company.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark translate has allowed the team to better communicate with international stakeholders.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Increased productivity with no need for app switching or learning of new tools\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The digital workspace is a lot less cluttered\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Turnaround times for creative briefs and pitches were reduced\"})})]})]});export const richText18=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"Before moving to full time remote learning & working, The Narayana Group had used a variety of different software & apps like WhatsApp, Zoom, GSuite for email & online storage, 3rd party ticket resolution applications and some other project management tools to handle regular operations.\"}),/*#__PURE__*/e(\"p\",{children:\"While these tools worked to augment physical operations, they were insufficient in facilitating full remote operations. Having so many fragmented solutions proved to take significant man-hours to maintain, keep updated and made on-boarding more difficult. Security was also an issue that management wanted to be sure about.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Lark Advantage\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"470\",src:\"https://framerusercontent.com/images/fKw0kWzntbPZFx83FqELld4XQ.jpg\",srcSet:\"https://framerusercontent.com/images/fKw0kWzntbPZFx83FqELld4XQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fKw0kWzntbPZFx83FqELld4XQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fKw0kWzntbPZFx83FqELld4XQ.jpg 1410w\",style:{aspectRatio:\"1410 / 940\"},width:\"705\"}),/*#__PURE__*/e(\"p\",{children:\"For The Narayana Group, Lark\u2019s powerful collaboration and communication platform met management business goals by combining key business tools into one easy-yet-powerful platform.\"}),/*#__PURE__*/e(\"p\",{children:\"In particular, Lark Messenger has been a real winner for the company who have created hundreds of groups to handle the task of organizing tens of thousands of people.\"}),/*#__PURE__*/e(\"p\",{children:\"The company uses Audio Calls and Video meetings extensively and cloud-based Lark docs extensively to plan, track, review and meet various goals and objectives.\"}),/*#__PURE__*/e(\"p\",{children:\"The company has also started using the Service Desk application in Lark. It is an applet that lets our users create tickets pertaining to various departments to have their issues quickly resolved.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark has allowed The Narayana Group to remote work at scale.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Improved efficiency with less application fragmentation\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater security with Lark\u2019s enterprise-grade security\"})}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Lark Service Desk has improved customer service and turnaround speed.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]})]});export const richText19=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"UNISAN chiefly wanted to invest in a digital system not only to make teaching more effective but also improve the way staff was managed.\"}),/*#__PURE__*/e(\"p\",{children:\"To that extent, UNISAN was looking to monitor staff attendance remotely, having relied on a on-prem biometric scanner in the past.\"}),/*#__PURE__*/e(\"p\",{children:\"For students, UNISAN lacked a true online learning solution to schedule student activities, archive and share documents and allow for important announcements to be pushed straight to students.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Lark Advantage\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"384\",src:\"https://framerusercontent.com/images/zqu9IwXdcwaeBEpNagLBOMzHio.jpg\",srcSet:\"https://framerusercontent.com/images/zqu9IwXdcwaeBEpNagLBOMzHio.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zqu9IwXdcwaeBEpNagLBOMzHio.jpg 1024w\",style:{aspectRatio:\"1024 / 768\"},width:\"512\"}),/*#__PURE__*/e(\"p\",{children:\"With Lark\u2019s powerful array of features, UNISAN was able to digitize key staff admin processes and give students and teachers a way to bring the classroom experience anytime, anywhere.\"}),/*#__PURE__*/e(\"p\",{children:\"In particular, Lark\u2019s simple-yet-powerful Attendance and Approval features let staff clock-in and clock-out, manage things like leave claims and other admin tasks straight from their mobile devices, eschewing the need for biometric scanners or manual processes.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark Announcement was also highly praised as it allowed faculty to push important announcements and information straight to students in a way that was trackable.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark Drive was also very useful for UNISAN, allowing staff and students to easily archive and store large amounts of documents.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"UNISAN was able to make the shift to remote learning, seamlessly\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Better communication between students and teachers\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Better staff management thanks to Lark Approval and Lark Attendance\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater cost-savings with only one app to maintain\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark helped UNISAN achieve key digital transformation goals\"})})]})]});export const richText20=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"For institutes of medical education, the Coronavirus represents a unique challenge.\"}),/*#__PURE__*/e(\"p\",{children:\"On one hand, the students being trained would be an invaluable asset in combating the spread of the virus but on the other hand, many of the educators were medical professionals themselves who were needed at the frontlines.\"}),/*#__PURE__*/e(\"p\",{children:\"It thus become imperative for institutions like the Niigata College of Medical Technology to employ a solution that would allow for the organizing and distribution of vast amounts of teaching materials.\"}),/*#__PURE__*/e(\"p\",{children:\"In order to keep lessons running smoothly and to maintain social distancing, the institute also required a simple and powerful video conferencing solution that was primed for remote learning across multiple device types.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Lark Advantage\"})}),/*#__PURE__*/e(\"p\",{children:\"Thanks to Lark\u2019s powerful, unified communication & collaboration platform, the Niigata College of Medical Technology were able to successfully make the shift to remote lectures.\"}),/*#__PURE__*/e(\"p\",{children:\"In particular, Lark\u2019s Doc feature was praised for allowing educators to store, organize and disseminate a lot of training materials while at the same time allowing students a simple platform to complete and submit assignments in a private & secure environment.\"}),/*#__PURE__*/e(\"p\",{children:\"Also of note to the institute was Lark\u2019s powerful video conferencing solution which helped bring the classroom experience to students virtually thanks to innovations like Magic Share.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The Niigata College of Medical Technology was able to shift to remote learning, freeing up medical personnel to take their place on the frontlines.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"More efficient training sessions with Lark docs.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Quick uptake of Lark with no special training required to conduct training on the platform.\"})})]})]});export const richText21=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Introduction\"}),/*#__PURE__*/e(\"p\",{children:\"In the heart of Nairobi's Githurai 44 township lies an unlikely IT hub, run by Ahadi Wireless, a tech startup with a unique and ambitious mission. Despite being considered a no-go zone for many, Ahadi Wireless has been able to successfully establish itself in the digitally underserved community and provide affordable internet services to its residents. \"}),/*#__PURE__*/e(\"p\",{children:\"Through their three Konnect Hubs, Ahadi Wireless is building an expanded Wi-Fi broadband network to bridge the digital divide in the community and beyond. Their success story is a testament to the power of innovation and perseverance, and their choice to use Lark as their collaboration tool has been a key factor in their growth and success.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"The Challenge & Solution\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Inefficient information flow due to application toggling.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Technical and sales teams, who make up the majority of the taskforce, struggle to work on-the-go.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Cumbersome processes cause delays in reaching customers, lowering satisfaction level.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Challenges in engaging employees due to a decentralized HQ and multiple teams in different communities.\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:\"From Fragmented Systems to All-In-One Collaboration Solution\"}),/*#__PURE__*/e(\"p\",{children:\"Ahadi Wireless, like any other business, encountered a myriad of challenges that hindered their operations and progress. One of their major struggles was managing their team's collaboration efforts using multiple tools, which caused inefficiencies and delays in their work. Despite trying collaboration platforms like Basecamp, they still faced significant obstacles due to the lack of suitable chat tools for corporate communication. They then turned to Zoho Cliq as an alternative, which offered more of the necessary components such as mail and project management in one application. However, as the team grew larger, navigating the accumulated information in Zoho Cliq became a daunting task. \"}),/*#__PURE__*/e(\"p\",{children:\"Fortunately, their search for the ideal communication and collaboration platform led them to discover Lark, a solution that catered to all their needs by integrating all the essential features into one platform. This discovery proved to be a game-changer for Ahadi Wireless, making their work more efficient, and saving them time and effort.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:'\"Lark has many features that can cater to the different needs of various clients and companies,\" said Tiger Zhou, CEO of Ahadi Wireless. '})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:'\"For us, it is currently a productivity tool, but we know there are features that we can explore later on.\"'})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:\"One Tool For Back Office to Frontline: Hire Anywhere, Work Anytime with Lark\"}),/*#__PURE__*/e(\"p\",{children:\"As Ahadi Wireless expanded its operations, it encountered a major hurdle in the mobility of its employees. With majority of them working as installers and door-to-door salespeople, carrying laptops while on the move proved impractical. Also, given the company's mission to provide affordable internet services to underserved communities in Nairobi at a fraction of the market rate, Lark is a more viable solution.\"}),/*#__PURE__*/e(\"p\",{children:\"This move not only ensured effective communication and collaboration but also created job opportunities for individuals in the communities they served, including women. Another advantage was that most of the employees were young and already familiar with chat tools like WhatsApp, making it easy for them to adopt Lark as a work tool.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:'\"With Lark, anyone with a phone and internet can be hired by Ahadi Wireless and our employees can communicate with anyone from any community, regardless of their physical location\" - Johnstone, Director of Sales'})}),/*#__PURE__*/e(\"p\",{children:\"Currently, Ahadi Wireless provides its affordable internet services to eight large communities across Nairobi, which span an area of at least 30km\\xb2. As a result, the company operates on a virtual basis, with everyone practically working on the app. Managing issues on the ground can sometimes be a challenge, particularly when the manager or team leader cannot be present immediately on-site. \"}),/*#__PURE__*/e(\"p\",{children:\"To overcome this hurdle, the team relies on Lark meetings to collaboratively solve problems as if a senior manager were present and working alongside them, despite not being physically present. This feature has proven invaluable, enhancing team communication and productivity while ensuring that customer issues are addressed promptly.\"}),/*#__PURE__*/e(\"img\",{alt:\"ahadi wireless\",className:\"framer-image\",height:\"471\",src:\"https://framerusercontent.com/images/FDiCQHKlIZROexhNJ2qsA2fvZo.png\",style:{aspectRatio:\"1467 / 942\"},width:\"733\"}),/*#__PURE__*/e(\"p\",{children:\"Being on the move often also means incurring expenses for the team. Given that the majority of the team leads travel on motorbikes to the communities they serve, fuel expenses are a significant part of their work-related costs. \"}),/*#__PURE__*/e(\"p\",{children:\"Lark's Approval feature allows the employees to easily submit their fuel requests, and the admin manager can quickly review, approve, and reimburse the expenses via M-Pesa. This feature has made expense management a breeze for the team, allowing them to focus on providing excellent service to their clients without worrying about administrative tasks.\"}),/*#__PURE__*/e(\"img\",{alt:\"ahadi wireless\",className:\"framer-image\",height:\"271\",src:\"https://framerusercontent.com/images/9F0g2dKLl9afqA4UmfdIM4j0VqM.png\",style:{aspectRatio:\"976 / 543\"},width:\"488\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:'\"Lark serves as a reliable and indispensable assistant, as we rely on it daily for various tasks\" - Masira, Senior Engineering Lead'})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"From Cumbersome Processes to Happy Customers: Automated, Fast Workflows\"}),/*#__PURE__*/e(\"p\",{children:\"Satisfied customers also go beyond the installation process. With Lark, Ahadi Wireless could deliver comprehensive end-to-end customer service\u2013starting from registration to aftersales support. \"}),/*#__PURE__*/e(\"p\",{children:\"For instance, Ahadi Wireless requires users to generate a one-time code each time they complete a login, registration, or make a payment to ensure security. However, if the message fails to deliver from the company's system, customers are prompted to call the sales team for inquiries, which can be a slow process. \"}),/*#__PURE__*/e(\"p\",{children:\"To address this issue, Ahadi Wireless utilized Lark's ability to create new processes within the application and developed a bot that sales teams can use to request an SMS code. The bot links to their own database to check and automatically respond with the correct code, reducing response time and preventing database overload.\"}),/*#__PURE__*/e(\"img\",{alt:\"ahadi wireless\",className:\"framer-image\",height:\"546\",src:\"https://framerusercontent.com/images/Gg6B3Iw8woeIkuFgsIgoGwvG9M.png\",style:{aspectRatio:\"1354 / 1093\"},width:\"677\"}),/*#__PURE__*/e(\"p\",{children:\"With Lark, customers no longer need to wait for sales representatives to manually search for their one-time codes for every login or payment request, resulting in a significant decrease in inquiries. Moreover, the limited access to customer data ensures that sensitive information remains secure within a selected few.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:'\"We can create multiple bots for specific internal needs through the AI bot system, which is a great feature of Lark.\" - Maina, DevOps Team Leader'})}),/*#__PURE__*/e(\"p\",{children:\"And if there are any issues post-installation, the clients would usually contact their sales representative, who would then forward their request to the technical team in India previously. Unfortunately, this process resulted in many messages being lost in transit, leading to unresolved issues. Although the company tried to use Zendesk as a helpdesk solution, it was not effective as most of the seats were given to the customer support team rather than actual technical staff to solve problems. The approach was time-consuming, and requests were often directed to the wrong department, causing further delays.\"}),/*#__PURE__*/e(\"img\",{alt:\"ahadi wireless\",className:\"framer-image\",height:\"391\",src:\"https://framerusercontent.com/images/770dvL6ut2JkAPmd8D3AloAlM3A.png\",style:{aspectRatio:\"1100 / 783\"},width:\"550\"}),/*#__PURE__*/e(\"p\",{children:\"To overcome this challenge, Ahadi Wireless developed a mobile application and integrated it with Lark. When a customer submits an issue, it generates a problem ticket and links to the appropriate chat group. The application also determines the user's community by detecting their IP address. The problem then goes to the right community group, where staff can address the client's concerns directly. This Lark group would also comprise of a technical support team, sales team, and customer service team, allowing anyone to respond to the problem promptly. \"}),/*#__PURE__*/e(\"p\",{children:\"By using this approach, customers receive instant responses and solutions, and all messages are recorded in the company's database. The accumulated data can even be used to develop an AI or automated response system later on.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:\"From Dispersed to Connected Teams: Community and Culture Building\"}),/*#__PURE__*/e(\"p\",{children:\"Ahadi Wireless's decentralized structure has made it easy for their customers to get timely assistance, but there are some pain points associated with it, such as the challenge of connecting with employees and building a company culture. \"}),/*#__PURE__*/e(\"img\",{alt:\"ahadi wireless\",className:\"framer-image\",height:\"428\",src:\"https://framerusercontent.com/images/PUEjHIxkU9p1bvfUlII5n8UueBA.jpg\",style:{aspectRatio:\"1200 / 857\"},width:\"600\"}),/*#__PURE__*/e(\"p\",{children:\"To address this issue, the founder of the company has come up with several innovative solutions that leverage Lark's features. For instance, bi-weekly sessions called 'Roundtable with Kaka Tiger' are hosted on Lark where employees can participate and discuss various topics related to company culture and personal development. This approach not only helps build a sense of community and belonging among the team members but also provides potential hires with a glimpse of the company culture and values, making it more attractive to join Ahadi Wireless.\"}),/*#__PURE__*/e(\"img\",{alt:\"ahadi wireless\",className:\"framer-image\",height:\"391\",src:\"https://framerusercontent.com/images/zb3f7DIlv95miamIIyZSn0lJqD8.png\",style:{aspectRatio:\"1100 / 783\"},width:\"550\"}),/*#__PURE__*/e(\"p\",{children:\"Furthermore, an inspiration group was created on Lark to share ideas, videos, and images that serve as a morale booster for employees. This group helps keep the team members engaged and motivated, despite being geographically dispersed across the country. By leveraging Lark's features in this way, Ahadi Wireless has been able to create a strong sense of community and foster a positive work culture, even in a decentralized work environment.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:'\"Lark fosters an inclusive work environment where everyone can collaborate. We utilize groups for a variety of purposes, such as brainstorming, process improvement, and issue resolution. Lark enables and enhances this type of company culture. In a traditional African context, Lark exposes employees to a positive professional environment, and we have noticed significant improvements in employee behavior and performance over time.\" - Muriithi, General Operation Manager'})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"Ahadi Wireless' Commitment to People and Connectivity\"}),/*#__PURE__*/e(\"p\",{children:\"In conclusion, Ahadi Wireless recognizes that connectivity and people are at the heart of their business operations. The adoption of Lark has proven to be a significant step in keeping their employees connected while also enhancing their end-to-end processes to improve customer satisfaction. The company's success in addressing both internal and external challenges with the help of Lark highlights the value of collaborative tools in streamlining workflow and providing top-notch customer support. Ahadi Wireless appreciates the continuous improvement of Lark through user feedback and updates, and sees the potential for further growth and versatility in their service offerings. With Lark, Ahadi Wireless is poised to expand beyond its current IT services and continue to provide valuable services to its communities.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(a,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(o,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"High Quality\",url:\"https://www.youtube.com/watch?v=ODR4gVihC7A\"})})})]});export const richText22=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"India is a big place and as such, a big challenge for MPTA is in managing hundreds of team members and thousands of students across 6 states in India, all with different languages and cultural backgrounds, facilitating the need for a robust communication platform.\"}),/*#__PURE__*/e(\"p\",{children:\"With no unified system to manage mission critical tasks like attendance tracking and people movement, MPTA was resorting to a hodgepodge of third party systems, making it difficult to keep on top of things.\"}),/*#__PURE__*/e(\"p\",{children:\"Approvals was also a issue for MPTA as the lack of a unified system meant that approvals were normally done on paper, making it difficult for management to keep track of business needs.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Lark Advantage\"})}),/*#__PURE__*/e(\"p\",{children:\"For MPTA, Lark\u2019s robust messaging features meant that the team could stop using personal apps like WhatsApp for business communication.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s customizable attendance tracker allowed managers to keep track of staff straight from Lark\u2019s mobile app, leading to smoother team management and employee happiness.\"}),/*#__PURE__*/e(\"p\",{children:\"With Lark\u2019s approval plug-in, MPTA leadership had the ability to handle all sorts of approvals from budget requests to leave, letting the company save hundreds of man hours that would have been needed to create and catalogue paper forms.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark also provided MPTA with market-leading customer support, ensuring that the company and its vast network of partners could quickly master Lark\u2019s many features.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/e(\"p\",{children:\"The switch to Lark had immediate and dramatic effects for MPTA, allowing the company to streamline its entire communication ecosystem into a single platform.\"}),/*#__PURE__*/e(\"p\",{children:\"The use of personal apps such as WhatsApp for business communication stopped as the team moved to Lark for better security.\"}),/*#__PURE__*/e(\"p\",{children:\"The company even used Lark\u2019s open platform tools to create their own modules such as Advance Approval, Employee Referral, Offer Letter Roll Out and more specifically for use with their team.\"}),/*#__PURE__*/e(\"p\",{children:\"Overall, MPTA is heavily engaged with a variety of Lark\u2019s features with around 90 percent of Lark accounts on MPTA considered as extremely active.\"})]});export const richText23=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"In September of 2019, the haze in Riau's capital of Pekanbaru reached a record high of 700 PSI, shutting down schools and business across the province including the Universitas Islam Negeri Sultan Syarif Kasim Riau, a leading University in Pekanbaru that comprises 9 faculties and over 30,000 students. \"}),/*#__PURE__*/e(\"p\",{children:\"For Siti Ramadhani, a lecturer in the University's IT Faculty, finding an all in one solution that would allow her students to continue their studies online became a priority.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Lark Advantage\"})}),/*#__PURE__*/e(\"p\",{children:\"Siti first learnt of Lark through a fellow lecturer. The university\u2019s current communication systems with the students were basic at most \u2013 a mess of disconnected, basic applications and inefficient communication that severely hindered the ability of her students to collaborate and learn.\"}),/*#__PURE__*/e(\"p\",{children:\"As a result, students were facing problems working together on group projects and much time was spent wasted on searching for class materials or scheduling time.\"}),/*#__PURE__*/e(\"p\",{children:\"With its combination of rich communication modules including IM and mail, video conferencing, document creation and collaboration, online storage and a shared workspace, Lark was a breath of fresh air that ticked all of Siti's boxes.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/e(\"p\",{children:\"Within three days, the Lark team in Singapore worked with the Universitas Islam Negeri Sultan Syarif Kasim Riau to onboard all users onto Lark, empowering the students and teachers with the tools to make online learning as effective as it can possibly be.\"}),/*#__PURE__*/e(\"p\",{children:\"As a result of the switch to Lark, even on the most hazy days the university achieved 42 percent Student retention with half of them actively using Lark's calendar to organise their days and a third of them using docs to collaborate on projects and schoolwork.\"})]});export const richText24=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"With Malaysia\u2019s national lockdown rapidly approaching, Megatech Education needed to make the shift to remote learning.\"}),/*#__PURE__*/e(\"p\",{children:\"The tools employed by the organization then, mainly personal messaging apps, were unable to perform this task as they lacked important communication features.\"}),/*#__PURE__*/e(\"p\",{children:\"The lack of a shared cloud drive also meant that collaboration was very difficult.\"}),/*#__PURE__*/e(\"p\",{children:\"Furthermore, the timeframe to implement a fully-fleshed out remote learning solution was very short so any solution the institute picked had to be able to be implemented in a very short time.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Lark Advantage\"})}),/*#__PURE__*/e(\"p\",{children:\"With Lark, Megatech Education, was able to make the shift to remote learning, smoothly.\"}),/*#__PURE__*/e(\"p\",{children:\"In particular, Lark's combination of rich communication modules including messenger and video conferencing allowed students and educations to get on the same page.\"}),/*#__PURE__*/e(\"p\",{children:\"With Lark\u2019s Docs and cloud drive features, collaboration became easy and efficient.\"}),/*#__PURE__*/e(\"p\",{children:\"An easy-to-use user interface allowed new students to use Lark's powerful features without a complicated on-boarding process\"}),/*#__PURE__*/e(\"p\",{children:\"Lark also works as well on mobile as it does on desktop meaning that students can attend from anytime and on any device.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Megatech Education finished Lark onboarding in 3 days, bringing full remote learning to the school\u2019s hundreds of students.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"More efficient use of man-hours as educators and administrators can focus more on their core duties.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater cost savings.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater security and transparency\"})})]})]});export const richText25=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"To ensure that Stones2Milestones\u2019 team can handle such intricate stakeholder collaboration of teachers and parents, they needed a tool that was simple yet powerful and able to scale with the needs of a fast growing EdTech company. Their current state included the use of:\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Social messaging apps to communicate but these were too disconnected and kept little distinction between personal and professional communication \"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Multiple work tools which required complex on-boarding processes every semester or when a new teacher joined\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Lark Advantage\"})}),/*#__PURE__*/e(\"p\",{children:\"Stones2Milestones found Lark to be their ultimate collaboration tool suited towards their mission to create a nation of readers due to Lark's:\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Superior user-interface without the need for complex on-boarding\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ease of use through shortcuts and rich app integration\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Multi-device capabilities with Lark being built to be mobile first\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"All-in-one integrated docs which allowed for online storage\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Top-notch customer support\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Increased client happiness\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Teams are able to perform more complex tasks remotely\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Since switching to Lark, the team found greater efficiency and reduced the number of separate applications needed\"})})]})]});\nexport const __FramerMetadata__ = {\"exports\":{\"richText15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText23\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText24\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText20\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText25\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText21\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText18\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText22\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText19\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText4\":{\"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", "richText1", "Link", "motion", "richText2", "richText3", "ComponentPresetsConsumer", "t", "Youtube", "richText4", "richText5", "richText6", "richText7", "richText8", "richText9", "richText10", "richText11", "richText12", "richText13", "richText14", "richText15", "richText16", "richText17", "richText18", "richText19", "richText20", "richText21", "richText22", "richText23", "richText24", "richText25", "__FramerMetadata__"]
}
