{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/6CC3Z8tBfb4ZBd6cT15m/wKsRWu2SWBTDVED0dauc/V2kKYXnHz-2.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"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://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(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",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(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__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===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",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 embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":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 _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=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\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as e,jsxs as t}from\"react/jsx-runtime\";import{ComponentPresetsConsumer as s,Link as a}from\"framer\";import{motion as r}from\"framer-motion\";import*as n from\"react\";import{Youtube as o}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";export const richText=/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Enhancing the Buy Online Journey through Design, Functionality, and Improved Onboarding\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h4\",{children:\"Design Principles\"}),/*#__PURE__*/e(\"h5\",{children:\"Clarity\"}),/*#__PURE__*/e(\"p\",{children:\"The website should be easy to read and understand, with a clear hierarchy of information and a simple navigation structure.\"}),/*#__PURE__*/e(\"h5\",{children:\"Brand consistency\"}),/*#__PURE__*/e(\"p\",{children:\"Across all media web, print and mobile.\"}),/*#__PURE__*/e(\"h5\",{children:\"Speed\"}),/*#__PURE__*/e(\"p\",{children:\"The website should load quickly and be optimised for fast performance.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/t(\"h5\",{children:[\"Customer Journey Map\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"806\",src:\"https://framerusercontent.com/images/qlEcK2A8zqy5KrBz9qrssSfQT4.png\",srcSet:\"https://framerusercontent.com/images/qlEcK2A8zqy5KrBz9qrssSfQT4.png?scale-down-to=512 512w,https://framerusercontent.com/images/qlEcK2A8zqy5KrBz9qrssSfQT4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qlEcK2A8zqy5KrBz9qrssSfQT4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qlEcK2A8zqy5KrBz9qrssSfQT4.png 2538w\",style:{aspectRatio:\"2538 / 1613\"},width:\"1269\"}),/*#__PURE__*/t(\"h4\",{children:[/*#__PURE__*/e(\"br\",{}),\"The Buying Journey\"]}),/*#__PURE__*/e(\"p\",{children:\"The tasked journey starts after users begin the life insurance application process.\"}),/*#__PURE__*/e(\"p\",{children:'The proposed improvement is to enhance the user experience by introducing a personalized \"buy online journey\" once the application begins. This can be achieved by using a simple multi step form to guide users through each step, and also explaining policy options in simple terms.'}),/*#__PURE__*/e(\"p\",{children:\"Another aspect we wanted to improve is the getting a quote and simple approval process. While this happens in the background, simple explanations of policy benefits are displayed to keep users engaged and informed. Additionally, personalized status updates or call back options send directly to the email to help reduce anxiety and create a more seamless experience.\"}),/*#__PURE__*/e(\"p\",{children:\"This results in a more tailored and informative onboarding process, making each user's journey unique and reassuring from start to finish.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"510\",src:\"https://framerusercontent.com/images/4VzecPEQozKXETSn7rRhE9ti0KI.png\",srcSet:\"https://framerusercontent.com/images/4VzecPEQozKXETSn7rRhE9ti0KI.png?scale-down-to=512 512w,https://framerusercontent.com/images/4VzecPEQozKXETSn7rRhE9ti0KI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4VzecPEQozKXETSn7rRhE9ti0KI.png 1861w\",style:{aspectRatio:\"1861 / 1021\"},width:\"930\"}),/*#__PURE__*/t(\"h4\",{children:[/*#__PURE__*/e(\"br\",{}),\"Introduction of Multi-Step Form\"]}),/*#__PURE__*/e(\"p\",{children:\"We introduced a multi-step form in the online purchasing journey, breaking down the application process into smaller, digestible sections. Rather than overwhelming the user with a long, complex form, we segmented the journey into clear steps that focus on key information at each stage, guiding the user seamlessly through the process.\"}),/*#__PURE__*/e(\"h4\",{children:\"Tailored Customer Experience\"}),/*#__PURE__*/e(\"p\",{children:\"The multi-step form allowed us to tailor the experience based on the customer\u2019s specific needs and profile. By asking personalized questions early on, we could offer policy recommendations that fit the customer\u2019s lifestyle, family structure, and financial goals. For instance, if a user is applying for insurance with dependents, we present relevant options and advice, ensuring the policy speaks directly to their needs.\"}),/*#__PURE__*/e(\"h4\",{children:\"Why These Features Were Introduced\"}),/*#__PURE__*/e(\"p\",{children:\"The introduction of these features was driven by our understanding of customer pain points. Previously, users were often overwhelmed by lengthy forms and unclear instructions, leading to high abandonment rates. By splitting the process into manageable steps, we reduced cognitive load, making the experience less intimidating. Furthermore, personalized touches, such as pre-filled information and contextual help, minimized errors and confusion, building confidence in the application process.\"}),/*#__PURE__*/e(\"h4\",{children:\"How It Increased Conversion\"}),/*#__PURE__*/e(\"p\",{children:\"This multi-step, personalized journey has directly contributed to higher conversion rates for the following reasons:\"}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Reduced Abandonment\"}),\": Breaking down the form into smaller steps kept users engaged, as they felt a sense of progression and accomplishment after each step, leading to fewer drop-offs.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Personalization\"}),\": Tailoring the policy recommendations based on the user\u2019s answers created a sense of relevance, making users feel that the product was designed specifically for them.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Clarity and Guidance\"}),\": Providing clear instructions and contextual help at each stage reduced friction and confusion, making users more likely to complete the purchase.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Trust and Transparency\"}),\": By offering transparency about what to expect next and providing regular updates on the process, users gained trust in the system, leading to higher confidence in making the final purchase decision.\"]})})]}),/*#__PURE__*/e(\"p\",{children:\"We offer multiple types of multi-step forms tailored to different customer experiences. Some forms perform better when placed in hero banners, while others work best as full quote page forms but broken into steps, or even as in-page forms. The effectiveness of each format varies based on factors such as brand identity and regional preferences. We conduct extensive A/B testing and user research to determine which design converts best in each scenario, ensuring that the final design is optimized for both customer engagement and conversion. This data-driven approach helps us deliver tailored solutions for each market.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"847\",src:\"https://framerusercontent.com/images/Mtp7N49DaK8pREIe6eXNudCFw.png\",srcSet:\"https://framerusercontent.com/images/Mtp7N49DaK8pREIe6eXNudCFw.png?scale-down-to=512 512w,https://framerusercontent.com/images/Mtp7N49DaK8pREIe6eXNudCFw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Mtp7N49DaK8pREIe6eXNudCFw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Mtp7N49DaK8pREIe6eXNudCFw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Mtp7N49DaK8pREIe6eXNudCFw.png 5775w\",style:{aspectRatio:\"5775 / 1695\"},width:\"2887\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1791\",src:\"https://framerusercontent.com/images/KGIVI0fNJQvdHJawrCLp987OvYE.png\",srcSet:\"https://framerusercontent.com/images/KGIVI0fNJQvdHJawrCLp987OvYE.png?scale-down-to=512 512w,https://framerusercontent.com/images/KGIVI0fNJQvdHJawrCLp987OvYE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KGIVI0fNJQvdHJawrCLp987OvYE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/KGIVI0fNJQvdHJawrCLp987OvYE.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/KGIVI0fNJQvdHJawrCLp987OvYE.png 4917w\",style:{aspectRatio:\"4917 / 3583\"},width:\"2458\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"687\",src:\"https://framerusercontent.com/images/ivnnVnW4hF24bnJA1ypebTusyI.png\",srcSet:\"https://framerusercontent.com/images/ivnnVnW4hF24bnJA1ypebTusyI.png?scale-down-to=512 512w,https://framerusercontent.com/images/ivnnVnW4hF24bnJA1ypebTusyI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ivnnVnW4hF24bnJA1ypebTusyI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ivnnVnW4hF24bnJA1ypebTusyI.png 2537w\",style:{aspectRatio:\"2537 / 1374\"},width:\"1268\"}),/*#__PURE__*/e(\"h4\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h4\",{children:\"The Summary\"}),/*#__PURE__*/t(\"p\",{children:[\"By implementing a personalized, multi-step form in our life insurance buy online journey, we adhered to key design principles focused on \",/*#__PURE__*/e(\"strong\",{children:\"simplicity, clarity, and personalization\"}),\". Breaking down the process into smaller steps reduced the cognitive load on users, making the experience smoother and more manageable. We introduced functionality that tailored the journey based on user responses, offering relevant policy recommendations and real-time assistance to minimize confusion.\"]}),/*#__PURE__*/t(\"p\",{children:[\"The redesigned onboarding process improved user engagement and satisfaction by \",/*#__PURE__*/e(\"strong\",{children:\"clarifying each step, reducing abandonment, and fostering trust\"}),\". This shift led to a measurable impact: we saw a \",/*#__PURE__*/e(\"strong\",{children:\"25% reduction in form abandonment rates\"}),\" and a \",/*#__PURE__*/e(\"strong\",{children:\"15% increase in overall conversion rates\"}),\". By focusing on user-centric design and functional improvements, we significantly enhanced the onboarding experience, leading to more customers successfully completing their life insurance purchases.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]});export const richText1=/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"Design Principles \"}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"strong\",{children:\"Design System Overview\"})}),/*#__PURE__*/e(\"p\",{children:\"We developed a robust and scalable design system based on key principles of accessibility, scalability, collaboration, and consistency. Inspired by the work of design leaders like Nathan Curtis and Brad Frost, this system ensures a seamless user experience across platforms while promoting efficiency and brand coherence.\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Accessibility\"}),\": Ensuring that our designs are usable by everyone, regardless of ability, with a focus on inclusivity.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Scalability\"}),\": Creating flexible components that grow with the product, ensuring adaptability across different platforms and projects.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Collaboration\"}),\": Facilitating seamless teamwork between designers and developers, enabling efficient workflows and a shared design language.\"]})}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Consistency\"}),\": Establishing a unified visual and functional experience across all platforms, ensuring brand coherence and reliability.\"]}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"strong\",{children:\"User Interviews\"})}),/*#__PURE__*/e(\"p\",{children:\"Conducted in-depth interviews with developers, designers, and product managers to gather insights on the real challenges they face.\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Findings\"}),\": We discovered that navigating through the design system was complex for both developers and new designers. Developers also expressed a preference for adding more component-specific colors rather than relying on overrides, highlighting a key area for improvement in customization and accessibility.\"]}),/*#__PURE__*/e(\"h5\",{children:\"Journey Map (Designer)\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1187\",src:\"https://framerusercontent.com/images/XGgdk3woG56g5KGVhrRmXWtWRQ.png\",srcSet:\"https://framerusercontent.com/images/XGgdk3woG56g5KGVhrRmXWtWRQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/XGgdk3woG56g5KGVhrRmXWtWRQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XGgdk3woG56g5KGVhrRmXWtWRQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/XGgdk3woG56g5KGVhrRmXWtWRQ.png 2538w\",style:{aspectRatio:\"2538 / 2375\"},width:\"1269\"}),/*#__PURE__*/e(\"h5\",{children:\"Journey Map (Developers)\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1186\",src:\"https://framerusercontent.com/images/oENWK5LJFHdQ8IMWP4H3Xq2NM.png\",srcSet:\"https://framerusercontent.com/images/oENWK5LJFHdQ8IMWP4H3Xq2NM.png?scale-down-to=512 512w,https://framerusercontent.com/images/oENWK5LJFHdQ8IMWP4H3Xq2NM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oENWK5LJFHdQ8IMWP4H3Xq2NM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/oENWK5LJFHdQ8IMWP4H3Xq2NM.png 2538w\",style:{aspectRatio:\"2538 / 2372\"},width:\"1269\"}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"strong\",{children:\"Market Research\"})}),/*#__PURE__*/e(\"p\",{children:\"We thoroughly researched industry-leading design systems to understand how they handle scalability and flexibility across brands.\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Findings\"}),\": Our research revealed opportunities to improve by incorporating variables in more dynamic ways, particularly for managing a multi-brand design system. This gave us the insight needed to adapt and streamline the design system for diverse use cases.\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"810\",src:\"https://framerusercontent.com/images/S0E9wy8tkRXVMDceheK3Hr4Cbg.png\",srcSet:\"https://framerusercontent.com/images/S0E9wy8tkRXVMDceheK3Hr4Cbg.png?scale-down-to=512 512w,https://framerusercontent.com/images/S0E9wy8tkRXVMDceheK3Hr4Cbg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/S0E9wy8tkRXVMDceheK3Hr4Cbg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/S0E9wy8tkRXVMDceheK3Hr4Cbg.png 3240w\",style:{aspectRatio:\"3240 / 1620\"},width:\"1620\"}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"strong\",{children:\"Brand-Specific Analysis\"})}),/*#__PURE__*/e(\"p\",{children:\"We analyzed the existing brand-specific design systems to identify inconsistencies and opportunities for unification.\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Findings\"}),\": We found several inconsistencies in style naming conventions, which could lead to problems when theming across different brands. Addressing these inconsistencies became crucial to ensuring smooth integration and consistent branding.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1347\",src:\"https://framerusercontent.com/images/n70sV05I7FmorGZpivcmcP1vFE.png\",srcSet:\"https://framerusercontent.com/images/n70sV05I7FmorGZpivcmcP1vFE.png?scale-down-to=512 512w,https://framerusercontent.com/images/n70sV05I7FmorGZpivcmcP1vFE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/n70sV05I7FmorGZpivcmcP1vFE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/n70sV05I7FmorGZpivcmcP1vFE.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/n70sV05I7FmorGZpivcmcP1vFE.png 4982w\",style:{aspectRatio:\"4982 / 2694\"},width:\"2491\"}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"strong\",{children:\"Information Architecture\"})}),/*#__PURE__*/e(\"p\",{children:\"We meticulously organized and structured the design system to make it user-friendly and scalable.\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Findings\"}),\": We laid out all the information we had and structured the design system carefully, using the Atomic Design methodology. Atoms and Molecules were placed in one file, Organisms in another, and individual pages were assigned to specific components. We also standardized styles to ensure scalability, providing a rough draft of the design system layout from the workshop sessions.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:\"Solutions\"}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"strong\",{children:\"Accessibility First: WCAG & A11y Compliance\"})}),/*#__PURE__*/e(\"p\",{children:\"Our initial focus was on improving accessibility by adhering to WCAG (Web Content Accessibility Guidelines) and implementing A11y standards. This ensured that our design system is inclusive, offering better user experiences for people with disabilities while meeting legal and industry standards.\"}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"strong\",{children:\"Improved Auto Layout for Consistency\"})}),/*#__PURE__*/e(\"p\",{children:\"We enhanced the auto layout using Figma's new min, max, and wrap functionality, giving us greater control over components across multiple screen sizes. This allowed us to create responsive variants all derived from a single master component, simplifying design consistency.\"}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(s,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(o,{...t,play:\"Loop\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/NHHKGgG7Tes\"})})}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"strong\",{children:\"Flexible Color Schemes/Styles\"})}),/*#__PURE__*/e(\"p\",{children:\"Based on developer feedback, we enhanced the flexibility of our color schemes and styles, improving how they adapt across brands and components, leading to a more cohesive visual system.\"}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(s,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(o,{...t,play:\"Loop\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/z2Q9uLL66lI\"})})}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"strong\",{children:\"Simplified Header Sizing\"})}),/*#__PURE__*/e(\"p\",{children:\"Initially, we had 45 header styles (h1-h5 for desktop, tablet, and mobile), which became difficult to maintain. We proposed a solution using typographic variables for sizing, reducing the styles to just 15. Font changes are handled through Themer, while size changes can be controlled using number variables, saving significant time in responsive design adjustments.\"}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(s,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(o,{...t,play:\"Loop\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/25BF6xWTUuc\"})})}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"strong\",{children:\"Component Documentation\"})}),/*#__PURE__*/e(\"p\",{children:\"We created detailed component documentation for six widely used screen sizes, ensuring clear guidelines and consistency across all design outputs.\"}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(s,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(o,{...t,play:\"Loop\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/3R25vmKROfU\"})})}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"strong\",{children:\"Hero Banner Revamp\"})}),/*#__PURE__*/e(\"p\",{children:\"Our initial hero banner component was overloaded with multiple layers for different brands, complicating responsiveness and development. \"}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(s,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(o,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/1Yyufy7l-ro\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"We improved this by creating brand-specific hero banner components, giving each brand its own unique look, while simplifying responsiveness and development.\"}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(s,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(o,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/Uo_RAG2yw-A\"})})}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"strong\",{children:\"Theming Brands Using Themer\"})}),/*#__PURE__*/e(\"p\",{children:\"Initially, we manually matched style names to theme brands, but by utilizing Themer, we streamlined the theming process. By combining Themer for font changes and Figma variables for sizing, we achieved both flexibility and efficiency, ensuring the design system adapts without hindering previous designs.\"}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(s,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(o,{...t,play:\"Loop\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/gIKfG0G4UoE\"})})}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:\"Future Design Recommendations\"}),/*#__PURE__*/e(\"p\",{children:\"After extensive research on multi-brand design systems, we discovered the potential of using design tokens. We are now testing token integration with developers using Token Studio, aiming to push JSON files for instant theme updates. This will future-proof our design system, allowing for seamless scalability and flexibility. Two videos highlight the ongoing work in this area.\"}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(s,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(o,{...t,play:\"Loop\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/hBC_W4WI6F0\"})})}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(s,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(o,{...t,play:\"Loop\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/c4bWJj2bOZY\"})})}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:\"Results and Learnings \"}),/*#__PURE__*/t(\"p\",{children:[\"Our focus on accessibility and simplifying components made the design process smoother and faster. By improving color flexibility and centralizing key elements like headers, we ensured better consistency across the system and made it easier for developers to work. Clear documentation helped speed up onboarding and improved collaboration between designers and developers. Simplifying the design system also made it more manageable and reduced the time spent on updates. As a team, we learned that collaboration, clear communication, and focusing on early pain points were crucial to creating an efficient, scalable system that works for everyone involved.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]})]});export const richText2=/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"627\",src:\"https://framerusercontent.com/images/pVDuWEhOcg8G65p4k1oxjWnqrM.jpg\",srcSet:\"https://framerusercontent.com/images/pVDuWEhOcg8G65p4k1oxjWnqrM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pVDuWEhOcg8G65p4k1oxjWnqrM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pVDuWEhOcg8G65p4k1oxjWnqrM.jpg 1440w\",style:{aspectRatio:\"1440 / 1254\"},width:\"720\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"421\",src:\"https://framerusercontent.com/images/1maB3CgGY2ooh5HkYXUzwexCiM.jpg\",srcSet:\"https://framerusercontent.com/images/1maB3CgGY2ooh5HkYXUzwexCiM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1maB3CgGY2ooh5HkYXUzwexCiM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1maB3CgGY2ooh5HkYXUzwexCiM.jpg 1440w\",style:{aspectRatio:\"1440 / 843\"},width:\"720\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"405\",src:\"https://framerusercontent.com/images/cUhxOLUJ97vS983P42rbATaoJBE.jpg\",srcSet:\"https://framerusercontent.com/images/cUhxOLUJ97vS983P42rbATaoJBE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cUhxOLUJ97vS983P42rbATaoJBE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cUhxOLUJ97vS983P42rbATaoJBE.jpg 1440w\",style:{aspectRatio:\"1440 / 810\"},width:\"720\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"368\",src:\"https://framerusercontent.com/images/zJ9TliI1HTKuQaJVuCgOQI99igE.jpg\",srcSet:\"https://framerusercontent.com/images/zJ9TliI1HTKuQaJVuCgOQI99igE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zJ9TliI1HTKuQaJVuCgOQI99igE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zJ9TliI1HTKuQaJVuCgOQI99igE.jpg 1440w\",style:{aspectRatio:\"1440 / 737\"},width:\"720\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"310\",src:\"https://framerusercontent.com/images/yVLl7dg94RilFo81zTmDIQ7SM.jpg\",srcSet:\"https://framerusercontent.com/images/yVLl7dg94RilFo81zTmDIQ7SM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yVLl7dg94RilFo81zTmDIQ7SM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yVLl7dg94RilFo81zTmDIQ7SM.jpg 1440w\",style:{aspectRatio:\"1440 / 620\"},width:\"720\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"404\",src:\"https://framerusercontent.com/images/LZCuoUKOPUQnmuOUZv0EOOeUrc.jpg\",srcSet:\"https://framerusercontent.com/images/LZCuoUKOPUQnmuOUZv0EOOeUrc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LZCuoUKOPUQnmuOUZv0EOOeUrc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LZCuoUKOPUQnmuOUZv0EOOeUrc.jpg 1440w\",style:{aspectRatio:\"1440 / 809\"},width:\"720\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"467\",src:\"https://framerusercontent.com/images/z6lrb1Zw15NjBPBEAczRmA1LHD0.jpg\",srcSet:\"https://framerusercontent.com/images/z6lrb1Zw15NjBPBEAczRmA1LHD0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/z6lrb1Zw15NjBPBEAczRmA1LHD0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/z6lrb1Zw15NjBPBEAczRmA1LHD0.jpg 1440w\",style:{aspectRatio:\"1440 / 935\"},width:\"720\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1606\",src:\"https://framerusercontent.com/images/qBq86WFwFhjeU42nwe2pJep0WRE.jpg\",srcSet:\"https://framerusercontent.com/images/qBq86WFwFhjeU42nwe2pJep0WRE.jpg?scale-down-to=2048 917w,https://framerusercontent.com/images/qBq86WFwFhjeU42nwe2pJep0WRE.jpg 1440w\",style:{aspectRatio:\"1440 / 3213\"},width:\"720\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1417\",src:\"https://framerusercontent.com/images/43kFwDOEokLIz1uFlcwQ692TdI.jpg\",srcSet:\"https://framerusercontent.com/images/43kFwDOEokLIz1uFlcwQ692TdI.jpg?scale-down-to=1024 520w,https://framerusercontent.com/images/43kFwDOEokLIz1uFlcwQ692TdI.jpg?scale-down-to=2048 1040w,https://framerusercontent.com/images/43kFwDOEokLIz1uFlcwQ692TdI.jpg 1440w\",style:{aspectRatio:\"1440 / 2834\"},width:\"720\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"405\",src:\"https://framerusercontent.com/images/ENcR7kx5iKYTs9J3GlLnePbkB8.jpeg\",srcSet:\"https://framerusercontent.com/images/ENcR7kx5iKYTs9J3GlLnePbkB8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/ENcR7kx5iKYTs9J3GlLnePbkB8.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ENcR7kx5iKYTs9J3GlLnePbkB8.jpeg 1080w\",style:{aspectRatio:\"1080 / 810\"},width:\"540\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"333\",src:\"https://framerusercontent.com/images/r045npeTjuKIhr8UsZO4lqAHNc.jpeg\",srcSet:\"https://framerusercontent.com/images/r045npeTjuKIhr8UsZO4lqAHNc.jpeg 500w\",style:{aspectRatio:\"500 / 667\"},width:\"250\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"333\",src:\"https://framerusercontent.com/images/ummr92sgAlMuqRJCrImt9oWlNk.jpeg\",srcSet:\"https://framerusercontent.com/images/ummr92sgAlMuqRJCrImt9oWlNk.jpeg 500w\",style:{aspectRatio:\"500 / 667\"},width:\"250\"}),/*#__PURE__*/e(\"h4\",{children:/*#__PURE__*/e(a,{href:\"https://www.figma.com/proto/fe3HNN2d7jiEYt41rS3Z7P/Local-Store-Case-Study---Vendor?page-id=1877%3A252&node-id=288-1874&node-type=canvas&viewport=835%2C257%2C0.07&t=VpOgHPDBedceUYKO-1&scaling=min-zoom&content-scaling=fixed&starting-point-node-id=25%3A201\",motionChild:!0,nodeId:\"V2kKYXnHz\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"High Fidelity Prototype - Vendor Side\"})})}),/*#__PURE__*/t(\"h4\",{children:[/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(a,{href:\"https://www.figma.com/design/fe3HNN2d7jiEYt41rS3Z7P/Local-Store-Case-Study---Vendor?node-id=1877-252\",motionChild:!0,nodeId:\"V2kKYXnHz\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"Screens - Vendor\"})})]}),/*#__PURE__*/t(\"h4\",{children:[/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(a,{href:\"https://www.figma.com/proto/68M48OGLnvJnqH252LsDDS/Local-Store-Case-Study---Customer?page-id=1877%3A251&node-id=884-4093&node-type=canvas&viewport=931%2C1773%2C0.18&t=IiVvFtd6GEIyWnLs-1&scaling=min-zoom&content-scaling=fixed&starting-point-node-id=1877%3A0\",motionChild:!0,nodeId:\"V2kKYXnHz\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"High Fidelity Prototype - Customer Side\"})})]}),/*#__PURE__*/t(\"h4\",{children:[/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(a,{href:\"https://www.figma.com/design/68M48OGLnvJnqH252LsDDS/Local-Store-Case-Study---Customer?node-id=1877-251\",motionChild:!0,nodeId:\"V2kKYXnHz\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"Screens - Customer\"})})]})]});export const richText3=/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"Man Vs Interface\"}),/*#__PURE__*/e(\"p\",{children:\"Man vs Interface is a design agency that combines human creativity with the precision of digital tools, offering unlimited design services through a flexible subscription model. Our goal is to provide fast, high-quality designs tailored to your needs, without the hassle of unreliable freelancers or costly agencies. Stay tuned\u2014Man vs Interface is launching soon!\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"619\",src:\"https://framerusercontent.com/images/1YiAx8tqEjvHxsLywFQC5R1ecA.png\",srcSet:\"https://framerusercontent.com/images/1YiAx8tqEjvHxsLywFQC5R1ecA.png?scale-down-to=512 512w,https://framerusercontent.com/images/1YiAx8tqEjvHxsLywFQC5R1ecA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1YiAx8tqEjvHxsLywFQC5R1ecA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/1YiAx8tqEjvHxsLywFQC5R1ecA.png 3000w\",style:{aspectRatio:\"3000 / 1238\"},width:\"1500\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"619\",src:\"https://framerusercontent.com/images/GQRE7aCfAVXDcogm15IwyYCook.png\",srcSet:\"https://framerusercontent.com/images/GQRE7aCfAVXDcogm15IwyYCook.png?scale-down-to=512 512w,https://framerusercontent.com/images/GQRE7aCfAVXDcogm15IwyYCook.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GQRE7aCfAVXDcogm15IwyYCook.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GQRE7aCfAVXDcogm15IwyYCook.png 3000w\",style:{aspectRatio:\"3000 / 1238\"},width:\"1500\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"619\",src:\"https://framerusercontent.com/images/0o8f5DJNDA9q7ky309HoHjgHA8.png\",srcSet:\"https://framerusercontent.com/images/0o8f5DJNDA9q7ky309HoHjgHA8.png?scale-down-to=512 512w,https://framerusercontent.com/images/0o8f5DJNDA9q7ky309HoHjgHA8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0o8f5DJNDA9q7ky309HoHjgHA8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0o8f5DJNDA9q7ky309HoHjgHA8.png 3000w\",style:{aspectRatio:\"3000 / 1238\"},width:\"1500\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"843\",src:\"https://framerusercontent.com/images/v7yo3v5fJ0W5R689e2cbBzP2dz8.png\",srcSet:\"https://framerusercontent.com/images/v7yo3v5fJ0W5R689e2cbBzP2dz8.png?scale-down-to=512 512w,https://framerusercontent.com/images/v7yo3v5fJ0W5R689e2cbBzP2dz8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v7yo3v5fJ0W5R689e2cbBzP2dz8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/v7yo3v5fJ0W5R689e2cbBzP2dz8.png 3000w\",style:{aspectRatio:\"3000 / 1687\"},width:\"1500\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"843\",src:\"https://framerusercontent.com/images/LhgPvmtJevTTOFg5wok8evgX0U.png\",srcSet:\"https://framerusercontent.com/images/LhgPvmtJevTTOFg5wok8evgX0U.png?scale-down-to=512 512w,https://framerusercontent.com/images/LhgPvmtJevTTOFg5wok8evgX0U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LhgPvmtJevTTOFg5wok8evgX0U.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/LhgPvmtJevTTOFg5wok8evgX0U.png 3000w\",style:{aspectRatio:\"3000 / 1687\"},width:\"1500\"}),/*#__PURE__*/t(\"h3\",{children:[/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"Noble Palette\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Its a creative brand born out of my personal passion for art and design. What started as a side hustle has grown into a unique venture where I blend my love for creating artworks with my experience in interior design. By offering custom art and design solutions, I help transform spaces into personalized reflections of those who live in them. This journey began as a way to express creativity on the side and has since evolved into something meaningful and inspiring.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1000\",src:\"https://framerusercontent.com/images/r4854zY1if2ksH7iyxm8yCaBIA.jpg\",srcSet:\"https://framerusercontent.com/images/r4854zY1if2ksH7iyxm8yCaBIA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/r4854zY1if2ksH7iyxm8yCaBIA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/r4854zY1if2ksH7iyxm8yCaBIA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/r4854zY1if2ksH7iyxm8yCaBIA.jpg 3000w\",style:{aspectRatio:\"3000 / 2000\"},width:\"1500\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1000\",src:\"https://framerusercontent.com/images/jPcxlbSAzdv32gEJywCUBdn2R2k.jpg\",srcSet:\"https://framerusercontent.com/images/jPcxlbSAzdv32gEJywCUBdn2R2k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jPcxlbSAzdv32gEJywCUBdn2R2k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jPcxlbSAzdv32gEJywCUBdn2R2k.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/jPcxlbSAzdv32gEJywCUBdn2R2k.jpg 3000w\",style:{aspectRatio:\"3000 / 2000\"},width:\"1500\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1000\",src:\"https://framerusercontent.com/images/ujVSMo5thwZBgPmCRRE0P8BzCE.jpg\",srcSet:\"https://framerusercontent.com/images/ujVSMo5thwZBgPmCRRE0P8BzCE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ujVSMo5thwZBgPmCRRE0P8BzCE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ujVSMo5thwZBgPmCRRE0P8BzCE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ujVSMo5thwZBgPmCRRE0P8BzCE.jpg 3000w\",style:{aspectRatio:\"3000 / 2000\"},width:\"1500\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1000\",src:\"https://framerusercontent.com/images/fyFkfez71ShWZ6C6AmVJ00EE.jpg\",srcSet:\"https://framerusercontent.com/images/fyFkfez71ShWZ6C6AmVJ00EE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fyFkfez71ShWZ6C6AmVJ00EE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fyFkfez71ShWZ6C6AmVJ00EE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/fyFkfez71ShWZ6C6AmVJ00EE.jpg 3000w\",style:{aspectRatio:\"3000 / 2000\"},width:\"1500\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1000\",src:\"https://framerusercontent.com/images/gts0DbpPo584d1FpCKthi63zt3A.jpg\",srcSet:\"https://framerusercontent.com/images/gts0DbpPo584d1FpCKthi63zt3A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gts0DbpPo584d1FpCKthi63zt3A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gts0DbpPo584d1FpCKthi63zt3A.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/gts0DbpPo584d1FpCKthi63zt3A.jpg 3000w\",style:{aspectRatio:\"3000 / 2000\"},width:\"1500\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1000\",src:\"https://framerusercontent.com/images/dUnYOlyfRM7GR7Kr57muPZ0tYa8.jpg\",srcSet:\"https://framerusercontent.com/images/dUnYOlyfRM7GR7Kr57muPZ0tYa8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dUnYOlyfRM7GR7Kr57muPZ0tYa8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dUnYOlyfRM7GR7Kr57muPZ0tYa8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dUnYOlyfRM7GR7Kr57muPZ0tYa8.jpg 3000w\",style:{aspectRatio:\"3000 / 2000\"},width:\"1500\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1000\",src:\"https://framerusercontent.com/images/dqqzuOB552CEhAhL8PTyuV4S654.jpg\",srcSet:\"https://framerusercontent.com/images/dqqzuOB552CEhAhL8PTyuV4S654.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dqqzuOB552CEhAhL8PTyuV4S654.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dqqzuOB552CEhAhL8PTyuV4S654.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dqqzuOB552CEhAhL8PTyuV4S654.jpg 3000w\",style:{aspectRatio:\"3000 / 2000\"},width:\"1500\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1000\",src:\"https://framerusercontent.com/images/shcuDoHhQ9xgLlo31Y2eRzNdOnU.jpg\",srcSet:\"https://framerusercontent.com/images/shcuDoHhQ9xgLlo31Y2eRzNdOnU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/shcuDoHhQ9xgLlo31Y2eRzNdOnU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/shcuDoHhQ9xgLlo31Y2eRzNdOnU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/shcuDoHhQ9xgLlo31Y2eRzNdOnU.jpg 3000w\",style:{aspectRatio:\"3000 / 2000\"},width:\"1500\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1000\",src:\"https://framerusercontent.com/images/9OuDTiGWWslUrQSfe88fFmLM60.jpg\",srcSet:\"https://framerusercontent.com/images/9OuDTiGWWslUrQSfe88fFmLM60.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9OuDTiGWWslUrQSfe88fFmLM60.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9OuDTiGWWslUrQSfe88fFmLM60.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/9OuDTiGWWslUrQSfe88fFmLM60.jpg 3000w\",style:{aspectRatio:\"3000 / 2000\"},width:\"1500\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"719\",src:\"https://framerusercontent.com/images/8bsXOLWcoCq20OSaEIi8IIHQIE.jpg\",srcSet:\"https://framerusercontent.com/images/8bsXOLWcoCq20OSaEIi8IIHQIE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8bsXOLWcoCq20OSaEIi8IIHQIE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8bsXOLWcoCq20OSaEIi8IIHQIE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/8bsXOLWcoCq20OSaEIi8IIHQIE.jpg 3000w\",style:{aspectRatio:\"3000 / 1439\"},width:\"1500\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1000\",src:\"https://framerusercontent.com/images/nHWqqa4j6CrVnVJX1ZCbfnww4o.jpg\",srcSet:\"https://framerusercontent.com/images/nHWqqa4j6CrVnVJX1ZCbfnww4o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nHWqqa4j6CrVnVJX1ZCbfnww4o.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nHWqqa4j6CrVnVJX1ZCbfnww4o.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/nHWqqa4j6CrVnVJX1ZCbfnww4o.jpg 3000w\",style:{aspectRatio:\"3000 / 2000\"},width:\"1500\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(a,{href:\"https://www.coverdirect.ca/\",motionChild:!0,nodeId:\"V2kKYXnHz\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"Cover Direct\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"I worked on a comprehensive branding project that tackled multiple design challenges, resulting in a cohesive brand identity across digital and print platforms. \"}),/*#__PURE__*/e(\"p\",{children:\"Key aspects of the project include:\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Problem\"}),\": The brand lacked a cohesive visual identity across platforms, had no consistent online presence, and needed aligned offline marketing materials.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Solution\"}),\": Created detailed brand guidelines that now serve as a foundation for future brands, designed responsive web layouts for a seamless multi-device experience, and crafted print materials to ensure consistency across digital and offline platforms.\"]})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"648\",src:\"https://framerusercontent.com/images/ArOUfH9TwKF9GmLvqh98SAIo4.png\",srcSet:\"https://framerusercontent.com/images/ArOUfH9TwKF9GmLvqh98SAIo4.png?scale-down-to=512 512w,https://framerusercontent.com/images/ArOUfH9TwKF9GmLvqh98SAIo4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ArOUfH9TwKF9GmLvqh98SAIo4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ArOUfH9TwKF9GmLvqh98SAIo4.png 2304w\",style:{aspectRatio:\"2304 / 1297\"},width:\"1152\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"763\",src:\"https://framerusercontent.com/images/gQ12YDjWauYJ73xoOvdG8sxf8.png\",srcSet:\"https://framerusercontent.com/images/gQ12YDjWauYJ73xoOvdG8sxf8.png?scale-down-to=512 512w,https://framerusercontent.com/images/gQ12YDjWauYJ73xoOvdG8sxf8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gQ12YDjWauYJ73xoOvdG8sxf8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gQ12YDjWauYJ73xoOvdG8sxf8.png 2365w\",style:{aspectRatio:\"2365 / 1526\"},width:\"1182\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"649\",src:\"https://framerusercontent.com/images/RJnSnivWI4hYFE2JyyWCRDs.png\",srcSet:\"https://framerusercontent.com/images/RJnSnivWI4hYFE2JyyWCRDs.png?scale-down-to=512 512w,https://framerusercontent.com/images/RJnSnivWI4hYFE2JyyWCRDs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RJnSnivWI4hYFE2JyyWCRDs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RJnSnivWI4hYFE2JyyWCRDs.png 2306w\",style:{aspectRatio:\"2306 / 1299\"},width:\"1153\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"648\",src:\"https://framerusercontent.com/images/2NgkEoDV6l9jdzeHztlDzRWTCJk.png\",srcSet:\"https://framerusercontent.com/images/2NgkEoDV6l9jdzeHztlDzRWTCJk.png?scale-down-to=512 512w,https://framerusercontent.com/images/2NgkEoDV6l9jdzeHztlDzRWTCJk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2NgkEoDV6l9jdzeHztlDzRWTCJk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2NgkEoDV6l9jdzeHztlDzRWTCJk.png 2304w\",style:{aspectRatio:\"2304 / 1297\"},width:\"1152\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"649\",src:\"https://framerusercontent.com/images/8zVCeVU7B73PSjOLYQ3ePxJlv5Y.png\",srcSet:\"https://framerusercontent.com/images/8zVCeVU7B73PSjOLYQ3ePxJlv5Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/8zVCeVU7B73PSjOLYQ3ePxJlv5Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8zVCeVU7B73PSjOLYQ3ePxJlv5Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8zVCeVU7B73PSjOLYQ3ePxJlv5Y.png 2306w\",style:{aspectRatio:\"2306 / 1299\"},width:\"1153\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"648\",src:\"https://framerusercontent.com/images/i52WU5TpuUCgf8DZvC2LlGLKA.png\",srcSet:\"https://framerusercontent.com/images/i52WU5TpuUCgf8DZvC2LlGLKA.png?scale-down-to=512 512w,https://framerusercontent.com/images/i52WU5TpuUCgf8DZvC2LlGLKA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i52WU5TpuUCgf8DZvC2LlGLKA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/i52WU5TpuUCgf8DZvC2LlGLKA.png 2304w\",style:{aspectRatio:\"2304 / 1297\"},width:\"1152\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"316\",src:\"https://framerusercontent.com/images/LeXt4TNoCZZK6AJDD4nuYvUOi4.png\",srcSet:\"https://framerusercontent.com/images/LeXt4TNoCZZK6AJDD4nuYvUOi4.png?scale-down-to=512 512w,https://framerusercontent.com/images/LeXt4TNoCZZK6AJDD4nuYvUOi4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LeXt4TNoCZZK6AJDD4nuYvUOi4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/LeXt4TNoCZZK6AJDD4nuYvUOi4.png 2306w\",style:{aspectRatio:\"2306 / 632\"},width:\"1153\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"664\",src:\"https://framerusercontent.com/images/tFDkGDS7y0s55sH8ovQA3wiiCI.png\",srcSet:\"https://framerusercontent.com/images/tFDkGDS7y0s55sH8ovQA3wiiCI.png?scale-down-to=512 512w,https://framerusercontent.com/images/tFDkGDS7y0s55sH8ovQA3wiiCI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tFDkGDS7y0s55sH8ovQA3wiiCI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tFDkGDS7y0s55sH8ovQA3wiiCI.png 2306w\",style:{aspectRatio:\"2306 / 1329\"},width:\"1153\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"316\",src:\"https://framerusercontent.com/images/M42gr21xzhYvjv8GcX9JX89qRNE.png\",srcSet:\"https://framerusercontent.com/images/M42gr21xzhYvjv8GcX9JX89qRNE.png?scale-down-to=512 512w,https://framerusercontent.com/images/M42gr21xzhYvjv8GcX9JX89qRNE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/M42gr21xzhYvjv8GcX9JX89qRNE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/M42gr21xzhYvjv8GcX9JX89qRNE.png 2305w\",style:{aspectRatio:\"2305 / 632\"},width:\"1152\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"649\",src:\"https://framerusercontent.com/images/weYVLvzJYfWidy8vlm1FO8noSA.png\",srcSet:\"https://framerusercontent.com/images/weYVLvzJYfWidy8vlm1FO8noSA.png?scale-down-to=512 512w,https://framerusercontent.com/images/weYVLvzJYfWidy8vlm1FO8noSA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/weYVLvzJYfWidy8vlm1FO8noSA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/weYVLvzJYfWidy8vlm1FO8noSA.png 2306w\",style:{aspectRatio:\"2306 / 1299\"},width:\"1153\"}),/*#__PURE__*/t(\"h3\",{children:[/*#__PURE__*/e(\"br\",{}),\"British Seniors (BSIA)\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"British Seniors UK is a well-established brand that provides life insurance and funeral plan services tailored to the needs of the elderly in the UK. The branding of British Seniors focuses on building trust, reliability, and care, which are essential values for their target demographic. The brand identity reflects a compassionate and approachable tone, using warm, reassuring colors, clear typography, and imagery that evokes a sense of security and peace of mind.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"The branding process involved creating a cohesive visual identity that resonates with the older audience, ensuring the design conveys clarity, professionalism, and trustworthiness. From the logo design to marketing materials and the website, every aspect was crafted to make the brand feel reliable and approachable, while standing out in the competitive insurance sector. The goal was to build a strong emotional connection with the target audience while maintaining a clean, professional image.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"676\",src:\"https://framerusercontent.com/images/2CHp2oCvOL9kUDVPz4twkZ7Kixs.png\",srcSet:\"https://framerusercontent.com/images/2CHp2oCvOL9kUDVPz4twkZ7Kixs.png?scale-down-to=512 512w,https://framerusercontent.com/images/2CHp2oCvOL9kUDVPz4twkZ7Kixs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2CHp2oCvOL9kUDVPz4twkZ7Kixs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2CHp2oCvOL9kUDVPz4twkZ7Kixs.png 2402w\",style:{aspectRatio:\"2402 / 1352\"},width:\"1201\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"802\",src:\"https://framerusercontent.com/images/QFEAincFzPC4vToZ22e9fuCsaI.png\",srcSet:\"https://framerusercontent.com/images/QFEAincFzPC4vToZ22e9fuCsaI.png?scale-down-to=512 512w,https://framerusercontent.com/images/QFEAincFzPC4vToZ22e9fuCsaI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QFEAincFzPC4vToZ22e9fuCsaI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/QFEAincFzPC4vToZ22e9fuCsaI.png 2557w\",style:{aspectRatio:\"2557 / 1605\"},width:\"1278\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"675\",src:\"https://framerusercontent.com/images/xlXg67GgAfyzetZO2hRSsPpOwW0.png\",srcSet:\"https://framerusercontent.com/images/xlXg67GgAfyzetZO2hRSsPpOwW0.png?scale-down-to=512 512w,https://framerusercontent.com/images/xlXg67GgAfyzetZO2hRSsPpOwW0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xlXg67GgAfyzetZO2hRSsPpOwW0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/xlXg67GgAfyzetZO2hRSsPpOwW0.png 2400w\",style:{aspectRatio:\"2400 / 1351\"},width:\"1200\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"676\",src:\"https://framerusercontent.com/images/7KLiZnOPBPY8LP1ry2u1gUYE.png\",srcSet:\"https://framerusercontent.com/images/7KLiZnOPBPY8LP1ry2u1gUYE.png?scale-down-to=512 512w,https://framerusercontent.com/images/7KLiZnOPBPY8LP1ry2u1gUYE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7KLiZnOPBPY8LP1ry2u1gUYE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7KLiZnOPBPY8LP1ry2u1gUYE.png 2402w\",style:{aspectRatio:\"2402 / 1353\"},width:\"1201\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"676\",src:\"https://framerusercontent.com/images/dx5mD6H16GrjgYpDmW3Ne4y9g.png\",srcSet:\"https://framerusercontent.com/images/dx5mD6H16GrjgYpDmW3Ne4y9g.png?scale-down-to=512 512w,https://framerusercontent.com/images/dx5mD6H16GrjgYpDmW3Ne4y9g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dx5mD6H16GrjgYpDmW3Ne4y9g.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/dx5mD6H16GrjgYpDmW3Ne4y9g.png 2402w\",style:{aspectRatio:\"2402 / 1353\"},width:\"1201\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"676\",src:\"https://framerusercontent.com/images/8NF1vD8DTlsG9W3IzJSMe4pqCQ.png\",srcSet:\"https://framerusercontent.com/images/8NF1vD8DTlsG9W3IzJSMe4pqCQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/8NF1vD8DTlsG9W3IzJSMe4pqCQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8NF1vD8DTlsG9W3IzJSMe4pqCQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8NF1vD8DTlsG9W3IzJSMe4pqCQ.png 2402w\",style:{aspectRatio:\"2402 / 1353\"},width:\"1201\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:\"University College Dublin \"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"University College Dublin (UCD) is one of Ireland's leading universities, known for its academic excellence and strong global presence. While working with UCD, I focused on preserving and enhancing their established brand identity through print and marketing materials. By adhering to UCD's brand guidelines, I ensured consistency in typography, color schemes, and overall design across various projects. My work supported their branding efforts, reinforcing the university\u2019s prestigious and professional image while delivering impactful marketing materials that resonated with their target audience.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"850\",src:\"https://framerusercontent.com/images/YPIs74txRuY3GlAgMMO7owCnE.png\",srcSet:\"https://framerusercontent.com/images/YPIs74txRuY3GlAgMMO7owCnE.png?scale-down-to=512 512w,https://framerusercontent.com/images/YPIs74txRuY3GlAgMMO7owCnE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YPIs74txRuY3GlAgMMO7owCnE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YPIs74txRuY3GlAgMMO7owCnE.png 2524w\",style:{aspectRatio:\"2524 / 1700\"},width:\"1262\"})]});export const richText4=/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"Ad Campaigns\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"In this section, I showcase my work on ad campaigns for various companies, where I helped craft visually compelling designs that resonate with audiences. From concept development to final execution, each campaign was designed to enhance brand visibility and drive engagement across digital and print platforms.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"885\",src:\"https://framerusercontent.com/images/dDjTCFbLjHe8ZJva5QAA9ebioY.jpg\",srcSet:\"https://framerusercontent.com/images/dDjTCFbLjHe8ZJva5QAA9ebioY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dDjTCFbLjHe8ZJva5QAA9ebioY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dDjTCFbLjHe8ZJva5QAA9ebioY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dDjTCFbLjHe8ZJva5QAA9ebioY.jpg 3000w\",style:{aspectRatio:\"3000 / 1770\"},width:\"1500\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1580\",src:\"https://framerusercontent.com/images/aenYkrCWRlyDHZRoKVT01sgyQzM.jpg\",srcSet:\"https://framerusercontent.com/images/aenYkrCWRlyDHZRoKVT01sgyQzM.jpg?scale-down-to=1024 971w,https://framerusercontent.com/images/aenYkrCWRlyDHZRoKVT01sgyQzM.jpg?scale-down-to=2048 1943w,https://framerusercontent.com/images/aenYkrCWRlyDHZRoKVT01sgyQzM.jpg 3000w\",style:{aspectRatio:\"3000 / 3161\"},width:\"1500\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"2213\",src:\"https://framerusercontent.com/images/mN4X65k3uEbnaABS2VhgcGiGp4.jpg\",srcSet:\"https://framerusercontent.com/images/mN4X65k3uEbnaABS2VhgcGiGp4.jpg?scale-down-to=1024 694w,https://framerusercontent.com/images/mN4X65k3uEbnaABS2VhgcGiGp4.jpg?scale-down-to=2048 1388w,https://framerusercontent.com/images/mN4X65k3uEbnaABS2VhgcGiGp4.jpg?scale-down-to=4096 2776w,https://framerusercontent.com/images/mN4X65k3uEbnaABS2VhgcGiGp4.jpg 3000w\",style:{aspectRatio:\"3000 / 4426\"},width:\"1500\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"719\",src:\"https://framerusercontent.com/images/8bsXOLWcoCq20OSaEIi8IIHQIE.jpg\",srcSet:\"https://framerusercontent.com/images/8bsXOLWcoCq20OSaEIi8IIHQIE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8bsXOLWcoCq20OSaEIi8IIHQIE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8bsXOLWcoCq20OSaEIi8IIHQIE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/8bsXOLWcoCq20OSaEIi8IIHQIE.jpg 3000w\",style:{aspectRatio:\"3000 / 1439\"},width:\"1500\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"843\",src:\"https://framerusercontent.com/images/v7yo3v5fJ0W5R689e2cbBzP2dz8.png\",srcSet:\"https://framerusercontent.com/images/v7yo3v5fJ0W5R689e2cbBzP2dz8.png?scale-down-to=512 512w,https://framerusercontent.com/images/v7yo3v5fJ0W5R689e2cbBzP2dz8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v7yo3v5fJ0W5R689e2cbBzP2dz8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/v7yo3v5fJ0W5R689e2cbBzP2dz8.png 3000w\",style:{aspectRatio:\"3000 / 1687\"},width:\"1500\"}),/*#__PURE__*/t(\"h3\",{children:[/*#__PURE__*/e(\"br\",{}),\"Paintings - Creative  Expressions\"]}),/*#__PURE__*/e(\"p\",{children:\"Below, you'll find a collection of my personal paintings that reflect my creative journey beyond digital design. Each piece embodies a unique expression of color, emotion, and form, offering a deeper glimpse into my artistic process and inspirations.\"}),/*#__PURE__*/e(\"h4\",{children:\"The wisdom of Time (Water color on paper)\"}),/*#__PURE__*/e(\"p\",{children:\"The elderly woman's face, marked by deep lines and a thoughtful expression, reflects the strength and beauty of age, while the traditional maharashtrian attire and adornments honor cultural heritage. \"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1125\",src:\"https://framerusercontent.com/images/BzqGOuJRDl84ENQruMoaxZ2lc.jpg\",srcSet:\"https://framerusercontent.com/images/BzqGOuJRDl84ENQruMoaxZ2lc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BzqGOuJRDl84ENQruMoaxZ2lc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BzqGOuJRDl84ENQruMoaxZ2lc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BzqGOuJRDl84ENQruMoaxZ2lc.jpg 3000w\",style:{aspectRatio:\"3000 / 2250\"},width:\"1500\"}),/*#__PURE__*/t(\"blockquote\",{children:[/*#__PURE__*/e(\"p\",{children:\"Did I fail to see the love you bore, \"}),/*#__PURE__*/e(\"p\",{children:\"Hidden in the silence, deeply planted?\"}),/*#__PURE__*/e(\"p\",{children:\"The lines on your face, etched with time,\"}),/*#__PURE__*/e(\"p\",{children:\"Grandma, did I take them for granted?\"})]}),/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Amit Savargaokar ( A friend of mine saw this painting and was deeply moved. He wrote this poem later that day and sent me)\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h4\",{children:\"The voice of a Nation\"}),/*#__PURE__*/e(\"p\",{children:\"This portrait honors the legendary Lata Mangeshkar, capturing her radiant smile and grace. The soft hues and traditional details, like the red bindi, reflect her iconic status and lasting impact on Indian music. \"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1125\",src:\"https://framerusercontent.com/images/M59zfnhmdcmqPqhwKcYRv0InVZo.jpg\",srcSet:\"https://framerusercontent.com/images/M59zfnhmdcmqPqhwKcYRv0InVZo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/M59zfnhmdcmqPqhwKcYRv0InVZo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/M59zfnhmdcmqPqhwKcYRv0InVZo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/M59zfnhmdcmqPqhwKcYRv0InVZo.jpg 3000w\",style:{aspectRatio:\"3000 / 2250\"},width:\"1500\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h4\",{children:\"Showcase - \"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1125\",src:\"https://framerusercontent.com/images/2neP8NIDKk9AvhknZOmdjAgYls.jpg\",srcSet:\"https://framerusercontent.com/images/2neP8NIDKk9AvhknZOmdjAgYls.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2neP8NIDKk9AvhknZOmdjAgYls.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2neP8NIDKk9AvhknZOmdjAgYls.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/2neP8NIDKk9AvhknZOmdjAgYls.jpg 3000w\",style:{aspectRatio:\"3000 / 2250\"},width:\"1500\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h4\",{children:\"The Golden Gaze\"}),/*#__PURE__*/e(\"p\",{children:\"A heartwarming painting capturing the gentle curiosity of a golden retriever. The warm, expressive eyes reflect the loyalty and love that make this breed so beloved, bringing a sense of comfort and joy to any space.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1125\",src:\"https://framerusercontent.com/images/pLtbbHnzBF8fcqB8KVc6XnxhiA.jpg\",srcSet:\"https://framerusercontent.com/images/pLtbbHnzBF8fcqB8KVc6XnxhiA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pLtbbHnzBF8fcqB8KVc6XnxhiA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pLtbbHnzBF8fcqB8KVc6XnxhiA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pLtbbHnzBF8fcqB8KVc6XnxhiA.jpg 3000w\",style:{aspectRatio:\"3000 / 2250\"},width:\"1500\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h4\",{children:\"Mumbai's Iconic Landmark\"}),/*#__PURE__*/e(\"p\",{children:\"This pen sketch beautifully captures the architectural grandeur of Mumbai's Chhatrapati Shivaji Terminus. The intricate details reflect the historic Victorian style, showcasing the iconic structure's cultural and historical significance. \"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1125\",src:\"https://framerusercontent.com/images/ul91iQsLFWgcZ6Vu8j5WVCvJYE.jpg\",srcSet:\"https://framerusercontent.com/images/ul91iQsLFWgcZ6Vu8j5WVCvJYE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ul91iQsLFWgcZ6Vu8j5WVCvJYE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ul91iQsLFWgcZ6Vu8j5WVCvJYE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ul91iQsLFWgcZ6Vu8j5WVCvJYE.jpg 3000w\",style:{aspectRatio:\"3000 / 2250\"},width:\"1500\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h4\",{children:\"The Historic Mandai of Pune \"}),/*#__PURE__*/e(\"p\",{children:\"This pen drawing beautifully captures the architecture of Pune's Mahatma Phule Mandai. The intricate lines highlight the building's iconic design, showcasing its historical and cultural importance in the heart of the city. \"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1125\",src:\"https://framerusercontent.com/images/cAl3HdkftN2wmhSBpTBmXb1DiA.jpg\",srcSet:\"https://framerusercontent.com/images/cAl3HdkftN2wmhSBpTBmXb1DiA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cAl3HdkftN2wmhSBpTBmXb1DiA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cAl3HdkftN2wmhSBpTBmXb1DiA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/cAl3HdkftN2wmhSBpTBmXb1DiA.jpg 3000w\",style:{aspectRatio:\"3000 / 2250\"},width:\"1500\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h4\",{children:\"Counter Strike (Charcoal on Paper)\"}),/*#__PURE__*/e(\"p\",{children:\"A striking depiction of iconic characters from the Counter Strike video game. The charcoal medium intensifies the action, making this a powerful tribute to a gaming classic.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1000\",src:\"https://framerusercontent.com/images/Zu8oUqRz2VjXa7ETsUHX3YdTM.jpg\",srcSet:\"https://framerusercontent.com/images/Zu8oUqRz2VjXa7ETsUHX3YdTM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Zu8oUqRz2VjXa7ETsUHX3YdTM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Zu8oUqRz2VjXa7ETsUHX3YdTM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Zu8oUqRz2VjXa7ETsUHX3YdTM.jpg 3000w\",style:{aspectRatio:\"3000 / 2000\"},width:\"1500\"}),/*#__PURE__*/t(\"h4\",{children:[/*#__PURE__*/e(\"br\",{}),\"Captian Jack Sparrow - Digital Painting - Printed on Canvas\"]}),/*#__PURE__*/e(\"p\",{children:\"A vibrant and detailed portrayal of the legendary Captain Jack Sparrow. The digital strokes emphasize his charisma, capturing the character's boldness and iconic flair.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1125\",src:\"https://framerusercontent.com/images/OMC6EtO0HZAiEM1gwhe2kCeMNPw.jpg\",srcSet:\"https://framerusercontent.com/images/OMC6EtO0HZAiEM1gwhe2kCeMNPw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OMC6EtO0HZAiEM1gwhe2kCeMNPw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OMC6EtO0HZAiEM1gwhe2kCeMNPw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OMC6EtO0HZAiEM1gwhe2kCeMNPw.jpg 3000w\",style:{aspectRatio:\"3000 / 2250\"},width:\"1500\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h4\",{children:\"King of Jungle\"}),/*#__PURE__*/e(\"p\",{children:\"A dynamic burst of color embodies the fierce strength of the lion. The splashes of bright pigments represent the raw energy and majesty of the animal kingdom.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1125\",src:\"https://framerusercontent.com/images/hoYKp8Yw8KQUWRXYQYAwIOzLomw.jpg\",srcSet:\"https://framerusercontent.com/images/hoYKp8Yw8KQUWRXYQYAwIOzLomw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hoYKp8Yw8KQUWRXYQYAwIOzLomw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hoYKp8Yw8KQUWRXYQYAwIOzLomw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hoYKp8Yw8KQUWRXYQYAwIOzLomw.jpg 3000w\",style:{aspectRatio:\"3000 / 2250\"},width:\"1500\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h4\",{children:\"Traditional Roots of India\"}),/*#__PURE__*/e(\"p\",{children:\"A beautiful pairing of Ram and Sita alongside a traditional Indian sage, or Baba. This artwork connects deeply with India's cultural and spiritual history, offering a glimpse into devotion and tradition.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1500\",src:\"https://framerusercontent.com/images/3HHz1qtWXABugSLOLj6f9Ti9g3o.jpg\",srcSet:\"https://framerusercontent.com/images/3HHz1qtWXABugSLOLj6f9Ti9g3o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3HHz1qtWXABugSLOLj6f9Ti9g3o.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3HHz1qtWXABugSLOLj6f9Ti9g3o.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/3HHz1qtWXABugSLOLj6f9Ti9g3o.jpg 4000w\",style:{aspectRatio:\"4000 / 3000\"},width:\"2000\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h4\",{children:\"Joker\"}),/*#__PURE__*/e(\"p\",{children:\"A haunting sketch of the Joker character, rendered in dark, intricate lines. The roughness of the strokes mirrors the chaotic nature of this infamous villain, adding a sense of intensity and intrigue\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1125\",src:\"https://framerusercontent.com/images/MakP3Cl9Ikew00WLOgb5bTAtVs.jpg\",srcSet:\"https://framerusercontent.com/images/MakP3Cl9Ikew00WLOgb5bTAtVs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MakP3Cl9Ikew00WLOgb5bTAtVs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MakP3Cl9Ikew00WLOgb5bTAtVs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MakP3Cl9Ikew00WLOgb5bTAtVs.jpg 3000w\",style:{aspectRatio:\"3000 / 2250\"},width:\"1500\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h4\",{children:\"My Parents (Digital Painting - Print on Canvas)\"}),/*#__PURE__*/e(\"p\",{children:\"A heartwarming, minimalist sketch of my parents, capturing their essence and warmth. The simplicity of lines brings forth the emotional bond shared between the family.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1125\",src:\"https://framerusercontent.com/images/OUfswRbFeLRcMn8rEU8A76BPDcM.jpg\",srcSet:\"https://framerusercontent.com/images/OUfswRbFeLRcMn8rEU8A76BPDcM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OUfswRbFeLRcMn8rEU8A76BPDcM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OUfswRbFeLRcMn8rEU8A76BPDcM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OUfswRbFeLRcMn8rEU8A76BPDcM.jpg 3000w\",style:{aspectRatio:\"3000 / 2250\"},width:\"1500\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h4\",{children:\"Shiva Wall Painting \"}),/*#__PURE__*/e(\"p\",{children:\"A large-scale depiction of Lord Shiva in a surreal and mythic style. This wall painting was part of a college exhibition in 2016, blending modern artistic techniques with ancient spiritual symbolism.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1000\",src:\"https://framerusercontent.com/images/Xh7Wpm2XTeRp7eQVLzWHJXBE4tg.jpg\",srcSet:\"https://framerusercontent.com/images/Xh7Wpm2XTeRp7eQVLzWHJXBE4tg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Xh7Wpm2XTeRp7eQVLzWHJXBE4tg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xh7Wpm2XTeRp7eQVLzWHJXBE4tg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Xh7Wpm2XTeRp7eQVLzWHJXBE4tg.jpg 3000w\",style:{aspectRatio:\"3000 / 2000\"},width:\"1500\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]})]});export const richText5=/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"Black and White: Through my lens\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"br\",{}),\"Its a visual exploration of moments captured in stark contrasts of light and shadow. Each image tells a story of stillness, culture, and everyday life, framed through the simplicity and depth of monochrome\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1315\",src:\"https://framerusercontent.com/images/GSUQty0pfMz913p2CmvFKEjItA.jpg\",srcSet:\"https://framerusercontent.com/images/GSUQty0pfMz913p2CmvFKEjItA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GSUQty0pfMz913p2CmvFKEjItA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GSUQty0pfMz913p2CmvFKEjItA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GSUQty0pfMz913p2CmvFKEjItA.jpg 3947w\",style:{aspectRatio:\"3947 / 2631\"},width:\"1973\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Lost in thought, she moves through the world like a passing blur\u2014present, yet somewhere far beyond.\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1681\",src:\"https://framerusercontent.com/images/ErCUNpiJOoCX8b9ahrnKT6cEm0.jpg\",srcSet:\"https://framerusercontent.com/images/ErCUNpiJOoCX8b9ahrnKT6cEm0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ErCUNpiJOoCX8b9ahrnKT6cEm0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ErCUNpiJOoCX8b9ahrnKT6cEm0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ErCUNpiJOoCX8b9ahrnKT6cEm0.jpg 3363w\",style:{aspectRatio:\"3363 / 3363\"},width:\"1681\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Time moves forward, but the journey remains timeless.\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1504\",src:\"https://framerusercontent.com/images/UzadqtYOVCxVGQrfKEdJCp9fVk.jpg\",srcSet:\"https://framerusercontent.com/images/UzadqtYOVCxVGQrfKEdJCp9fVk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UzadqtYOVCxVGQrfKEdJCp9fVk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UzadqtYOVCxVGQrfKEdJCp9fVk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/UzadqtYOVCxVGQrfKEdJCp9fVk.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/UzadqtYOVCxVGQrfKEdJCp9fVk.jpg 4512w\",style:{aspectRatio:\"4512 / 3008\"},width:\"2256\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"In the quiet pages, the world fades away.\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"3000\",src:\"https://framerusercontent.com/images/iXvgtgGjy2bpX92ddFbPchwc6o.jpg\",srcSet:\"https://framerusercontent.com/images/iXvgtgGjy2bpX92ddFbPchwc6o.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/iXvgtgGjy2bpX92ddFbPchwc6o.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/iXvgtgGjy2bpX92ddFbPchwc6o.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/iXvgtgGjy2bpX92ddFbPchwc6o.jpg 4000w\",style:{aspectRatio:\"4000 / 6000\"},width:\"2000\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Amidst the gray, a bold step forward in color.\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1124\",src:\"https://framerusercontent.com/images/ET03Vl1gB95klCqMWyFEc8Rs8.jpg\",srcSet:\"https://framerusercontent.com/images/ET03Vl1gB95klCqMWyFEc8Rs8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ET03Vl1gB95klCqMWyFEc8Rs8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ET03Vl1gB95klCqMWyFEc8Rs8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ET03Vl1gB95klCqMWyFEc8Rs8.jpg 3373w\",style:{aspectRatio:\"3373 / 2248\"},width:\"1686\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Moments of childhood, etched in sand and memory.\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"2858\",src:\"https://framerusercontent.com/images/3B8S0zLBL7zPMpxW8R1imzhSo.jpg\",srcSet:\"https://framerusercontent.com/images/3B8S0zLBL7zPMpxW8R1imzhSo.jpg?scale-down-to=1024 575w,https://framerusercontent.com/images/3B8S0zLBL7zPMpxW8R1imzhSo.jpg?scale-down-to=2048 1151w,https://framerusercontent.com/images/3B8S0zLBL7zPMpxW8R1imzhSo.jpg?scale-down-to=4096 2303w,https://framerusercontent.com/images/3B8S0zLBL7zPMpxW8R1imzhSo.jpg 3215w\",style:{aspectRatio:\"3215 / 5716\"},width:\"1607\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Where imagination bends reality, and art becomes otherworldly.\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"2000\",src:\"https://framerusercontent.com/images/o371nRh0HH44IIla7B31MO4nAuU.jpg\",srcSet:\"https://framerusercontent.com/images/o371nRh0HH44IIla7B31MO4nAuU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/o371nRh0HH44IIla7B31MO4nAuU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/o371nRh0HH44IIla7B31MO4nAuU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/o371nRh0HH44IIla7B31MO4nAuU.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/o371nRh0HH44IIla7B31MO4nAuU.jpg 6000w\",style:{aspectRatio:\"6000 / 4000\"},width:\"3000\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Ancestral echoes woven in every bead and thread.\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1393\",src:\"https://framerusercontent.com/images/0Sp0a0yQIsGsUeSaBs7gDEpzM8.jpg\",srcSet:\"https://framerusercontent.com/images/0Sp0a0yQIsGsUeSaBs7gDEpzM8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0Sp0a0yQIsGsUeSaBs7gDEpzM8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0Sp0a0yQIsGsUeSaBs7gDEpzM8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0Sp0a0yQIsGsUeSaBs7gDEpzM8.jpg 2787w\",style:{aspectRatio:\"2787 / 2787\"},width:\"1393\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"A tiny lens, capturing vast worlds through a magnified gaze.\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1814\",src:\"https://framerusercontent.com/images/r5cZhF8RWsaYIHQ3qNPuLuRjjpE.jpg\",srcSet:\"https://framerusercontent.com/images/r5cZhF8RWsaYIHQ3qNPuLuRjjpE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/r5cZhF8RWsaYIHQ3qNPuLuRjjpE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/r5cZhF8RWsaYIHQ3qNPuLuRjjpE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/r5cZhF8RWsaYIHQ3qNPuLuRjjpE.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/r5cZhF8RWsaYIHQ3qNPuLuRjjpE.jpg 5308w\",style:{aspectRatio:\"5308 / 3628\"},width:\"2654\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Old walls, timeless stories woven into the city's rhythm.\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"2000\",src:\"https://framerusercontent.com/images/lhSvmwokiapOTN4Z7VOJPjzYMQ.jpg\",srcSet:\"https://framerusercontent.com/images/lhSvmwokiapOTN4Z7VOJPjzYMQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/lhSvmwokiapOTN4Z7VOJPjzYMQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/lhSvmwokiapOTN4Z7VOJPjzYMQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/lhSvmwokiapOTN4Z7VOJPjzYMQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/lhSvmwokiapOTN4Z7VOJPjzYMQ.jpg 6000w\",style:{aspectRatio:\"6000 / 4000\"},width:\"3000\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"History flows by, as modern life cruises along the canal.\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1795\",src:\"https://framerusercontent.com/images/3sBxrzIqmxAgFPgW101Awj7YJU.jpg\",srcSet:\"https://framerusercontent.com/images/3sBxrzIqmxAgFPgW101Awj7YJU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3sBxrzIqmxAgFPgW101Awj7YJU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3sBxrzIqmxAgFPgW101Awj7YJU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/3sBxrzIqmxAgFPgW101Awj7YJU.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/3sBxrzIqmxAgFPgW101Awj7YJU.jpg 5386w\",style:{aspectRatio:\"5386 / 3590\"},width:\"2693\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Resting boats, waiting for the next adventure on still waters.\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1797\",src:\"https://framerusercontent.com/images/gnBk3W4GadDfAokCwyZvPJisUhg.jpg\",srcSet:\"https://framerusercontent.com/images/gnBk3W4GadDfAokCwyZvPJisUhg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gnBk3W4GadDfAokCwyZvPJisUhg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gnBk3W4GadDfAokCwyZvPJisUhg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/gnBk3W4GadDfAokCwyZvPJisUhg.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/gnBk3W4GadDfAokCwyZvPJisUhg.jpg 5392w\",style:{aspectRatio:\"5392 / 3594\"},width:\"2696\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Clouds captured, framed by the city\u2019s modern reflections.\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"2928\",src:\"https://framerusercontent.com/images/W6r1rRSQW3kYnfzfjkvXQr3FsmI.jpg\",srcSet:\"https://framerusercontent.com/images/W6r1rRSQW3kYnfzfjkvXQr3FsmI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/W6r1rRSQW3kYnfzfjkvXQr3FsmI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/W6r1rRSQW3kYnfzfjkvXQr3FsmI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/W6r1rRSQW3kYnfzfjkvXQr3FsmI.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/W6r1rRSQW3kYnfzfjkvXQr3FsmI.jpg 5857w\",style:{aspectRatio:\"5857 / 5857\"},width:\"2928\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Promises in neon, but shadows linger beneath.\"})})}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/t(\"h3\",{children:[\"Colors of Life: A Personal Perspective\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/t(\"p\",{children:[\"Moments that reflect the richness and variety of life. Each photo captures the essence of color in its purest form, offering a unique glimpse into the world as seen through my lens, where every hue tells a story.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"2437\",src:\"https://framerusercontent.com/images/8SaUOudmGgTri9nSUpUQfFFguWo.jpg\",srcSet:\"https://framerusercontent.com/images/8SaUOudmGgTri9nSUpUQfFFguWo.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/8SaUOudmGgTri9nSUpUQfFFguWo.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/8SaUOudmGgTri9nSUpUQfFFguWo.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/8SaUOudmGgTri9nSUpUQfFFguWo.jpg 3249w\",style:{aspectRatio:\"3249 / 4874\"},width:\"1624\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Lost in thoughts, his pen weaves stories under an urban sky.\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"944\",src:\"https://framerusercontent.com/images/2bykT1xdLm4nayghgINmnY4ZSNU.jpg\",srcSet:\"https://framerusercontent.com/images/2bykT1xdLm4nayghgINmnY4ZSNU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2bykT1xdLm4nayghgINmnY4ZSNU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2bykT1xdLm4nayghgINmnY4ZSNU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/2bykT1xdLm4nayghgINmnY4ZSNU.jpg 2832w\",style:{aspectRatio:\"2832 / 1888\"},width:\"1416\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Bold colors on the move, breaking the monotony of the everyday.\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1673\",src:\"https://framerusercontent.com/images/p90sbJubXHeGXyzhcZbEkK0NI.jpg\",srcSet:\"https://framerusercontent.com/images/p90sbJubXHeGXyzhcZbEkK0NI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/p90sbJubXHeGXyzhcZbEkK0NI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/p90sbJubXHeGXyzhcZbEkK0NI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/p90sbJubXHeGXyzhcZbEkK0NI.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/p90sbJubXHeGXyzhcZbEkK0NI.jpg 5950w\",style:{aspectRatio:\"5950 / 3346\"},width:\"2975\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"The future unfolds in the glow of the present.\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"2000\",src:\"https://framerusercontent.com/images/WRW6Om6GI61c0byVI3W3dLNgvI.jpg\",srcSet:\"https://framerusercontent.com/images/WRW6Om6GI61c0byVI3W3dLNgvI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WRW6Om6GI61c0byVI3W3dLNgvI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WRW6Om6GI61c0byVI3W3dLNgvI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/WRW6Om6GI61c0byVI3W3dLNgvI.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/WRW6Om6GI61c0byVI3W3dLNgvI.jpg 6000w\",style:{aspectRatio:\"6000 / 4000\"},width:\"3000\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Worlds within worlds, magnified to reveal delicate artistry.\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1557\",src:\"https://framerusercontent.com/images/FppE2eaWLeH1bqyEV41HhvOeJng.jpg\",srcSet:\"https://framerusercontent.com/images/FppE2eaWLeH1bqyEV41HhvOeJng.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FppE2eaWLeH1bqyEV41HhvOeJng.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FppE2eaWLeH1bqyEV41HhvOeJng.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/FppE2eaWLeH1bqyEV41HhvOeJng.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/FppE2eaWLeH1bqyEV41HhvOeJng.jpg 5538w\",style:{aspectRatio:\"5538 / 3115\"},width:\"2769\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"A weapon once of power, now preserved in intricate craftsmanship.\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"2941\",src:\"https://framerusercontent.com/images/OjbRHqI87UUxevP05JQO0IfFHk.jpg\",srcSet:\"https://framerusercontent.com/images/OjbRHqI87UUxevP05JQO0IfFHk.jpg?scale-down-to=1024 575w,https://framerusercontent.com/images/OjbRHqI87UUxevP05JQO0IfFHk.jpg?scale-down-to=2048 1151w,https://framerusercontent.com/images/OjbRHqI87UUxevP05JQO0IfFHk.jpg?scale-down-to=4096 2303w,https://framerusercontent.com/images/OjbRHqI87UUxevP05JQO0IfFHk.jpg 3309w\",style:{aspectRatio:\"3309 / 5883\"},width:\"1654\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Where gold meets the sky, and history rises high.\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1548\",src:\"https://framerusercontent.com/images/JwZM0CfqWOzavoWBzXGjYiQtLU.jpg\",srcSet:\"https://framerusercontent.com/images/JwZM0CfqWOzavoWBzXGjYiQtLU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JwZM0CfqWOzavoWBzXGjYiQtLU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JwZM0CfqWOzavoWBzXGjYiQtLU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/JwZM0CfqWOzavoWBzXGjYiQtLU.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/JwZM0CfqWOzavoWBzXGjYiQtLU.jpg 4646w\",style:{aspectRatio:\"4646 / 3097\"},width:\"2323\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"A crown of stone and gold, reigning beneath an open sky.\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]});export const richText6=/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"For this project, I had the privilege of working with LTTS, one of the largest companies in India and internationally, to create an impactful 2D animated video. Collaborating with a talented animator, my role was integral to bringing the project to life. I was responsible for storyboarding the animation based on the provided script, ensuring the visual narrative flowed seamlessly with the message the brand aimed to communicate. This required both an artistic vision and a deep understanding of the company's brand guidelines to ensure every visual element aligned with their identity.\"}),/*#__PURE__*/e(\"p\",{children:\"I used Adobe Illustrator to create precise 2D assets, translating abstract ideas from the script into clear, engaging visuals. My attention to detail ensured that every graphic element correctly represented the story, while also staying true to the brand\u2019s aesthetic and values. Managing the technical aspects of asset creation while aligning them with the overarching narrative was critical to ensuring the video\u2019s success.\"}),/*#__PURE__*/e(\"p\",{children:\"Once the visual elements were in place, I directed the sound design and animation transitions, making sure that every shift and motion on screen complemented the sound effects and music. By leading the team in these areas, I ensured the final animation not only looked visually appealing but also provided a cohesive and immersive experience for the viewer. This project highlighted my ability to balance technical expertise with creative direction, as well as my strong communication and leadership skills in guiding a project from concept to completion.\"}),/*#__PURE__*/t(\"p\",{children:[\"The result was a polished 2D animated video that met the client\u2019s needs and effectively communicated their message in a visually compelling way. Below are the storyboarding snapshots from the project.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"2250\",src:\"https://framerusercontent.com/images/8mKVp5ZzoGilyBPht3MTiMb7Hkk.jpg\",srcSet:\"https://framerusercontent.com/images/8mKVp5ZzoGilyBPht3MTiMb7Hkk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8mKVp5ZzoGilyBPht3MTiMb7Hkk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8mKVp5ZzoGilyBPht3MTiMb7Hkk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/8mKVp5ZzoGilyBPht3MTiMb7Hkk.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/8mKVp5ZzoGilyBPht3MTiMb7Hkk.jpg 8000w\",style:{aspectRatio:\"8000 / 4500\"},width:\"4000\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"2250\",src:\"https://framerusercontent.com/images/Ubw1WITRIUddR6RnMVXkYVYovc.jpg\",srcSet:\"https://framerusercontent.com/images/Ubw1WITRIUddR6RnMVXkYVYovc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ubw1WITRIUddR6RnMVXkYVYovc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ubw1WITRIUddR6RnMVXkYVYovc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ubw1WITRIUddR6RnMVXkYVYovc.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/Ubw1WITRIUddR6RnMVXkYVYovc.jpg 8000w\",style:{aspectRatio:\"8000 / 4500\"},width:\"4000\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"2250\",src:\"https://framerusercontent.com/images/OrnynnlSd5479kHaXchSXV5CI.jpg\",srcSet:\"https://framerusercontent.com/images/OrnynnlSd5479kHaXchSXV5CI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OrnynnlSd5479kHaXchSXV5CI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OrnynnlSd5479kHaXchSXV5CI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OrnynnlSd5479kHaXchSXV5CI.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/OrnynnlSd5479kHaXchSXV5CI.jpg 8000w\",style:{aspectRatio:\"8000 / 4500\"},width:\"4000\"}),/*#__PURE__*/e(\"h4\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h4\",{children:\"Animated Video\"}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(s,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(o,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/6rhKVSA_2j0\"})})}),/*#__PURE__*/t(\"h4\",{children:[/*#__PURE__*/e(\"br\",{}),\"Animated GIFs\"]}),/*#__PURE__*/t(\"p\",{children:[\"I worked on some animated GIFs for their social media.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"250\",src:\"https://framerusercontent.com/images/pbXM6SYHlFCTFAyVVeRiQ0ocWc.gif\",style:{aspectRatio:\"816 / 500\"},width:\"408\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"250\",src:\"https://framerusercontent.com/images/SNSRj2mDKhiItCDXIFD7aCRjbcA.gif\",style:{aspectRatio:\"816 / 500\"},width:\"408\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"250\",src:\"https://framerusercontent.com/images/SxXEdCgkXilgvQBm0xlKhI9cms.gif\",style:{aspectRatio:\"816 / 500\"},width:\"408\"}),/*#__PURE__*/t(\"h4\",{children:[/*#__PURE__*/e(\"br\",{}),\"Atlas Copco\"]}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(s,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(o,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/J88Hz6_Yc14\"})})})]});\nexport const __FramerMetadata__ = {\"exports\":{\"richText5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText2\":{\"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", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "richText", "u", "x", "p", "richText1", "ComponentPresetsConsumer", "Youtube", "richText2", "Link", "motion", "richText3", "richText4", "richText5", "richText6", "__FramerMetadata__"]
}
