{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js", "ssg:https://framerusercontent.com/modules/v9QyjB3Pg5jcU7INJjQW/6Oh6XDQRqHYxN6HI4OA1/GL3H6ubFy-5.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 a}from\"react/jsx-runtime\";import{ComponentPresetsConsumer as t,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\";export const richText=/*#__PURE__*/a(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__*/a(\"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(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\",children:a=>/*#__PURE__*/e(o,{...a,play:\"Off\",shouldMute:!0,thumbnail:\"High Quality\",url:\"https://www.youtube.com/watch?v=ODR4gVihC7A\"})})})]});export const richText1=/*#__PURE__*/a(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 richText2=/*#__PURE__*/a(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 richText3=/*#__PURE__*/a(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__*/a(\"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 richText4=/*#__PURE__*/a(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__*/a(\"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__*/a(\"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__*/a(\"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\"})})]})]});export const richText5=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"Ensuring that schools and other institutes of leaning evolve to meet an ever-changing world is of major important to a government organization like LLDIKTI9.\"}),/*#__PURE__*/e(\"p\",{children:\"The existing systems and methodologies in place did not allow for remote learning, digital classrooms or paperless lessons.\"}),/*#__PURE__*/e(\"p\",{children:\"Add to this the growing disruption due to the COVID pandemic, making the switch to digitized educational all the more urgent.\"}),/*#__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:\"Lark\u2019s fully featured remote learning suite was quick to implement through an initial pilot program encompassing 17 universities in the LLDIKTI9 system.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s in-built video conferencing feature was also of great value as it allowed teachers to record and share lessons easily with students\"}),/*#__PURE__*/e(\"p\",{children:\"By moving to Lark\u2019s cloud-based docs, students have also had an easier time with dealing with assignments and getting feedback.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark also greatly improved in-class learning by letting schools do away with manual paper-based systems.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The universities in the pilot program of LLDIKTI9 were 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:\"Less paper wastage due to the shift to digital\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Better collaboration between teachers and students.\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"In Partnership with:\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"50\",src:\"https://framerusercontent.com/images/G3gr2pcfXMJBxBYQ8CptpKMljd8.png\",style:{aspectRatio:\"334 / 100\"},width:\"167\"})]});export const richText6=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"As the pandemic started to gain steam across the Indonesian Archipelago, UNSULTRA tried a variety of different platforms including Zoom and Google Classroom but found these solutions lacking due to either exorbitant fees, a need to reconnect to video calls or an interface not best suited for classes with dozens of students across the 6 faculties of the University.\"}),/*#__PURE__*/e(\"p\",{children:\"These shortcomings aside the team also wanted a solution that could integrate seamlessly with existing LMS tools without adding to a software stack that was going to take a greater deal of manpower to manage.\"}),/*#__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:\"398\",src:\"https://framerusercontent.com/images/4D92I1BzJANANRthSnrzDpMlLs.jpg\",srcSet:\"https://framerusercontent.com/images/4D92I1BzJANANRthSnrzDpMlLs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4D92I1BzJANANRthSnrzDpMlLs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4D92I1BzJANANRthSnrzDpMlLs.jpg 1414w\",style:{aspectRatio:\"1414 / 796\"},width:\"707\"}),/*#__PURE__*/e(\"p\",{children:\"With Lark, UNSULTRA had an integrated collaboration and communications platform that contained all the functions needed for effective distance learning.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s powerful video conferencing feature allowed teachers and students to connect and with no limits on time and a smart VC interface that allows for multiple participants to be on screen at the same time\"}),/*#__PURE__*/e(\"p\",{children:\"Managing documents became a breeze with Lark Docs allowing students to collaborate on assignments without the hassle of uploading documents to the cloud.\"}),/*#__PURE__*/e(\"p\",{children:\"With Lark\u2019s open platform design, UNSULTRA\u2019s existing LMS applications could be easily integrated into Lark, allowing faculty and staff to continue using the apps they love.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark has become the primary tool for online lessons.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Increased staff and student happiness with a restoration of learning interactivity\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Enabled effective remote learning during COVID-19\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"UNSULTRA leadership is recommending Lark to other schools in the same district\"})})]})]});export const richText7=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"Making the shift to remote learning, especially for an institute as large as Fujieda Meisei was going to be a challenge. Doing it in time with national guidelines for closing schools was going to be a herculean task.\"}),/*#__PURE__*/e(\"p\",{children:\"This meant that speed, ease of use and the ability to work seamlessly across a variety of devices was a key requirement for the school.\"}),/*#__PURE__*/e(\"p\",{children:\"The school had little in the way of IT infrastructure for remote learning and the lack of a unified email and docs system meant that communication and collaboration amongst students and teachers needed to be improved.\"}),/*#__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:\"Lark\u2019s fully featured remote learning suite was quick to implement across campus and offered the same experience across a variety of platforms\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s in-built video conferencing feature was also of great value as it allowed teachers to record and share lessons easily with students\"}),/*#__PURE__*/e(\"p\",{children:\"By moving to Lark\u2019s cloud-based docs, students have also had an easier time with dealing with assignments and getting feedback.\"}),/*#__PURE__*/e(\"p\",{children:\"Fujieda Meisei management also appreciated the birds-eye view Lark provides when it comes to managing teachers and their interactions with students.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark also reduced the dependence on personal chat applications and SNS, improving security.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Fujieda Meisei was able to move to remote learning in time.\"})}),/*#__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:\"Less reliance on personal apps\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Increased transparency and security\"})})]})]});export const richText8=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/e(\"p\",{children:\"Dplus Intertrade Co has grown rapidly since its founding in 2004. The team now is over a 1000 strong with offices around the region.\\v\\vThis sort of scale makes efficient team collaboration essential, and the company\u2019s existing solutions were siloed, cumbersome and inefficient.\"}),/*#__PURE__*/e(\"p\",{children:\"Add to this the challenges of the pandemic and the switch to remote work and it was evident to management that the company would have to relook at how to use the latest in digital collaboration tools to continue growing.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"The Lark Advantage\"}),/*#__PURE__*/e(\"p\",{children:\"With Lark, Dplus Intertrade Co was able to truly bring all team collaboration needs under one roof, doing away with its existing collaboration software stack,\"}),/*#__PURE__*/e(\"p\",{children:\"With Lark being platform autonomous, it was now possible to create a unified chat platform for both office staff as well as staff on the frontlines.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s powerful video conferencing was also essential in creating business continuity during the company\u2019s remote work period.\"}),/*#__PURE__*/e(\"p\",{children:\"Special praise was reserved for Lark\u2019s open platform concept that allowed company leaders to integrate attendance tracking and personnel management, straight into Lark.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s Announcement feature has also become essential to the company, letting managers effectively ensure that key announcements are seen by all employees.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"The Result\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"341\",src:\"https://framerusercontent.com/images/dR47u9EdmuGhQtlb3MFku4e1qi4.jpg\",srcSet:\"https://framerusercontent.com/images/dR47u9EdmuGhQtlb3MFku4e1qi4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dR47u9EdmuGhQtlb3MFku4e1qi4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dR47u9EdmuGhQtlb3MFku4e1qi4.jpg 1412w\",style:{aspectRatio:\"1412 / 682\"},width:\"706\"}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark has improved efficiency across the board since being implemented.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark Attendance has saved hundreds of manhours by automating the entire process while also giving managers a better birds-eye view of people matters\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark Announcement has improved top-down communication\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s powerful communication features such as group chats and video conferencing have enabled the team to succeed while remote working.\"})})]})]});export const richText9=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"IO Esports has been growing quickly, expanding headcount and taking on more complex operations. Its current suite of team collaboration tools such as DingTalk and WhatsApp were too siloed.\\v\\vAs 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(\"img\",{alt:\"\",className:\"framer-image\",height:\"321\",src:\"https://framerusercontent.com/images/7cOEwSKydfjb25JOKIG0danzFPs.jpg\",srcSet:\"https://framerusercontent.com/images/7cOEwSKydfjb25JOKIG0danzFPs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7cOEwSKydfjb25JOKIG0danzFPs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7cOEwSKydfjb25JOKIG0danzFPs.jpg 1414w\",style:{aspectRatio:\"1414 / 642\"},width:\"707\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s comprehensive suite of enterprise collaboration tools allowed IO Esports to unify all their collaboration and communications tasks in a single platform.\"}),/*#__PURE__*/e(\"p\",{children:\"With just one powerful collaboration platform, the company could say goodbye to multiple licences, log-in credential and the extra steps on new employee onboarding.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark has also allowed for greater collaboration between regional teams allowing for easy communication through Lark Messenger and Video Conferencing.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark Approvals and Attendance have also improved efficiency, letting managers deal with administrative issues easily and with greater oversight.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater efficiency with only one collaboration and communication platform\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Processes that used to take weeks now take days\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater collaboration among regional teams\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater organizational transparency\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Man-hours saved through the automation of administrative tasks\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Took only 2 weeks to migrate the whole team on Lark\"})})]})]});export const richText10=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"Gariath Concepts has been growing quickly, expanding headcount and taking on more complex operations. Its current suite of team collaboration tools such as Microsoft Office 365 and WhatsApp were too siloed and did not include needed man management tools like approvals.\\v\\vFurthermore, as the team was remote working, they required a platform that would automate as much admin as possible while at the same time providing scalability to meet upcoming challenges.\"}),/*#__PURE__*/e(\"p\",{children:\"Company management also required a more robust top-down management, especially during remote working.\"}),/*#__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 Gariath Concepts, Lark\u2019s powerful 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__*/e(\"p\",{children:\"In particular, the team praised Lark\u2019s ability to help the company move towards a more functional structure, with proper hierarchies and lines of management. Lark Approvals played a big role in this by allowing for proper checks and balances.\\v\\vLark was also key to the team switching to remote working during the pandemic by allowing teams to stay connected and also allowing company management to keep oversight of important documents, tasks and processes that could be tracked straight from Lark.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Gariath Concepts has been able to do away with manual paper-based administration by switching to Lark.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Processes that used to take weeks now take days\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Enabled effective remote working\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater organizational transparency\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Far easier collaboration with external parties\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Better Task management\"})})]})]});export const richText11=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"Bren Esports has been growing quickly with a larger roster of teams as well as the admin staff needed to run operations.\"}),/*#__PURE__*/e(\"p\",{children:\"In the beginning, consumer-facing third party applications like FB Messenger, Gdrive and basic email were sufficient but 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:\"There was also the additional issue of these tools blurring the lines between personal and professional communication, something that company management was keen to deal with as the team switched to remote working.\"}),/*#__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:\"397\",src:\"https://framerusercontent.com/images/1D58zlltg4gMNemChiMdozkIsk.jpg\",srcSet:\"https://framerusercontent.com/images/1D58zlltg4gMNemChiMdozkIsk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1D58zlltg4gMNemChiMdozkIsk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1D58zlltg4gMNemChiMdozkIsk.jpg 1418w\",style:{aspectRatio:\"1418 / 794\"},width:\"709\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s comprehensive suite of enterprise collaboration tools allowed Bren Esports to unify all their collaboration and communications tasks in a single platform.\"}),/*#__PURE__*/e(\"p\",{children:\"With the whole team on Lark, Bren Esports could do away with using siloed consumer apps. This meant greater productivity with more streamlined professional communication with no distractions.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark has also allowed the team at Bren Esports to effectively remote work during the pandemic by allowing teams to have clearer lines of communication and better task management.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark Approvals and Attendance have also improved efficiency, letting managers deal with administrative issues easily and with greater oversight.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater efficiency with only one collaboration and communication platform\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Proper separation between personal and professional communication.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Bren Esports did not need to maintain multiple tools with multiple credentials\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater organizational transparency\"})}),/*#__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:\"Less paper wastage with the movement of admin processes to Lark\"})})]})]});export const richText12=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"For core business functions, Mineski Global relied on a mix of consumer and business applications for key tasks such as chat, video calling, approval and attendance tracking.\"}),/*#__PURE__*/e(\"p\",{children:\"As 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 Mineski Global, Lark\u2019s powerful 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__*/e(\"p\",{children:\"In particular, the team at Mineski Global were drawn to Lark\u2019s messenger, approval and attendance features, all integrated in one place, streamlining processes such as approvals from 1-2 weeks to less than a week,\"}),/*#__PURE__*/e(\"p\",{children:\"Moving away from third-party consumer communication platforms also allowed the team at Mineski Global to better separate the professional from the personal, leading to a better work-life balance.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"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\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Processes that used to take weeks now take days\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Better work-life balance for employees\"})}),/*#__PURE__*/a(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Lark is now Mineski Global\u2019s primary business communication and collaboration tool.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]})]});export const richText13=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"As Danamart continued to grow, its existing collaboration tech stack consisted of 6 to 7 siloed apps, each requiring individual log-in credentials and subscriptions to manage.\"}),/*#__PURE__*/e(\"p\",{children:\"This led to inefficiencies that would only worsen as the team grew larger. The company needed to be able to take its core collaboration functions such as chat, video calls, attendance, approvals, calendar organization and bring them on a singular platform that could work effectively on desktop or on mobile.\"}),/*#__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 Danamart, Lark\u2019s powerful collaboration and communication platform brought key business collaboration functions under one roof.\"}),/*#__PURE__*/e(\"p\",{children:\"From using 6 to 7 apps including Google Workplace, Zoom and others, Danamart now relies on Lark.\"}),/*#__PURE__*/e(\"p\",{children:\"In particular, Lark\u2019s flexible Approval feature has increased efficiency by doing away with more manual processes. Now, everything is trackable and consolidated.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark Calendar has also been a winner for Danamart, allowing the team to do away with more legacy software, like Outlook Calendar, for Lark\u2019s more streamlined mobile-friendly approach.\"}),/*#__PURE__*/e(\"p\",{children:\"Another huge plus for the team was the proper segmentation of messages. Prior to Lark, the team was using Whatsapp to communicate and ran into the issue of personal and professional messages appearing on the same platform. Lark messenger helps the team keep chats organized, accountable and efficient.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark is now the default communication platform for Danamart\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark Calendar has allowed the team to make better use of time\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Less man hours wasted managing and upkeeping multiple siloed apps\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Danamart has gone from using 6 apps for office collaboration to just using 1\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Apps that Lark has replaced include:\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Gsuite (productivity)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"WhatsApp (text chat)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Zoom (video conferencing)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"DocuSign (approval)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"GreatDay (attendance)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Tick Tick (task management)\"})})]})]});export const richText14=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"Since its inception in 2018, Grameen Nippon has been growing at a rapid pace, creating the need for a proper all-in-one collaboration platform that would help to unify key business functions.\"}),/*#__PURE__*/e(\"p\",{children:\"The system that the company was using at the time, Cybozu, was unable to meet Grameen Nippon\u2019s demands and a new platform that could be implemented with as little down time as possible was needed.\"}),/*#__PURE__*/e(\"p\",{children:\"The realities of COVID-19 also impacted the organization, putting a greater emphasis on online communication, especially video conferencing.\"}),/*#__PURE__*/e(\"p\",{children:\"There was also a greater need to facilitate the transfer and management of important documents.\"}),/*#__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:\"Lark helped to unify Grameen Nippon\u2019s various teams onto a single unified platform for more efficient communication.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s cost-effective business model allowed Grameen Nippon to scale the platform quickly across the business.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s Video Conferencing allowed the various Grameen center managers to hold meetings with stakeholders, especially from key target groups like single mothers.\"}),/*#__PURE__*/e(\"p\",{children:\"Through the use of Lark Docs, the organization and its partners are able to track and manage the massive amount of documentation and paperwork that a national microlending initiative requires.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Significant ICT cost savings as all the tools needed were bundled in one package\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Better communication between different teams\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark has become an integral pipeline in communicating with microfinance beneficiaries\"})})]})]});export const richText15=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"Ropis Corporate management tried a variety of off-the-shelf collaboration solutions including Whatsapp, Gsuite and WeTransfer but the siloed nature of these platforms required too much work to maintain.\"}),/*#__PURE__*/e(\"p\",{children:\"In particular, these solutions created miscommunication with employees as it was hard to separate personal and work messaging, not to mention that it was much harder for management to have a bird's eye view of key operations.\"}),/*#__PURE__*/e(\"p\",{children:\"To increase efficiency and to allow the team to coordinate more easily, a more centralized, feature rich collaboration platform that could perform the necessary functions such as chat, docs and more was needed.\"}),/*#__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:\"469\",src:\"https://framerusercontent.com/images/fed0k1Xlz8em0LNRQDPbPguWOMI.jpg\",srcSet:\"https://framerusercontent.com/images/fed0k1Xlz8em0LNRQDPbPguWOMI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fed0k1Xlz8em0LNRQDPbPguWOMI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fed0k1Xlz8em0LNRQDPbPguWOMI.jpg 1412w\",style:{aspectRatio:\"1412 / 938\"},width:\"706\"}),/*#__PURE__*/e(\"p\",{children:\"For Ropis Corporate, Lark\u2019s comprehensive suite of collaboration tools allowed the company to do away with existing siloed collaboration applications and go all in on the Lark ecosystem.\"}),/*#__PURE__*/e(\"p\",{children:\"In particular, Lark\u2019s core trifecta of chat, calendar and drive gave Ropis Corporate a huge boost in team efficiency and helped reduce the \u201Cchaos.\u201D\"}),/*#__PURE__*/e(\"p\",{children:\"Ropis Corporate also praised Lark\u2019s powerful video conferencing feature, letting the team better collaborate with employees in the field as well as enable more effective remote working during the pandemic.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s man-management features such as announcement and attendance was also of note for Ropis Corporate, allowing managers to keep track of key tasks and have a better overview on manpower resourcing.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"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:\"The initial chaos of collaboration when using off-the-shelf apps has been tamed.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Employees are able to communicate and collaborate with greater efficiency.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Enabled effective remote working\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ropis Corporate is able to handle key HR functions straight from Lark\"})})]})]});export const richText16=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"Waku found that their current slew of enterprise collaboration tools including Zoom, Asana and Gsuite were siloed and required different apps, different education and different credential management.\"}),/*#__PURE__*/e(\"p\",{children:\"They also wanted to move away from more consumer-facing chat applications such as WhatsApp to something more professional that could be used as a single source of truth.\"}),/*#__PURE__*/e(\"p\",{children:\"This was key as Waku management was looking to reduce instances of human error, miscommunication and the like.\"}),/*#__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:\"398\",src:\"https://framerusercontent.com/images/Gz6PiPR9O031thOoqgiOQlmkiA.jpg\",srcSet:\"https://framerusercontent.com/images/Gz6PiPR9O031thOoqgiOQlmkiA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Gz6PiPR9O031thOoqgiOQlmkiA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Gz6PiPR9O031thOoqgiOQlmkiA.jpg 1418w\",style:{aspectRatio:\"1418 / 796\"},width:\"709\"}),/*#__PURE__*/e(\"p\",{children:\"Lark was able to improve on key aspects of Waku\u2019s internal collaboration and communication process by becoming they company\u2019s main chat platform and single source of truth.\"}),/*#__PURE__*/e(\"p\",{children:\"Thanks to Lark Messenger, Waku was able to do away with using WhatsApp for office chat, allowing for more professional communication.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark Messenger also ensured that important messages were highlighted, and key information could be shared with individuals or groups.\"}),/*#__PURE__*/e(\"p\",{children:\"In particular, Waku\u2019s creative team enjoyed being able to send key creative media through chat without the data compression that so many other platforms have.\"}),/*#__PURE__*/e(\"p\",{children:\"Also, Lark\u2019s consumer-friendly design meant that on mobile or on PC, onboarding was quick, efficient and intuitive.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater collaboration among teams\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Better management oversight with Lark as the single source of truth\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Reduced human error due to missing chats or miscommunication\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"More efficient inter-departmental communication\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Employees are more organized\"})})]})]});export const richText17=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"Wanfan management tried a variety of off-the-shelf collaboration solutions including Whatsapp, Gsuite and Trello but the siloed nature of these platforms required too much work to maintain.\"}),/*#__PURE__*/e(\"p\",{children:\"In particular, managing a variety of different credentials and logins was difficult for such a lean team and as staff numbers increased, this slowed down employee onboarding.\"}),/*#__PURE__*/e(\"p\",{children:\"Managing staff that were mainly remote in cloud kitchens around Indonesia also meant that the company needed a solution that could be easily integrated through mobile to manage things like attendance and approvals.\"}),/*#__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:\"269\",src:\"https://framerusercontent.com/images/VWT6QPLPMEeiyoFdil8pLhZXkAI.jpg\",srcSet:\"https://framerusercontent.com/images/VWT6QPLPMEeiyoFdil8pLhZXkAI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VWT6QPLPMEeiyoFdil8pLhZXkAI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VWT6QPLPMEeiyoFdil8pLhZXkAI.jpg 1414w\",style:{aspectRatio:\"1414 / 538\"},width:\"707\"}),/*#__PURE__*/e(\"p\",{children:\"For Wanfan, Lark\u2019s comprehensive suite of collaboration tools allowed the company to do away with existing siloed collaboration applications and go all in on the Lark ecosystem.\"}),/*#__PURE__*/e(\"p\",{children:\"In particular, Lark helped Wanfan deal with its growing HR administration challenges by integrating a simple yet powerful attendance module, straight into Lark, allowing employees to clock in and clock out, giving management better oversight.\"}),/*#__PURE__*/e(\"p\",{children:\"Wanfan also praised Lark\u2019s task system which allowed staff in the office to keep track of key deliverables while never losing sight of the big picture.\"}),/*#__PURE__*/e(\"p\",{children:\"Unlike previous tools, Lark is a purely business tool, allowing management and staff to properly segment personal and professional communications.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"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:\"Employee management is simpler and more efficient\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Employees are able to communicate and collaborate with greater efficiency.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Enabled effective remote working\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater cost savings with only a single license to maintain\"})})]})]});export const richText18=/*#__PURE__*/a(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(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/vYIHSp44qmOgHgaaijWz/YouTube.js:Youtube\",children:a=>/*#__PURE__*/e(s,{...a,isRed:!0,play:\"Off\",shouldMute:!0,thumbnail:\"High Quality\",url:\"https://www.youtube.com/watch?v=CfEOjrRK0Qs\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"568\",src:\"https://framerusercontent.com/images/b10zb33vEtFyKdyn87qJrQgu6Yo.png\",srcSet:\"https://framerusercontent.com/images/b10zb33vEtFyKdyn87qJrQgu6Yo.png?scale-down-to=512 512w,https://framerusercontent.com/images/b10zb33vEtFyKdyn87qJrQgu6Yo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/b10zb33vEtFyKdyn87qJrQgu6Yo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/b10zb33vEtFyKdyn87qJrQgu6Yo.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/b10zb33vEtFyKdyn87qJrQgu6Yo.png 5112w\",style:{aspectRatio:\"5112 / 1136\"},width:\"2556\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"Toggling over 10 different digital tools, such as Google Drive, Trello, Notion, and more, The World of Illusions team felt things were all over the place. \"}),/*#__PURE__*/e(\"p\",{children:\"As the business expanded and the team grew, these apps could not scale to meet their needs and weren't optimized for efficient communication. For example, the management team used text message submissions and Telegram chat to manage maintenance and budget approvals, only to find out that they were unable to keep a track record of applications.\"}),/*#__PURE__*/e(\"p\",{children:'Furthermore, it became nearly impossible to analyze end-of-month revenue, organize marketing campaigns, manage PR budgets, or simply see everyone\\'s calendar without a centralized source of truth. \"The life before Lark was such a nightmare,\" says Margarita, \"The biggest challenge was to optimize day-to-day operations processes. It is really important to analyze data daily in this kind of business, but we are trapped in everything other than this.\"'}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Solution\"})}),/*#__PURE__*/e(\"p\",{children:'Instead of juggling multiple collaboration apps, the World of Illusions team now only uses one app for work now. \"I started searching for a tool which could organize my job and my employees\\' job to make us feel more productive,\" says Margarita, \"a tool which could organize our work and provide us with an all-in-one service. And Lark was that tool.\"'}),/*#__PURE__*/e(\"p\",{children:\"On Lark, the teams at The World of Illusions are able to access everything from one place, ranging from chat, video conference, approvals, tasks, to revenue insights. Across the company's three locations, each of them has dedicated group chats where local teams can stay focused, while still being able to connect with each other freely within the same app to share best practices and align on broader business goals.\\\"\"}),/*#__PURE__*/e(\"p\",{children:'\"Before Lark, it took two hours to get everything in one place, but with Lark, it takes just 15 to 20 minutes\" says Alina, Operations Manager at the World of Illusions.'}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"Stay updated, stay proactive\"}),/*#__PURE__*/e(\"p\",{children:\"Since the World of Illusions attractions span across different cities in the U.S., they have to effectively track their key business metrics like revenue, costs, and inventory data across all locations. To achieve this, they use Lark Base, their most heavily-used feature, to create a dashboard that displays real-time data in a simplified manner. World of Illusions can visualize revenue, costs, and inventory in real-time so they can make changes to operations immediately. \"}),/*#__PURE__*/e(\"p\",{children:\"Lark Base has the ability to aggregate budgets from multiple sources immediately and the flexibility to generate automated inventory reminders for employees. Employees in charge of each part can submit daily numbers through the form view of Lark Base, and the dashboard will update itself automatically. Now, the team can see the bigger picture of business performance and project growth accordingly.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1208\",src:\"https://framerusercontent.com/images/dK4ZTTRBHFOFdRMIDsfhoOfA4.png\",srcSet:\"https://framerusercontent.com/images/dK4ZTTRBHFOFdRMIDsfhoOfA4.png?scale-down-to=512 512w,https://framerusercontent.com/images/dK4ZTTRBHFOFdRMIDsfhoOfA4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dK4ZTTRBHFOFdRMIDsfhoOfA4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/dK4ZTTRBHFOFdRMIDsfhoOfA4.png 3318w\",style:{aspectRatio:\"3318 / 2416\"},width:\"1659\"}),/*#__PURE__*/e(\"h2\",{children:\"Automate daily routines\"}),/*#__PURE__*/e(\"p\",{children:\"Since implementing automation tools in Lark Base and Approvals, managers at World of Illusions no longer need to scroll through text messages to locate requests. Instead, they can quickly review any kind of approvals, be it vacation requests, reimbursements, or marketing tasks, within seconds. \"}),/*#__PURE__*/e(\"p\",{children:'The team can easily build approval workflows with the right approver assigned, and automatically send notifications upon submission for managers to review right within their chat. It now takes 75% less time for managers to review these reports. \"I really like the way that I\\'m getting all of the notifications through the chat for different kinds of tasks,\" says Alina, \"Our inventory problems just went away. Lark helps us run our entire business.\" '}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"624\",src:\"https://framerusercontent.com/images/LFoUwJIC0KLEyl9uxA9djkUVHRg.png\",srcSet:\"https://framerusercontent.com/images/LFoUwJIC0KLEyl9uxA9djkUVHRg.png?scale-down-to=1024 963w,https://framerusercontent.com/images/LFoUwJIC0KLEyl9uxA9djkUVHRg.png 1175w\",style:{aspectRatio:\"1175 / 1249\"},width:\"587\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"All employees and management leaders also create Lark tasks and to-do lists to manage their projects: by attaching a due date to each task, Lark can automatically remind each employee of their pending to-do's in the chat feed to ensure they are consistently meeting deadlines.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"Always in-stock\"}),/*#__PURE__*/e(\"p\",{children:'Inventory represents a key revenue stream for the Museum of Illusions, since magnets, souvenir photos, and plates for the \"Smash it\" experience are sold in large quantities. '}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"360\",src:\"https://framerusercontent.com/images/OeZpjFQbFzV4AEW7DKvWr06QNQ4.png\",srcSet:\"https://framerusercontent.com/images/OeZpjFQbFzV4AEW7DKvWr06QNQ4.png?scale-down-to=512 512w,https://framerusercontent.com/images/OeZpjFQbFzV4AEW7DKvWr06QNQ4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OeZpjFQbFzV4AEW7DKvWr06QNQ4.png 1280w\",style:{aspectRatio:\"1280 / 720\"},width:\"640\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"The business now uses Lark Base's automated workflows to track the inventory and destruction of plates that occur on a daily basis within the plate smashing experience at the museum. \"}),/*#__PURE__*/e(\"p\",{children:\"Beforehand, employees would frequently forget to add plates and track quantities sold. Now, with Lark, employees receive a recurring reminder every two hours to add plate counts. They use Base to easily record the latest counts, add new plates, and create formulas to calculate the total automatically based on the inputs. Customers no longer need to wait and managers get the most up-to-date view on inventory stock.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"636\",src:\"https://framerusercontent.com/images/FN2H5nlzKn6nFwjYP6H6Wz7OHQI.png\",srcSet:\"https://framerusercontent.com/images/FN2H5nlzKn6nFwjYP6H6Wz7OHQI.png?scale-down-to=1024 963w,https://framerusercontent.com/images/FN2H5nlzKn6nFwjYP6H6Wz7OHQI.png 1198w\",style:{aspectRatio:\"1198 / 1273\"},width:\"599\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"By leveraging Lark Base for inventory management, the team at World of Illusions has been able to reduce inventory out-of-stock rates by 20%, leading to increased revenue.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"Improve employee engagement\"}),/*#__PURE__*/e(\"p\",{children:\"The World of Illusions team is mostly international, coming from diverse backgrounds and cultures. By using Lark, every employee is able to gain access to a well-organized Wiki to help them learn about the business, their roles, and more in the same place on the first day. For teammates working on the frontline, all documents and chats are easily accessible on their phones, helping them get onboard quickly during busy work schedules.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"360\",src:\"https://framerusercontent.com/images/vZ9Lpm5XKraYEcxNm4UrCnjRA.png\",srcSet:\"https://framerusercontent.com/images/vZ9Lpm5XKraYEcxNm4UrCnjRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/vZ9Lpm5XKraYEcxNm4UrCnjRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vZ9Lpm5XKraYEcxNm4UrCnjRA.png 1280w\",style:{aspectRatio:\"1280 / 720\"},width:\"640\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"In addition, employees can directly access meeting minutes, chat histories, and other useful information from Lark to help them catch up quickly without worrying about missing any important conversations. To enhance the experience further, everyone can view chats, documents, meetings, and meeting minutes in their preferred language, using Lark's built-in auto-translation.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"304\",src:\"https://framerusercontent.com/images/EKqKPdYrk1KJWxIg50CiyAmXo.png\",srcSet:\"https://framerusercontent.com/images/EKqKPdYrk1KJWxIg50CiyAmXo.png?scale-down-to=512 512w,https://framerusercontent.com/images/EKqKPdYrk1KJWxIg50CiyAmXo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EKqKPdYrk1KJWxIg50CiyAmXo.png 1280w\",style:{aspectRatio:\"1280 / 608\"},width:\"640\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Margarita and the team at The World of Illusions are able to fuel the business with efficiency, thanks to Lark's customer success team, who provide thorough assistance in implementing inventory management, budget and revenue management, employee engagement, and more. \"}),/*#__PURE__*/e(\"p\",{children:'\"The customer success team is my lifesaver.\" says Margarita, \"Every single ask I\\'ve mentioned was 100% fulfilled. By signing a Lark contract, we feel we are not buying just the tool itself, but also the whole partnership experience.\"'}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"360\",src:\"https://framerusercontent.com/images/kPhcwmbW1rrTQlXIQWBPZYrrxJI.png\",srcSet:\"https://framerusercontent.com/images/kPhcwmbW1rrTQlXIQWBPZYrrxJI.png?scale-down-to=512 512w,https://framerusercontent.com/images/kPhcwmbW1rrTQlXIQWBPZYrrxJI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kPhcwmbW1rrTQlXIQWBPZYrrxJI.png 1280w\",style:{aspectRatio:\"1280 / 720\"},width:\"640\"})]});export const richText19=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/e(\"p\",{children:\"As Ramssol Group grows at a fast pace into new markets, more applications are being used to cater business needs.\"}),/*#__PURE__*/e(\"p\",{children:\"The company also needed a powerful paltform to connect essential third party applications\"}),/*#__PURE__*/e(\"p\",{children:\"These issues were heightened when the Covid-19 pandemic caused disruptions across the workforce. The company needed an interconnected platform to keep a virtual office running and create a solid work from home experience for employees across the different regions.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"The Lark Advantage\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s fully featured all-in-one collaboration suite meant that Ramssol Group could say goodbye to the plethora of stand-alone applications that the company was using.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s powerful mobile application and robust cloud collaboration features allowed Ramssol Group to embrace and thrive during remote-work periods.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s cloud platform is infinitely scalable, allowing Ramssol Group to continue growing without having to worry about IT requirements.\"}),/*#__PURE__*/e(\"p\",{children:\"The Ramssol Group team was also able to use Lark Video Conferencing to stay connected at all times.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"The Result\"}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark has become main communication platform for team discussion, file sharing, time management and video conferencing\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark is used across regional offices\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Increased efficiency across the company\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The company was able to adopt remote working practices\"})})]})]});export const richText20=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/e(\"p\",{children:\"As a young company started by industry veterans, the company\u2019s founder wanted to quickly establish a digital collaboration and communication platform. In particular, company management wanted to avoid using multiple individual platforms that would require managing a variety of subscriptions, credentials and the like.\"}),/*#__PURE__*/e(\"p\",{children:\"After testing a variety of collaboration platforms, nothing really gelled for the team due to reasons like a non-conducive UI in the case of slack or added costs such as with Workplace.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"The Lark Advantage\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s comprehensive suite enterprise-grade collaboration tools allowed The Talent Shark to unify all their collaboration and communications tasks in a single platform.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark has become the default communications platform for the company. Lark Messenger, especially Lark Groups allows the company to keep chat channels productive and organized while Lark Video Conferencing allows the team to communicate from anywhere.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s generous cloud storage also allows the team to store and keep track of important documents while Lark Docs allows the team to collaborate within a shared space.\"}),/*#__PURE__*/e(\"p\",{children:\"In particular, the team praised Lark Mail for its ability to easily create and manage multiple accounts.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"The Result\"}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Much greater efficiencies, even for small teams\"})}),/*#__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:\"Easier scalability as the company rapidly grows and acquires new clients.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Better organization of messaging with Lark Groups.\"})})]})]});export const richText21=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Challenge\"}),/*#__PURE__*/e(\"p\",{children:\"As a boutique Human Resources agency, Gateway Search has to keep ahead of changing trends in the digital economy. The need to be agile, to be able to pivot is far more important than much larger agencies that have the benefit of scale.\"}),/*#__PURE__*/e(\"p\",{children:\"In order to handle the myriad processes behind this, Gateway Search had to use a variety of disconnected tools. This led to fragmentation as stakeholders had to be proficient in a wide array of separate tools.\"}),/*#__PURE__*/e(\"p\",{children:\"Another big issue was the lack of a centralized system to store, catalogue and access the vast amounts of resumes that the company had on file.\"}),/*#__PURE__*/e(\"p\",{children:\"Add to this the lack of a proper attendance management system to manage employees while managers were off visiting clients and it was apparent to senior management that finding an all-on-one collaboration tool that is compatible with existing systems, scalable and simple to use was of the utmost importance.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"The Lark Advantage\"}),/*#__PURE__*/e(\"p\",{children:\"For Gateway Search, Lark offered a best-of-all-worlds platform that was well priced and scalable, empowering the team to do more.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s robust Drive feature created a hub for Gateway Search to make the most of the vast amounts of resumes that the company had on file, making it instantly searchable and actionable.\"}),/*#__PURE__*/e(\"p\",{children:\"\u200BLark\u2019s core communication module became a godsend for the company, allowing the company to eschew external communication apps and instead moving all communication, internal or external, in desktop or mobile onto Lark\u2019s unified platform.\"}),/*#__PURE__*/e(\"p\",{children:\"Another key pain point, attendance management, was dealt with thanks to a variety of different people management tools available among the hundreds of apps on Lark\u2019s in-built app store. The attendance management module is built right into Lark, be it mobile or desktop, and offers helpful bots and tracking features that are completely scalable.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"The Result\"}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The Gateway Search has been using Lark for a while now and report not only greater collaboration between teams but also in customer satisfaction.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s robust Docs system has in particular been a real winner for Gateway Search and the company has been making use of the feature in truly innovative ways to get the most out of each candidate and resume.\"})})]})]});export const richText22=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"As a company founded to meet the logistics needs of E-commerce platforms, Seryu Cargo needed a powerful, mobile-friendly application that could let office staff communicate and collaborate while at the same time, automating rote admin work for drivers.\"}),/*#__PURE__*/e(\"p\",{children:\"The company\u2019s existing tools such as WhatsApp and Gsuite were unable to meet these needs as they were standalone solutions that required specialized training and management of individual platforms.\"}),/*#__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:\"287\",src:\"https://framerusercontent.com/images/rrVoLiSBTowdgGwIu6IeYuy7Js.jpg\",srcSet:\"https://framerusercontent.com/images/rrVoLiSBTowdgGwIu6IeYuy7Js.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rrVoLiSBTowdgGwIu6IeYuy7Js.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rrVoLiSBTowdgGwIu6IeYuy7Js.jpg 1414w\",style:{aspectRatio:\"1414 / 574\"},width:\"707\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s comprehensive suite of enterprise collaboration tools has allowed Seryu Cargo to enhance communication, collaboration and efficiency for works in the office and in the field.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s powerful approval and attendance tools allow drivers on the road to quickly update the main office of their status, allowing for better deployment of resources.\"}),/*#__PURE__*/e(\"p\",{children:\"Also, Lark\u2019s ability to be a single source of truth through tracked documents, unlimited chat history and more allowed for far greater management oversight.\"}),/*#__PURE__*/e(\"p\",{children:\"With Lark, Seryu Cargo\u2019s back office of nearly 40 had the tools they needed to communicate across teams, collaborate on documents and improve on existing manual processes.\"}),/*#__PURE__*/e(\"p\",{children:\"Thanks to Lark, the company no longer needed to keep track of multiple software credentials, maintenance schedules and subscription fees, allowing for a far smoother workflow.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater efficiency and improved team collaboration through unified collaboration tools.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Better management oversight of key tasks\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"More impactful separation of professional and personal communications\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Better collaboration between office and drivers on the road\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater cost savings with only a single solution to deal with\"})})]})]});export const richText23=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"Initially, Mission To The Moon used more consumer-facing applications such as LINE for communication and Google Drive for document creation and storage.\"}),/*#__PURE__*/e(\"p\",{children:\"However, as the company continued to grow, these siloed tools were creating inefficiencies with multiple logins and no way to properly track messages and deliverables.\"}),/*#__PURE__*/e(\"p\",{children:\"There was also the additional issue of these tools blurring the lines between personal and professional communication, something that company management was keen to deal with as the team switched to remote working.\"}),/*#__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:\"530\",src:\"https://framerusercontent.com/images/auLpc8C8hYSFpKaqg1e3ceV60M.jpg\",srcSet:\"https://framerusercontent.com/images/auLpc8C8hYSFpKaqg1e3ceV60M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/auLpc8C8hYSFpKaqg1e3ceV60M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/auLpc8C8hYSFpKaqg1e3ceV60M.jpg 1412w\",style:{aspectRatio:\"1412 / 1060\"},width:\"706\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s comprehensive suite of enterprise collaboration tools has allowed Mission To The Moon to unify team communication tasks in a single powerful platform.\"}),/*#__PURE__*/e(\"p\",{children:\"In particular, thanks to Lark bringing key communication tools like chat and video conferencing in one platform, teams were able to collaborate better while at the same time giving management better oversight.\"}),/*#__PURE__*/e(\"p\",{children:\"Mission To The Moon also praised Lark\u2019s universal Search function that allows users to find contacts, documents, chat groups or anything under the sun just by typing relevant keywords into the always-present search bar.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s UX and UI, designed to be familiar to anyone using mobile consumer applications also received special mention for being easy to understand and navigate.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"No need for multiple apps for basic tasks\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Allowed for seamless remote working\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater efficiency and improved team collaboration through unified collaboration tools.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Better management oversight of key tasks\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"More impactful separation of professional and personal communications\"})})]})]});export const richText24=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"In the beginning, KlikDokter used a lot of off-the-shelf third-party communication and collaboration tools like WhatsApp and Gsuite.\"}),/*#__PURE__*/e(\"p\",{children:\"As the company continued to grow to offer more services across more communities, there came the need to coordinate more efficiently with teams across the value chain.\"}),/*#__PURE__*/e(\"p\",{children:\"Add to this the unique challenges of the pandemic driving 95% of KlikDokter\u2019s staff to work from home and it became evident to company management that a more effective workforce collaboration and communication platform was 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:\"For KlikDokter, Lark\u2019s comprehensive suite of collaboration tools allowed the company to engage better with internal stakeholders across the value chain.\"}),/*#__PURE__*/e(\"p\",{children:\"In particular, Lark\u2019s all in one design meant that remote work could be conducted with none of the usual drawbacks.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark brought a dynamism to the team that older, first generation collaboration apps could not achieve.\"}),/*#__PURE__*/e(\"p\",{children:\"KlikDokter\u2019s teams, especially those out in the field were able to use Lark\u2019s messenger and video conferencing features to work closer with other teams.\"}),/*#__PURE__*/e(\"p\",{children:\"The company has since expanded to use more advanced lark features such as Approvals.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"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:\"Remote workers are able to collaborate better, especially when in the field.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"KlikDokter uses Lark\u2019s Google Analytics Connecter to engage better with their customers.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark Approvals has helped the company shave off significant man hours and improve efficiency.\"})})]})]});export const richText25=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"While the organization used a suite of tools such as Zoom and Google Workspace, these were more for communicating with external parties.\"}),/*#__PURE__*/e(\"p\",{children:\"Management wanted a solution that would be specifically for internal communication to maximize efficiency.\"}),/*#__PURE__*/e(\"p\",{children:\"This need for a new system of work was compounded when the pandemic forced Malaysia into lockdown, which meant that whatever solution MTSFB chose, would have to also enable effective remote working.\"}),/*#__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:\"471\",src:\"https://framerusercontent.com/images/LwcuHnhV2lbkhxDfQWt6tQy5iE.jpg\",srcSet:\"https://framerusercontent.com/images/LwcuHnhV2lbkhxDfQWt6tQy5iE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LwcuHnhV2lbkhxDfQWt6tQy5iE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LwcuHnhV2lbkhxDfQWt6tQy5iE.jpg 1414w\",style:{aspectRatio:\"1414 / 942\"},width:\"707\"}),/*#__PURE__*/e(\"p\",{children:\"For MTSFB, 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:\"The team lauded many features that helped internal communication and collaboration such as Lark Approval that helped digitize manual process such as leave application and claims.\"}),/*#__PURE__*/e(\"p\",{children:\"For internal communications, Lark is the default application with teams communicating through Lark Messenger and Lark Video Conferencing.\"}),/*#__PURE__*/e(\"p\",{children:\"The Lark mobile app, which give you the same features as the desktop version, was also praised, allowing the team to have access to key tasks and services at their fingertips.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Much greater efficiencies, even for small teams\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"No more manual applications\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"More connected teams\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark enabled full remote working for MTSFB\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark Messenger allowed for better oversight of key tasks\"})})]})]});export const richText26=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"Prior to the biggest work-from-home experiment of our time, Vulcan Post was no stranger to digital collaboration tools, long using them for cross-team collaboration between writers on assignment, management, and more.\"}),/*#__PURE__*/e(\"p\",{children:\"However, they often relied on different tools for different methods of communication - using different platforms to make calls, chat, share files and more. Outside of switching back and forth between platforms, they found the previous tools to be clunky and the search functions weren't as sophisticated as they would have expected. Due to these platforms' lack of integrative features, frequent application lag, and uninspired interfaces, the Vulcan Post team found that their subscription models often weren't worth the hefty price tag.\"}),/*#__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 Vulcan Post, having one tool to support all their needs made work more enjoyable. Instead of navigating between the application and the browsers, Lark's features are integrated into one single platform, removing the hassle of switching apps or tabs.\"}),/*#__PURE__*/e(\"p\",{children:\"Price-wise, Vulcan Post was impressed by Lark's unlimited video conferencing minutes that accommodated up to 350 participants, 200GB cloud storage, and 500GB email storage - enough for the entire company. As Vulcan Post scales its business in Malaysia, the team noted they would consider upgrading to the Enterprise version to meet the needs of a bigger organization in the future.\"}),/*#__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 Vulcan Post editorial team was so impressed with Lark, the company's Managing Director migrated the whole Malaysia business to the platform.\"}),/*#__PURE__*/e(\"p\",{children:\"In its review, Vulcan Post touted Lark as a powerful collaboration platform that it believed many enterprises would enjoy. With Lark's cost-effective price point, seamless integration, fast speed and stable video chats, the company won't be switching to another platform anytime soon.\"})]});export const richText27=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"As the Covid-19 Pandemic started to impact India, critical supply chains like medication had to be protected with more advanced technological solutions. Ajanta Pharma has been looking to uplevel their communication with field and staff, which was inefficient with legacy tools back then.\"}),/*#__PURE__*/e(\"p\",{children:\"The company also needed to create an easily accessible database of information for field staff as well as more advanced features such as the ability to check inventory on-the-go.\"}),/*#__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:\"Lark\u2019s comprehensive suite of enterprise collaboration tools allowed Ajanta Pharma to keep collaborating, in the face of a global pandemic.\"}),/*#__PURE__*/e(\"p\",{children:\"The company relies on Lark\u2019s powerful video conferencing solution to keep connected from any location and on any platform.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark Docs integration with video conferencing also allowed company leaders to keep track of tasks and improve sharing during these sessions. These docs are then used as a single source of truth for collaborative work.\"}),/*#__PURE__*/e(\"p\",{children:\"Ajanta Pharma has also taken advantage of Lark\u2019s Help Desk feature to create a database of frequently asked questions and key fact points so that sales staff in the field can quickly answer queries and stay on top of customer needs.\"}),/*#__PURE__*/e(\"p\",{children:\"Ajanta Pharma has also gone a step above by using Lark\u2019s Distribution Bot feature by linking it with their in-house inventory system to allow field staff to quickly check on stock and inventory.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark has allowed Ajanta Pharma\u2019s staff to keep collaborating while remote working\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark Docs has made meetings far more efficient\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Field sales reps are empowered with better information delivered instantly via Help Desk\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark Distribution Bot has improved customer relations with simple one click updating of inventory\"})})]})]});export const richText28=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"Initially Ensure Communication used Meta Workplace for their collaboration needs but felt that the interface was difficult to navigate and required a lot of staff training.\"}),/*#__PURE__*/e(\"p\",{children:\"There was also the issue of Workplace being a walled-garden setup which made collaboration with third-party stakeholders difficult.\"}),/*#__PURE__*/e(\"p\",{children:\"Company management also felt that these tools blurring the lines between personal and professional communication, something that company management was keen to deal with as the team switched to remote working.\"}),/*#__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:\"Lark\u2019s comprehensive suite of enterprise collaboration tools has allowed Ensure Communication to unify team communication tasks in a single powerful platform.\"}),/*#__PURE__*/e(\"p\",{children:\"In particular, thanks to Lark bringing key communication tools like chat and video conferencing in one platform, teams were able to collaborate better while at the same time giving management better oversight.\"}),/*#__PURE__*/e(\"p\",{children:\"Ensure Communication also praised the fluidity of Lark\u2019s open platform with connectors for tools like Trello allowing teams to keep using the tools they love, within their unique Lark experience. Team management and automation tools like Approval and Attendance were also very effective.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s UX and UI, designed to be familiar to anyone using mobile consumer applications also received special mention for being easy to understand and navigate.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater efficiency and improved team collaboration through unified collaboration tools.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Better management oversight of key tasks\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"More impactful separation of professional and personal communications\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Easier onboarding with a much more friendly UI and UX\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Better separation between professional and personal communication tools\"})})]})]});export const richText29=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"Despite being a global company, Robert Half Japan experienced a lack of coordinated work flows and highly manual processes that resulted from:\"}),/*#__PURE__*/a(\"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:\"Disconnected work tools such as separate chat apps and document creation software that were not mobile friendly\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Manual calendar and room booking processes that were handwritten\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lack of a centralized storage system which led to great losses in man hours spent searching and updating important documents\"})})]}),/*#__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:\"Lark offered a powerful, team-centric platform that suited Robert Half Japan's needs of:\"}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Well-priced and scalable. Lark's easy to use platform enabled the whole company to be on-boarded on their own and everyone was able to get started right away\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A centralized online drive for documents, presentations, data, and large files\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A mobile-friendly cloud based document creation platform that encourages real-time collaboration and supports tables, to-do-lists and polls\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark's auto-translation feature further assisted the Robert Half team to translate chats and documents in real-time without relying on third-party translators\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Marked cost savings\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater efficiency in remote working\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Reported higher rates of team work and collaboration between different departments\"})})]})]});export const richText30=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"Prior to using Lark, Transcosmos used silo-ed enterprise collaboration tools including Zoom, Whatsapp and Gsuite. This led to inefficiencies when collaborating and communicating as teams had to switch apps and learn new systems.\"}),/*#__PURE__*/e(\"p\",{children:\"Further exacerbating these issues was a need for more robust remote working capabilities and the need for greater oversight by management of key tasks.\"}),/*#__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:\"Lark was able to improve on key aspects of Transcosmos\u2019 internal collaboration and communication process by integrating key business tasks like reporting, scheduling and chat all in one powerful digital platform.\"}),/*#__PURE__*/e(\"p\",{children:\"Thanks to Lark Docs, reporting was streamlined and made far easier to manage with simple one click sharing and the group editing.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark Messenger has also helped the Transcosmos Indonesia Team communicate more effectively by allowing for quick and effective chat that allows for the creation of effective groups, hubs and support for all manner of rich text.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark also allowed Transcosmos Indonesia to better collaborate while working remotely, allowing cross functional teams to easily share key documents, stay connected on chat or via video conferencing and more.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater collaboration among teams\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"More impactful meetings\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Less scheduling issues\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"More efficient inter-departmental communication\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Employees are more organized\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"More effective reporting with Lark Docs\"})})]})]});export const richText31=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"Interactive required an application that could help them enhance internal collaboration across geographical boundaries and manage daily business operations like approvals and onboardings.\"}),/*#__PURE__*/e(\"p\",{children:\"As a company that had previously used DingTalk, Interactive needed a comprehensive solution to not only help them manage all of their internal communication, but also help carry out external business processes like getting confidential data across to clients securely.\"}),/*#__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 Interactive Marketing, Lark's robust communication modules like Messenger meant easier communication across geographical boundaries.\"}),/*#__PURE__*/e(\"p\",{children:\"Video Conferencing, Lark Docs and Lark Drive proved to be an easy and secure process of getting marketing collateral across to employees and clients, making internal and external communication more efficient.\"}),/*#__PURE__*/e(\"p\",{children:\"Automating the attendance of field employees through the Attendance app made it easier for team leads to track their employees.\"}),/*#__PURE__*/e(\"p\",{children:\"Creating and automating approval processes like purchase and payment requests also helped make it a less time- consuming process. Lark has also helped them automate employee onboarding process.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__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 experience for its growing teams.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark has enabled them to streamline all of their internal as well external communication and daily business operational processes.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark's open platform tools allowed the company to integrate third party apps and systems to help speed up their product offerings.\"})]});export const richText32=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"Since its inception in 2000, Acro Holdings has been growing at a rapid pace, creating the need for a proper all-in-one collaboration platform that would help to unify key business functions.\"}),/*#__PURE__*/e(\"p\",{children:\"The system that the company was using at the time, Aipo was unable to meet organizational demands and a new platform that could be implemented with as little down time as possible was needed.\"}),/*#__PURE__*/e(\"p\",{children:\"The lack of a unified cloud storage solution that could be accessed from anywhere also meant that collaboration was difficult.\"}),/*#__PURE__*/e(\"p\",{children:\"The company had tested communication apps from other companies but had yet to find something that truly fit management 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:\"Lark helped to unify Acro Holdings various teams onto a single unified platform for more efficient communication.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s easy to use interface made scaling it across the company a breeze.\"}),/*#__PURE__*/e(\"p\",{children:\"Certain features like Lark\u2019s ability to create truly unified calendars and make scheduling meetings seamless across the entire organization was a big plus.\"}),/*#__PURE__*/e(\"p\",{children:\"Through the use of Lark Docs, staff and managers are able to collaborate on a single platform, giving feedback and getting on the same page far more efficiently.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"More efficient meetings with Lark\u2019s unified calendar.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Better communication between different teams\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater efficiency with less apps to worry about\"})})]})]});export const richText33=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"Verz Design\u2019s rapid growth meant that its existing collaboration tech stack, mainly consisting of off-the-shelf solutions like Skype, Slack and the like were not effective in helping to manage the growing team and growing inefficiencies.\"}),/*#__PURE__*/e(\"p\",{children:\"These issues only got more pronounced as the company started taking on larger projects and the time spent switching between apps and dealing with syncing issues started to really have an impact on performance.\"}),/*#__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/7q91ymopk57CElY3WL9urDxkgU.jpg\",srcSet:\"https://framerusercontent.com/images/7q91ymopk57CElY3WL9urDxkgU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7q91ymopk57CElY3WL9urDxkgU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7q91ymopk57CElY3WL9urDxkgU.jpg 1416w\",style:{aspectRatio:\"1416 / 944\"},width:\"708\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s comprehensive suite of enterprise collaboration tools has allowed Verz Design to unify team communication tasks in a single powerful platform.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark has become the default communication and collaboration platform for Verz Design, allowing all 4 offices to seamlessly connect and work together.\"}),/*#__PURE__*/e(\"p\",{children:\"In particular, the ease at which documents can be created, shared and accessed through Lark Drive was a real win for the team, greatly reducing the time normally spent on such tasks.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s comprehensive all-in-one design has allowed the team at Verz Design to truly adopt Lark into all facets of their workday from using Lark Video Conferencing for team meetings, using Lark Task Tracker to keep track of ongoing tasks and using group chats to create meaningful small group communication.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"No need for multiple apps for basic tasks\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Allowed for seamless remote working\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater efficiency and improved team collaboration through more robust collaboration tools.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Improved collaboration between offices\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater cost-savings with only a single software solution\"})})]})]});export const richText34=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A lack of centralized cloud storage for important documents\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A need for a reliable video conferencing solution that worked as well on mobile as it does on PC\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"iB Netx & iB Academy\u2019s clientele mainly consists of SME\u2019s and therefore have a need for accounting support quickly and often through mobile\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The need for a robust, all-in-one method to communicate and work with external parties\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Lark Advantage\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s powerful cloud drive feature allowed iB Netx & iB Academy to gain instant access, anytime, to key documents on the cloud.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"With Lark\u2019s mobile app, the team was able to offer real 24/7 support to clients and at the same time, work remotely.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark was able to streamline highly manual processes and allow iB Netx & iB Academy to provide better service to clients.\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"iB Netx & iB Academy have recorded an uptick of 33 percent in customer engagement since employing Lark.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Better communication between different teams\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater cost savings as all the tools needed were bundled in one package\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Faster access to documents let the team work more efficiently\"})})]})]});export const richText35=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"There were three key challenges that Talent League needed to solve. The first was a way to enable more efficient remote working for staff in the field as well as those in lockdown during the Covid-19 pandemic.\"}),/*#__PURE__*/e(\"p\",{children:\"The second was an inefficient cloud storage solution that made storing documents on the cloud a chore and did not have the space that Talent League needed.\"}),/*#__PURE__*/e(\"p\",{children:\"Lastly, the company was using a variety of stand-alone siloed applications such as Teams and Zoom that required multiple simultaneous applications to be installed and managed.\"}),/*#__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:\"Lark\u2019s comprehensive suite of enterprise collaboration tools has allowed Talent League to unify key team communication tasks in a single powerful platform.\"}),/*#__PURE__*/e(\"p\",{children:\"In particular, Lark has allowed for far greater collaboration between teams in the field and the office thanks to better cloud storage integration and seamless video and text chat.\"}),/*#__PURE__*/e(\"p\",{children:\"Talent League also praised Lark\u2019s more consumer-facing UI which allowed for far quicker onboarding and a much more intuitive experience for all staff.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s man management features also helped a fast-growing company like Talent League with key tools like Lark Approval and Lark Attendance allowing for greater oversight on human resources and automation of rote administrative tasks.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater collaboration with field workers\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"No more need to ration cloud storage space\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater efficiency and improved team collaboration through unified collaboration tools\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Better management oversight of key tasks and assignments\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Faster onboarding and less friction with Lark\u2019s superior design\"})})]})]});export const richText36=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"SALA Homes & AlphaX tried dozens of tools and platforms, including Slack, Excel, etc., to share updates and manage properties with teams and vendors. With the company's property portfolio booming across locations, legacy planning-to-listing tools and templates were unable to fulfill the team's needs:\"}),/*#__PURE__*/a(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Construction sometimes went off track with project updates scattered all over the place. \"}),\"Previously, follow-ups and updates on property projects spanned chats, groups, emails, and offline conversations. As a result, the teams at SALA Homes & AlphaX spent a lot of time putting piecemeal information together. Property projects might go off track due to partial visibility on both accountable teams and deadlines, causing revenue loss daily.\"]}),/*#__PURE__*/a(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Baton drops as there has been no set, centralized process to handle and track requests. \"}),\"To-dos on new and existing properties were spread out across chat groups on different platforms, or sometimes even offline conversations. There was no set, optimized process to move requests forward. Task fell through the cracks due to a de-centralized process of tracking them.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Solution\"})}),/*#__PURE__*/e(\"p\",{children:\"The company urgently needed an integrated platform to scale property operations, sync progress on property projects, and ensure clear accountability on tasks and deadlines. They hoped to do so without toggling the 20+ tools they had already subscribed to.\"}),/*#__PURE__*/e(\"p\",{children:\"Starting on Lark for daily communications, Sunnie and the team soon realized they could do far more on Lark than texting each other.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"One Property Hub, Every Team\"}),/*#__PURE__*/e(\"p\",{children:\"Building a dream home from the ground up is not a one-person job. A project demands seamless teamwork across at least operations, property management, design, and construction, and oftentimes requires help from other supporting departments throughout the process. \"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:'\"With more than 250 projects of all kinds under management, our goal is to use one sheet to manage all of our properties and their task teams. We want to easily know the stage of each project and the next milestone we need to hit, as well as our daily cost day in and day out to make sure everything is on budget, \" Sunnie says, \"and we found our answer on Lark, using Base.\"'})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Sunnie and the team took a stab at building the all-in-one hub for SALA Homes & AlphaX from scratch on Lark using Base. Turning Base into a management hub, the company uses properties as their shared identifier across views to manage all the investments and track project progress.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"832\",src:\"https://framerusercontent.com/images/sgq6zPw3Y9Vhzs4biHSNEYZEK2I.png\",srcSet:\"https://framerusercontent.com/images/sgq6zPw3Y9Vhzs4biHSNEYZEK2I.png?scale-down-to=512 512w,https://framerusercontent.com/images/sgq6zPw3Y9Vhzs4biHSNEYZEK2I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sgq6zPw3Y9Vhzs4biHSNEYZEK2I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/sgq6zPw3Y9Vhzs4biHSNEYZEK2I.png 2812w\",style:{aspectRatio:\"2812 / 1664\"},width:\"1406\"}),/*#__PURE__*/e(\"p\",{children:\"As for each team's workspace, customized views are created from each table and can be refreshed automatically when there is an update on data. Teams at SALA Homes & Alpha X can finally see the latest information on each property and be on the same page regarding the property's current status.\"}),/*#__PURE__*/e(\"p\",{children:\"On top of that, Sunnie and the management team built their first batch of KPI dashboards from within Base with simple drag-and-drop. This exclusive view, restricted to the company's management team, tracks changes in numbers and helps the management office stay on top of the investment landscape.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"Add Bricks and Tiles Automatically\"}),/*#__PURE__*/e(\"p\",{children:\"What brings SALA Homes & AlphaX's all-in-one property base to life is the automated workflows in Base. A simple, no-code setup process to customize notifications based on field changes, the automated workflows are set according to iterations in the property status. The team responsible for taking care of a specific change will receive an automated notification reminding them to act before the deadline.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"679\",src:\"https://framerusercontent.com/images/x113ZGGVMgq6lyLxiCTZF0ZWFRk.png\",srcSet:\"https://framerusercontent.com/images/x113ZGGVMgq6lyLxiCTZF0ZWFRk.png?scale-down-to=512 512w,https://framerusercontent.com/images/x113ZGGVMgq6lyLxiCTZF0ZWFRk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/x113ZGGVMgq6lyLxiCTZF0ZWFRk.png 1978w\",style:{aspectRatio:\"1978 / 1358\"},width:\"989\"}),/*#__PURE__*/e(\"p\",{children:\"To begin with, new property submissions can be easily made through the form view in Base for the acquisition team to add new records to the property hub. \"}),/*#__PURE__*/e(\"p\",{children:\"Once the decision-making team confirms the need for construction and permits are approved, managers of relevant teams will start receiving automated reminders accordingly. They can directly click on the button on the message they receive to start planning, buying, or allocating their workforce.\"}),/*#__PURE__*/e(\"p\",{children:\"For example, the design team manager will receive a notification to assign designers to the new property. The material team will receive a notification, together with an auto-generated checklist, to start buying. Additionally, downstream teams will also receive notifications to start preparing their work ahead of time.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"392\",src:\"https://framerusercontent.com/images/u2hUeyiODG4nVZGp0IeWIUbxxKE.png\",srcSet:\"https://framerusercontent.com/images/u2hUeyiODG4nVZGp0IeWIUbxxKE.png?scale-down-to=512 512w,https://framerusercontent.com/images/u2hUeyiODG4nVZGp0IeWIUbxxKE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/u2hUeyiODG4nVZGp0IeWIUbxxKE.png 1984w\",style:{aspectRatio:\"1984 / 784\"},width:\"992\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"483\",src:\"https://framerusercontent.com/images/0NaCC9HgFA6tB83M33JcuzoLTuA.png\",srcSet:\"https://framerusercontent.com/images/0NaCC9HgFA6tB83M33JcuzoLTuA.png?scale-down-to=512 512w,https://framerusercontent.com/images/0NaCC9HgFA6tB83M33JcuzoLTuA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0NaCC9HgFA6tB83M33JcuzoLTuA.png 1766w\",style:{aspectRatio:\"1766 / 966\"},width:\"883\"}),/*#__PURE__*/e(\"p\",{children:\"And this is just how SALA Homes & AlphaX automates one node of their property investment chain. Sunnie and the team further expanded this practice to other functions within the company, such as listing management, material checklist, Airbnb management, and more. These teams will receive reminders based on property updates added to the overall sheet, ensuring that they complete relevant tasks in a timely manner. Staff members no longer need to manually send reminders to various stakeholders; Base Assistant takes on the grunt work, so that the teams can focus on completing the tasks.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"Balance Transparency and Security\"}),/*#__PURE__*/e(\"p\",{children:'\"We want to share the whole story of a property with our teams,\" says Sunnie, \"Having this Base really helps us provide the kind of transparency we want, so that our team comes in with full context and learning, and knows who to talk to if they have a question. This boosts our efficiency.\"'}),/*#__PURE__*/e(\"p\",{children:\"99% of SALA Homes & AlphaX's property information is visible to its teams. The rest 1% consists of sensitive items such as finance, eviction, and lockbox codes. This 1% is also saved on Base, but only accessible to specific team members, thanks to Base's advanced permissions feature. For example, only the lockbox keepers can see and edit lockbox information. Editing access is also segmented by teams using advanced permissions, so that no one accidentally modifies information they are not in charge of.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"791\",src:\"https://framerusercontent.com/images/uBm3CwQEiFgOwMoNyUcCxUZNQ.png\",srcSet:\"https://framerusercontent.com/images/uBm3CwQEiFgOwMoNyUcCxUZNQ.png?scale-down-to=1024 772w,https://framerusercontent.com/images/uBm3CwQEiFgOwMoNyUcCxUZNQ.png 1194w\",style:{aspectRatio:\"1194 / 1582\"},width:\"597\"}),/*#__PURE__*/e(\"h2\",{children:\"Merge Silos Into Focused Chatrooms\"}),/*#__PURE__*/e(\"p\",{children:\"Getting the right property information from the right people on time used to be challenging. Context and information were scattered across multiple platforms, and sometimes stored as tribal knowledge in members' heads.\"}),/*#__PURE__*/e(\"p\",{children:\"With help from Lark's dedicated customer success team, SALA Homes & AlphaX took their usage of Lark's messenger to a new level. They built a dedicated chat group for each property. All relevant stakeholders from various teams and vendors were added to the group. Discussions became focused, and information became much easier to locate. \"}),/*#__PURE__*/e(\"p\",{children:\"Important documents or sheets can be pinned to the top of the group as tabs, making them instantly accessible upon entering the chat. When new members or vendors join the group, they can immediately gain all relevant context, as well as permission to the docs that have been shared in the group.\"}),/*#__PURE__*/e(\"p\",{children:\"These chat groups are not just for messaging; they have become the hubs of effective and focused collaboration.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"648\",src:\"https://framerusercontent.com/images/RDa6RZKl4nKoI85IYSCkNf1mRv8.png\",srcSet:\"https://framerusercontent.com/images/RDa6RZKl4nKoI85IYSCkNf1mRv8.png?scale-down-to=512 512w,https://framerusercontent.com/images/RDa6RZKl4nKoI85IYSCkNf1mRv8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RDa6RZKl4nKoI85IYSCkNf1mRv8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RDa6RZKl4nKoI85IYSCkNf1mRv8.png 2334w\",style:{aspectRatio:\"2334 / 1296\"},width:\"1167\"}),/*#__PURE__*/e(\"p\",{children:\"From one Base, teams at SALA Homes & AlphaX are able to work hand in hand to get 250+ property projects running while saving more than 40 hours every month, thanks to a better focus on key contexts and automated flows to keep every task in check.\"}),/*#__PURE__*/a(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Feeling inspired, or ready to jump in and use Base for your next project? \"}),/*#__PURE__*/e(n,{href:\"https://www.larksuite.com/en_us/salessupport?from=customers_SALAHomes\",motionChild:!0,nodeId:\"GL3H6ubFy\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:/*#__PURE__*/e(\"strong\",{children:\"Contact us today\"})})}),/*#__PURE__*/e(\"strong\",{children:\" to learn how your team can leverage Lark Base. \"})]})]});export const richText37=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Challenges\"}),/*#__PURE__*/e(\"p\",{children:\"REAL Home & Fashion is keenly aware of the need for digital transformation to scale its operations. This change is crucial not only for maintaining exemplary service in a competitive market but also for fostering innovation and ensuring the brand's long-term success. The urgency of this transformation is amplified by the team's growing challenges in key operational areas.\"}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/a(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Data challenges stifled growth opportunities\"}),\": REAL Home & Fashion's ERP system covered numerous areas like supply chain, inventory, sales, and customer behavior. However, lacking proper tools to leverage this data, the company struggled to unlock valuable insights and explore new business opportunities.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/a(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Untracked inventory impacted customer satisfaction\"}),\": In the retail industry, inventory management was crucial, but REAL Home & Fashion's inefficient tracking often led to stock imbalances, either through stockpiling or shortages, impacting customer satisfaction and the brand's reputation.\"]})}),/*#__PURE__*/a(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/a(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Delayed procurement led to waste of time and budget\"}),\": The company needed timely material supplies while avoiding over-purchasing or waste. However, due to a lack of a clear procurement process, purchasing decisions often relied on incomplete or outdated data, incurring additional costs and resources.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"h2\",{children:\"Landing Lark\"}),/*#__PURE__*/e(\"p\",{children:\"REAL Home & Fashion recognized the need for strategic use of its operational data to propel growth. By adopting Lark, the company now effectively accesses, analyzes, and acts upon data across various domains, fueling its growth trajectory.\"}),/*#__PURE__*/e(\"p\",{children:\"Using Lark Anycross, REAL Home & Fashion integrated its ERP system with Lark. This integration enables the team to sync their ERP data with Lark Base, effectively organizing, analyzing, and updating data from supplies, inventories, warehouses, and more across different tables.\"}),/*#__PURE__*/e(\"h3\",{children:\"Maintain optimal stock levels through automation\"}),/*#__PURE__*/e(\"p\",{children:\"With all the operational data in one place on Lark, REAL Home & Fashion can improve its operational efficiency and have the data handy whenever the team needs to make decisions on supplies by automating its inventory management process. \"}),/*#__PURE__*/e(\"p\",{children:\"For example, Lark Base enables the inventory management team to create mobile-friendly forms to facilitate updates by warehouse employees, who often work without a desk. Staff in the warehouse can now update inventory status upon the arrival of new supplies or when items leave the warehouse using their mobile to ensure accurate, timely logs of all incoming supplies.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1206\",src:\"https://framerusercontent.com/images/ayB0DOupHWkaKRLEzST8Ub1R9Y.png\",srcSet:\"https://framerusercontent.com/images/ayB0DOupHWkaKRLEzST8Ub1R9Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/ayB0DOupHWkaKRLEzST8Ub1R9Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ayB0DOupHWkaKRLEzST8Ub1R9Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ayB0DOupHWkaKRLEzST8Ub1R9Y.png 4004w\",style:{aspectRatio:\"4004 / 2412\"},width:\"2002\"}),/*#__PURE__*/e(\"p\",{children:\"Managing sales and store inventory data in the same Lark Base, the team at REAL Home & Fashion can now also run real-time analysis through Lark Base's formula fields to display the latest counts of every item in stock. The formula fields also tag inventory status automatically by comparing the stock level against a set threshold. This way, the team can immediately spot stock abnormalities and take action quickly.\"}),/*#__PURE__*/e(\"h3\",{children:\"Streamline procurement submission and tracking\"}),/*#__PURE__*/e(\"p\",{children:\"With Lark in place, REAL Home & Fashion is able to build customized procurement flows using Lark Approval, where all the essential steps and needed approvers are set up in Lark. The procurement team can submit a procurement request based on the latest inventory red flags. They are notified easily, and all the stakeholders who need to review and approve the request will be notified automatically in Lark to ensure timely execution and purchase.\"}),/*#__PURE__*/e(\"p\",{children:\"In addition, the team leverages Lark Anycross to centralize procurement requests onto Lark Base, where all the past purchases, including the items purchased, amount spent, and requesters, can be seen and analyzed on one table. This greatly helps the procurement team understand resource and budget allocation and make procurement optimizations based on this data.\"}),/*#__PURE__*/e(\"h3\",{children:\"Create a culture of accountability\"}),/*#__PURE__*/e(\"p\",{children:\"On Lark, REAL Home & Fashion is able to promote accountability by automating task management, including assignments, reminders, and tracking. By using the form view to easily log new to-dos, tasks related to supplies, finance, and more are all automatically centralized and assigned to the responsible employees in Lark Base. \"}),/*#__PURE__*/e(\"p\",{children:\"Employees can easily view their tasks in Lark Base and receive proactive reminders through Lark Base's automated workflows within their chat feed. This system not only helps REAL Home & Fashion keep track of time-sensitive work but also provides a visual, holistic view of progress, enabling teams to identify the right people to resolve blockers effectively.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"694\",src:\"https://framerusercontent.com/images/btP59doMSNY62R0Y8HJjRvSf6JY.png\",srcSet:\"https://framerusercontent.com/images/btP59doMSNY62R0Y8HJjRvSf6JY.png?scale-down-to=512 512w,https://framerusercontent.com/images/btP59doMSNY62R0Y8HJjRvSf6JY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/btP59doMSNY62R0Y8HJjRvSf6JY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/btP59doMSNY62R0Y8HJjRvSf6JY.png 3124w\",style:{aspectRatio:\"3124 / 1388\"},width:\"1562\"}),/*#__PURE__*/e(\"p\",{children:\"An additional benefit brought by the more organized, automated task management is how the HR team at REAL Home & Fashion can better measure performance. With all tasks tracked in one place, the HR team can quantify employee contributions, enabling employees to provide tangible proof of their work achievements.\"})]});export const richText38=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"As PAZZION continued to scale globally, the company management found it difficult to broadcast announcements, share information and enable seamless communication.\"}),/*#__PURE__*/e(\"p\",{children:\"The company also wanted to deal with the potential staff engagement issues that normally befall rapidly scaling companies.\"}),/*#__PURE__*/e(\"p\",{children:\"Management explored many other team management programs, however, all of these programs came with limitations, be it in terms of features, users and pricing.\"}),/*#__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:\"Lark helped to unify PAZZION\u2019s various teams onto a single unified platform for more efficient communication.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark has by far the most robust chat functions of all the programs the team had used. They were able to use the chat to discuss topics, make meeting notes and send files as well as make company-wide announcements.\"}),/*#__PURE__*/e(\"p\",{children:\"In particular, the team singled out features like Lark Attendance to track staff movement, Announcement to broadcast key messages, Qoll to create quick polls and Lark Survey for daily health reporting in the midst of the pandemic.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"PAZZION Management was able to better engage with staff across global operations\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Better communication across teams in the retail structure\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Improved management of staff deployment\"})})]})]});export const richText39=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"To that extent, they tried various tools in the market but found them either impractical, expensive or unable to offer the diversity of solutions needed.\"}),/*#__PURE__*/e(\"p\",{children:\"uWave management also wanted the solution to be truly all-in-one so as to minimize the resources needed to maintain these business-critical digital 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:\"Lark\u2019s comprehensive suite enterprise-grade collaboration tools allowed uWave to unify all their collaboration and communications tasks in a single platform.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark has become the default communications platform for the company. Lark Messenger, especially Lark Groups allows the company to keep chat channels productive and organized while Lark Video Conferencing allows the team to communicate from anywhere.\"}),/*#__PURE__*/e(\"p\",{children:\"With Lark Docs, the team was also able to make note taking more efficient with a variety of templates built-in.\"}),/*#__PURE__*/e(\"p\",{children:\"The uWave team also liked how seamless the group video chat function was, allowing teams to launch a video call, straight from a chat group.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark is now the default communication platform for uWave\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark Messenger allows the team to keep track of all messages\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark has improved team communication immensely, especially during the pandemic\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Better meetings\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"More efficient note taking\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Quicker and more effective communication\"})})]})]});export const richText40=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"In the beginning, Muuve relied on more siloed collaboration solutions like Slack and Gsuite. As the team grew and operations got more complex, the limitations of these tools became more apparent. Add to that the need for remote working due to the pandemic and it was evident to Muuve management that a better solution was needed.\\v\\v\"}),/*#__PURE__*/e(\"p\",{children:\"In particular, the Cambodian language barrier meant that voice notes were an integral part of team communication, a feature their current solutions were lacking.\\v\\vMuuve also wanted a way to better work with external stakeholders without having to rely on email.\"}),/*#__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/Yrfi1DD4uMpN86kniHhcr4cLdg.jpg\",srcSet:\"https://framerusercontent.com/images/Yrfi1DD4uMpN86kniHhcr4cLdg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Yrfi1DD4uMpN86kniHhcr4cLdg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Yrfi1DD4uMpN86kniHhcr4cLdg.jpg 1414w\",style:{aspectRatio:\"1414 / 940\"},width:\"707\"}),/*#__PURE__*/e(\"p\",{children:\"By switching to Lark, Muuve was able to do away with most of their siloed collaboration solutions and integrate key business functions straight onto Lark, which has now become Muuve\u2019s default team communication and collaboration platform.\\v\\vIn particular, Muuve liked how Lark\u2019s basic version had unlimited chat history, allowing for Lark Messenger to act as the single source of truth for the team.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s ability to invite external parties to chat groups was also praised, allowing the Muuve team to coordinate far better with a vast array of stakeholders without having to relay information through other channels.\"}),/*#__PURE__*/e(\"p\",{children:\"A huge plus for the team was Lark\u2019s more consumer-friendly design that allows for much easier onboarding and usability as opposed to more traditional enterprise communication tools. \\v\\vThis design language translates seamlessly to Lark\u2019s mobile app which has all the functionality of the desktop counterpart including the ability to send voice notes directly through Lark messenger, improving efficiency greatly.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark is now the default communication platform for Muuve\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark Messenger allows the team to keep track of all messages\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark has improved team communication immensely, especially during the pandemic\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Infrastructure costs have decreased with less manpower needed to maintain business tools.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Productivity has improved with Lark\u2019s suite of connected tools\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark has improved onboarding times due to a better designed UX\"})})]})]});export const richText41=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"In the beginning, SSB relied primarily on siloed consumer communication tools.\"}),/*#__PURE__*/e(\"p\",{children:\"However, as the team continued to grow, managing a variety of siloed tools proved to be inefficient and made important information difficult to track. There was also the issue of personal and professional chats getting mixed up.\"}),/*#__PURE__*/e(\"p\",{children:\"With remote working becoming the new normal as well, company management realized that they needed a more robust collaboration solution that was easy to manage, affordable and was simple to use, reducing onboarding time for new and existing employees.\"}),/*#__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:\"Lark\u2019s powerful suite of enterprise collaboration tools has allowed SSB to improve communication, collaboration and efficiency for employees.\"}),/*#__PURE__*/e(\"p\",{children:\"SSB was able to leverage Lark\u2019s all-in-one collaboration solution to enable effective remote working for the growing team.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark has become the default communication platform for SSB, ensuring that all professional communication is in one place and can act as a single source of truth.\"}),/*#__PURE__*/e(\"p\",{children:\"In particular, SSB was impressed with how seamlessly Lark\u2019s various components interconnected, allowing staff to create documents in Lark Docs then with a single click, share them with individuals or groups in Lark Messenger without the need of having to attach it in an email.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark\u2019s Magic Share feature, which allows for teams to collaborate on docs, within the Lark Video Call window was also a real winner, creating more engaging and effective team meetings.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater efficiency and improved team collaboration through unified collaboration tools.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Improved while remote working\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"More impactful separation of professional and personal communications\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Much greater cost-savings with only a single platform to worry about\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Improved task turnaround time\"})})]})]});export const richText42=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Challenge\"})}),/*#__PURE__*/e(\"p\",{children:\"In the beginning, REVAstaff relied on more siloed collaboration solutions like Slack and Gsuite. As the team grew and operations got more complex, the limitations of these tools became more apparent.\"}),/*#__PURE__*/e(\"p\",{children:\"Add to that the need for remote working due to the pandemic and it was evident to REVAstaff management that a better solution was needed. REVAstaff also wanted a way to better work with external stakeholders and freelance artists without having to rely on more traditional methods such as email.\"}),/*#__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/Ens3IqoQoBTH6Y69MVKYkf1hMs.jpg\",srcSet:\"https://framerusercontent.com/images/Ens3IqoQoBTH6Y69MVKYkf1hMs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ens3IqoQoBTH6Y69MVKYkf1hMs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ens3IqoQoBTH6Y69MVKYkf1hMs.jpg 1410w\",style:{aspectRatio:\"1410 / 940\"},width:\"705\"}),/*#__PURE__*/e(\"p\",{children:\"By switching to Lark, REVAstaff was able to do away with most of their siloed collaboration solutions and integrate key business functions straight onto Lark, which has now become REVAstaff\u2019s default team communication and collaboration platform.\"}),/*#__PURE__*/e(\"p\",{children:\"In particular, REVAstaff appreciated how Lark enabled more effective separation between professional and personal communication by acting as a single source of truth.\"}),/*#__PURE__*/e(\"p\",{children:\"Lark Messenger's ability to create more efficient groups also allowed REVAstaff management to have greater oversight over operations.\"}),/*#__PURE__*/e(\"p\",{children:\"Beyond that, Lark\u2019s ability to automate basic HR functions like attendance and approvals also allowed REVAStaff to continue to grow its team remotely.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Result\"})}),/*#__PURE__*/a(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark is now the default communication platform for REVAStaff\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark Messenger allows the team to better separate personal and professional messages.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lark has improved team communication immensely, especially during the pandemic\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Better meetings\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"More efficient note taking\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Quicker and more effective communication\"})})]})]});\nexport const __FramerMetadata__ = {\"exports\":{\"richText28\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText20\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText30\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText41\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText38\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText32\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText39\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText26\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText18\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText29\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText37\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText36\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText24\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText25\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText27\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText42\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText23\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText40\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText33\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText21\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText22\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText35\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText34\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText19\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText31\":{\"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", "ComponentPresetsConsumer", "a", "Youtube", "richText1", "richText2", "richText3", "richText4", "richText5", "richText6", "richText7", "richText8", "richText9", "richText10", "richText11", "richText12", "richText13", "richText14", "richText15", "richText16", "richText17", "richText18", "richText19", "richText20", "richText21", "richText22", "richText23", "richText24", "richText25", "richText26", "richText27", "richText28", "richText29", "richText30", "richText31", "richText32", "richText33", "richText34", "richText35", "richText36", "Link", "motion", "richText37", "richText38", "richText39", "richText40", "richText41", "richText42", "__FramerMetadata__"]
}
