{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/5RntGP0I11dGShtzMldK/YouTube.js", "ssg:https://framerusercontent.com/modules/u0ugK21Jz387UGW7Lz5o/bpReJkk7COWPM1pzCGRz/E7GHsAote.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={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.Off&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/ _jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:hasBorderRadius&&showVideo?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__PURE__*/ _jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res){switch(res){case ThumbnailOptions.Low:return`https://i.ytimg.com/vi/${videoId}/hqdefault.jpg`;case ThumbnailOptions.Medium:return`https://i.ytimg.com/vi/${videoId}/sddefault.jpg`;case ThumbnailOptions.High:return`https://i.ytimg.com/vi/${videoId}/maxresdefault.jpg`;default:return`https://i.ytimg.com/vi/${videoId}/0.jpg`;}}// 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\":{\"framerIntrinsicWidth\":\"560\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"315\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as e,jsxs as r}from\"react/jsx-runtime\";import{addPropertyControls as t,ComponentPresetsConsumer as a,ControlType as i,Link as n}from\"framer\";import{motion as s}from\"framer-motion\";import*as o from\"react\";import{Youtube as l}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/5RntGP0I11dGShtzMldK/YouTube.js\";let h=\"PO13kQBvr\",d=\"EvvJ9dAQJ\",c=\"ZckEhR3V3\",p=\"V8PWfbvT8\",m=\"qmKEIZQOx\",f=\"ccwvp8dLJ\",g=\"vny2uxJff\",w=\"pRCIA93Kp\",u=\"Cuv3OOJMN\",y=\"KbGlbG3Yd\",b=\"uqlXIGJGa\",x=(e,r)=>{if(e&&\"object\"==typeof e)return{...e,alt:r};},T=[{id:\"RMXIyz4Cp\",[h]:!1,[d]:!1,[c]:\"Inspiration\",[p]:\"inspiration-old\",[m]:\"rgb(0, 153, 255)\",[f]:\"rgb(0, 153, 255)\",[g]:x(void 0,\"\"),[w]:x({src:\"https://framerusercontent.com/images/qaCQzVHRlVINEyMtAUA1QSnpx8.webp\"},\"\"),[u]:\"\",[y]:/*#__PURE__*/r(o.Fragment,{children:[/*#__PURE__*/r(\"p\",{children:[\"Books are \",/*#__PURE__*/e(n,{href:\"https://gamerant.com/star-trek-vulcan-mind-meld-explained/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/r(\"a\",{children:[/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"mind-meld\"})}),\" \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"devices\"})})]})}),\".\\xa0The \",/*#__PURE__*/e(\"em\",{children:\"good\"}),\" ones give you perspective; the \",/*#__PURE__*/e(\"em\",{children:\"great\"}),\" ones give you a ringside view of the author\u2019s mind and her ideas \u2014 like cheat codes that let you replay life from different viewpoints.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"This is a list of books I've found useful, and hope they help you too. \",/*#__PURE__*/r(\"em\",{children:[\"(Note\",/*#__PURE__*/e(\"strong\",{children:\":\"}),\" stars indicate especially insightful books)\"]})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/r(\"p\",{children:[\"\u26E9\",/*#__PURE__*/e(\"strong\",{children:\" Architecture & Cities\"})]}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://amzn.to/2ODt3vw\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"A Pattern Language - Christopher Alexander\"})}),\" **\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://amzn.to/2Jb0aAT\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Nature Of Order: The Phenomenon Of Life - Christopher Alexander\"})}),\" **\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://amzn.to/2Jb0aAT\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Geoffrey Bawa: The Complete Works - Geoffrey Bawa\"})}),\" *\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://amzn.to/2AmsZaw\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Timeless Way Of Building - Christopher Alexander\"})})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://amzn.to/2PONG4f\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Walkable City: How Downtown Can Save America - Jeff Speck\"})})})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://amzn.to/2PONG4f\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Smart Growth Manual - Andres Duany\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/r(\"p\",{children:[\"\u2712\uFE0F\",/*#__PURE__*/e(\"strong\",{children:\" Biographies\"})]}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Let-People-Surfing-Education-Businessman-Including/dp/0143109677/ref=pd_sbs_14_1?_encoding=UTF8&pd_rd_i=0143109677&pd_rd_r=38fbdaba-7d2d-11e8-927c-e93808fe6901&pd_rd_w=Nh3Dw&pd_rd_wg=zh5wn&pf_rd_i=desktop-dp-sims&pf_rd_m=ATVPDKIKX0DER&pf_rd_p=5825442648805390339&pf_rd_r=DHPT7PQQ9X2QMZWA0RA1&pf_rd_s=desktop-dp-sims&pf_rd_t=40701&psc=1&refRID=DHPT7PQQ9X2QMZWA0RA1\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Let My People Go Surfing - Yvon Chouinard\"})}),\"\\xa0**\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Benjamin-Franklin-American-Walter-Isaacson/dp/074325807X/ref=sr_1_3_twi_pap_2?s=books&ie=UTF8&qid=1530449193&sr=1-3&keywords=benjamin+franklin\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Benjamin Franklin: An American Life - Walter Isaacson\"})}),\" *\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Steve-Jobs-Walter-Isaacson/dp/1501127624/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1530449243&sr=1-4\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Steve Jobs - Walter Isaacson\"})}),\" *\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Jony-Ive-Genius-Greatest-Products-ebook/dp/B00ELXQYOI/ref=sr_1_1?s=books&ie=UTF8&qid=1408242262&sr=1-1&keywords=johnny+ive\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Jony Ive: The Genius Behind Apple\u2019s Greatest Products - Leander Kahney\"})}),\" *\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Elon-Musk-SpaceX-Fantastic-Future/dp/0062301233/ref=sr_1_3_twi_har_2?s=books&ie=UTF8&qid=1530448536&sr=1-3&keywords=elon+musk\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Elon Musk: Tesla, Spacex, And The Quest For A Fantastic Future - Ashlee Vance\"})})})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Shoe-Dog-Memoir-Creator-Nike/dp/1501135929/ref=pd_sbs_14_2?_encoding=UTF8&pd_rd_i=1501135929&pd_rd_r=eb33bedd-7d2c-11e8-8a53-f9fb5d4a5658&pd_rd_w=U7IWs&pd_rd_wg=bEerX&pf_rd_i=desktop-dp-sims&pf_rd_m=ATVPDKIKX0DER&pf_rd_p=5825442648805390339&pf_rd_r=W5RF3V2BQ2F624Z0TK65&pf_rd_s=desktop-dp-sims&pf_rd_t=40701&psc=1&refRID=W5RF3V2BQ2F624Z0TK65\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Shoe Dog - Phil Knight\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/r(\"p\",{children:[\"\uD83D\uDC69\u200D\uD83D\uDCBB\",/*#__PURE__*/e(\"strong\",{children:\"Design & Product\"})]}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Badass-Making-Awesome-Kathy-Sierra/dp/1491919019/ref=sr_1_6_twi_pap_1?s=books&ie=UTF8&qid=1530448264&sr=1-6&keywords=badass\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Badass: Making Users Awesome - Kathy Sierra\"})}),\" **\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Creative-Selection-Inside-Apples-Process-ebook/dp/B07F18HYX3\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Creative Selection: Inside Apple's Design Process \u2013 Ken Kocienda **\"})})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Designing-Mind-Simple-Understanding-Interface/dp/012375030X/ref=sr_1_1?s=books&ie=UTF8&qid=1370837644&sr=1-1&keywords=designing+with+the+mind+in+mind\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Designing With The Mind In Mind - Jeff Johnson\"})}),\"\\xa0**\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Understanding-Comics-Invisible-Scott-McCloud/dp/006097625X/ref=sr_1_1?s=books&ie=UTF8&qid=1370803208&sr=1-1&keywords=understanding+comics\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Understanding Comics - Scott Mccloud\"})}),\"\\xa0**\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Envisioning-Information-Edward-R-Tufte/dp/0961392118/ref=sr_1_1?s=books&ie=UTF8&qid=1370803253&sr=1-1&keywords=envisioning+information\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Envisioning Information - Edward Tufte\"})}),\"\\xa0*\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Dont-Make-Me-Think-Usability/dp/0321344758/ref=sr_1_1?s=books&ie=UTF8&qid=1370837720&sr=1-1&keywords=don%27t+make+me+think\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Don't Make Me Think - Steve Krug\"})}),\"\\xa0*\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Art-Game-Design-Lenses-Second/dp/1466598646/ref=sr_1_2_twi_pap_1?s=books&ie=UTF8&qid=1530448221&sr=1-2&keywords=art+of+game+design+a\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Art Of Game Design - Jesse Schell\"})}),\"\\xa0*\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Universal-Principles-Design-Revised-Updated/dp/1592535879/ref=sr_1_sc_1?s=books&ie=UTF8&qid=1370837670&sr=1-1-spell&keywords=universal+pricinplies+of+design\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Universal Principles Of Design - William Lidwell\"})}),\"\\xa0*\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/INSPIRED-Create-Tech-Products-Customers/dp/1119387507/ref=sr_1_1_twi_har_2?s=books&ie=UTF8&qid=1530448162&sr=1-1&keywords=inspired+how+to+create+products+customers+love\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Inspired: How To Create Tech Products Customers Love - Marty Cagan\"})}),\" *\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Designing-Type-5th-Essential-Typography/dp/0823014134/ref=sr_1_1?s=books&ie=UTF8&qid=1370837276&sr=1-1&keywords=designing+with+type\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Designing With Type - James Craig\"})})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Art-Photography-Personal-Approach-Expression/dp/1681982102/ref=sr_1_1?ie=UTF8&qid=1528085129&sr=8-1&keywords=art+of+photography\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Art Of Photography - Bruce Barnbaum\"})})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Visual-Display-Quantitative-Information/dp/1930824130/ref=sr_1_1_atc_badge_A2N1U4I2KOS032_twi_pap_2?s=books&ie=UTF8&qid=1530447021&sr=1-1&keywords=The+Visual+Display+of+Quantitative+Information\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Visual Display Of Quantitative Information - Edward Tufte\"})})})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Design-Everyday-Things-Revised-Expanded/dp/0465050654/ref=sr_1_1_twi_pap_1?s=books&ie=UTF8&qid=1530448135&sr=1-1&keywords=design+of+everyday+things\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Design Of Everyday Things - Don Norman\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/r(\"p\",{children:[\"\u2764\uFE0F\",/*#__PURE__*/e(\"strong\",{children:\" Health\"})]}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Eat-Drink-Be-Healthy-Harvard/dp/0743266420/ref=sr_1_1?s=books&ie=UTF8&qid=1370837305&sr=1-1&keywords=eat+drink+and+be+healthy\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Eat, Drink & Be Healthy - Walter Willett\"})}),\"\\xa0*\"]})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Your-Brain-Work-Strategies-Distraction/dp/0061771295/ref=sr_1_1?s=books&ie=UTF8&qid=1370837695&sr=1-1&keywords=your+brain+at+work\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Your Brain At Work \u2013 David Rock\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/r(\"p\",{children:[\"\uD83C\uDFAD\",/*#__PURE__*/e(\"strong\",{children:\" History & Culture\"})]}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Guns-Germs-Steel-Fates-Societies/dp/0393317552\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Guns, Germs & Steel - Jared Diamond\"})}),\" **\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Lessons-History-Will-Durant/dp/143914995X/ref=sr_1_1?ie=UTF8&qid=1530445342&sr=8-1&keywords=lessons+of+history\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Lessons Of History - Will & Ariel Durant\"})}),\"\\xa0**\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Sapiens-Humankind-Yuval-Noah-Harari/dp/0062316117/ref=sr_1_1_twi_pap_2?s=books&ie=UTF8&qid=1530445653&sr=1-1&keywords=sapiens\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Sapiens - Yuval Harari\"})}),\" **\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/The-Better-Angels-Our-Nature/dp/1455883115\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Better Angels Of Our Nature - Steven Pinker\"})}),\"\\xa0*\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Myths-Live-Joseph-Campbell/dp/0140194614/ref=sr_1_1?s=books&ie=UTF8&qid=1530445157&sr=1-1&keywords=myths+to+live+by\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Myths To Live By - Joseph Campbell\"})})})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Genghis-Khan-Making-Modern-World/dp/0609809644/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1530445558&sr=1-1\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Genghis Khan And The Making Of The Modern World - Jack Weatherford\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"\uD83D\uDE4F Life\"})}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Be-You-Are-Teachings-Maharshi/dp/0140190627/ref=sr_1_1?ie=UTF8&qid=1370842352&sr=8-1&keywords=be+as+you+are\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Be As You Are - Ramana Maharishi\"})}),\"\\xa0**\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Being-Conscious-Presence-Wu-Hsin-ebook/dp/B01III7FEO/ref=sr_1_1?ie=UTF8&qid=1528085486&sr=8-1&keywords=being-Conscious-Presence\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Being Conscious Presence - Wu Hsin\"})}),\"\\xa0**\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Lost-Writings-Wu-Hsin-Non-Duality/dp/1500259853/ref=pd_bxgy_3?_encoding=UTF8&pd_rd_i=1500259853&pd_rd_r=e6129e95-7d22-11e8-8230-d3c4b6c9c6f4&pd_rd_w=KkKLI&pd_rd_wg=ONv0p&pf_rd_i=desktop-dp-sims&pf_rd_m=ATVPDKIKX0DER&pf_rd_p=3914568618330124508&pf_rd_r=4G661SS0T7W7K27BS80Y&pf_rd_s=desktop-dp-sims&pf_rd_t=40701&psc=1&refRID=4G661SS0T7W7K27BS80Y\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Lost Writings Of Wu Hsin: Pointers To Non-Duality (Series) - Wu Hsin\"})}),\" **\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Mans-Search-Meaning-Viktor-Frankl/dp/080701429X/ref=sr_1_1_twi_pap_2?s=books&ie=UTF8&qid=1530446941&sr=1-1&keywords=man%27s+search+for+meaning\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Man's Search For Meaning - Viktor Frankl\"})}),\"\\xa0**\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Tao-Te-Ching-Laozi/dp/0060812451/ref=sr_1_7?s=books&ie=UTF8&qid=1530445067&sr=1-7&keywords=tao+te+ching\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Tao Te Ching - Lao Tzu\"})}),\" *\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Freedom-Known-Jiddu-Krishnamurti/dp/0060648082/ref=sr_1_1_atc_badge_A2N1U4I2KOS032_twi_pap_1?s=books&ie=UTF8&qid=1530446447&sr=1-1&keywords=freedom+from+the+known\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Freedom From The Known - Jiddu Krishnamurti\"})}),\" *\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Four-Agreements-Practical-Personal-Freedom/dp/1878424319/ref=sr_1_1?s=books&ie=UTF8&qid=1408242985&sr=1-1&keywords=+The+Four+Agreements\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Four Agreements - Don Miguel Ruiz\"})}),\"\\xa0*\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Mindfulness-Plain-English-Anniversary-Edition/dp/0861719069/ref=sr_1_1?ie=UTF8&qid=1370842328&sr=8-1&keywords=mindfulness+in+plain+english\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Mindfulness In Plain English - Bhante Henepola Gunaratana\"})})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Siddhartha-Hermann-Hesse/dp/8129102048/ref=tmm_hrd_swatch_0?_encoding=UTF8&qid=1530445935&sr=1-1\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Siddhartha - Hermann Hesse\"})})})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Meditations-New-Translation-Marcus-Aurelius/dp/0812968255/ref=sr_1_4_twi_pap_1?s=books&ie=UTF8&qid=1530448671&sr=1-4&keywords=meditations+marcus+aurelius\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Meditations - Marcus Aurelius\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/r(\"p\",{children:[\"\uD83D\uDCE2\",/*#__PURE__*/e(\"strong\",{children:\" Marketing\"})]}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Positioning-The-Battle-Your-Mind/dp/0071373586/ref=pd_bxgy_b_img_y\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Positioning - Al Ries\"})}),\"\\xa0**\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/How-Brands-Become-Icons-Principles/dp/1578517745/ref=sr_1_1?s=books&ie=UTF8&qid=1530448713&sr=1-1&keywords=how+brands+become+icons\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"How Brands Become Icons: The Principles Of Cultural Branding - D.B Holt\"})}),\"\\xa0**\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Ogilvy-Advertising-David/dp/039472903X/ref=sr_1_1_twi_pap_1?s=books&ie=UTF8&qid=1530448969&sr=1-1&keywords=ogilvy+on+advertising\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Ogilvy On Advertising - David Ogilvy\"})}),\"\\xa0**\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/22-Immutable-Laws-Marketing-Violate/dp/0887306667/ref=sr_1_1?s=books&ie=UTF8&qid=1370837335&sr=1-1&keywords=22+immutable+laws+of+marketing\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The 22 Immutable Laws Of Marketing - Al Ries\"})}),\" *\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Crossing-Chasm-Marketing-Disruptive-Mainstream/dp/0060517123/ref=sr_1_1?s=books&ie=UTF8&qid=1370838000&sr=1-1&keywords=crossing+the+chasm\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Crossing The Chasm - Goeffrey Moore\"})}),\" *\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Made-Stick-Ideas-Survive-Others/dp/1400064287/ref=sr_1_1?s=books&ie=UTF8&qid=1370837956&sr=1-1&keywords=made+to+stick\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Made To Stick - Chip & Dan Heath\"})}),\"\\xa0*\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Scientific-Advertising-Claude-Hopkins/dp/1603866361/ref=sr_1_1_twi_pap_2?s=books&ie=UTF8&qid=1530446620&sr=1-1&keywords=scientific+advertising+by+claude+hopkins\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Scientific Advertising - Claude Hopkins\"})})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Crystallizing-Public-Opinion-Edward-Bernays/dp/193543926X/ref=sr_1_1_twi_pap_2?s=books&ie=UTF8&qid=1530448329&sr=1-1&keywords=crystallizing+public+opinion+by+edward+bernays\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Crystallizing Public Opinion - Edward Bernays\"})})})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Advertising-Methods-Prentice-Business-Classics/dp/0130957011/ref=sr_1_1?s=books&ie=UTF8&qid=1530448758&sr=1-1&keywords=tested+advertising+methods+caples\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Tested Advertising Methods - John Caples\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"\uD83D\uDCB5 Money\"})}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Rich-Dad-Poor-Robert-Kiyosaki-ebook/dp/B004XZR63M/ref=sr_1_1?s=books&ie=UTF8&qid=1408195745&sr=1-1&keywords=+Rich+Dad+Poor+Dad\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Rich Dad, Poor Dad - Robert Kiyosaki\"})}),\"\\xa0**\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Millionaire-Next-Thomas-Stanley-Ph-D-ebook/dp/B00CLT31D6/ref=sr_1_1_twi_1?s=books&ie=UTF8&qid=1425212556&sr=1-1&keywords=the+millionaire+next+door\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Millionaire Next Door - Thomas Stanley\"})}),\"\\xa0*\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Four-Pillars-Investing-Building-Portfolio-ebook/dp/B0041842TW/ref=sr_1_1?ie=UTF8&qid=1425211998&sr=8-1&keywords=four+pillars+of\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Four Pillars Of Investing - William J. Bernstein\"})})})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Richest-Man-Babylon-Original-Restored/dp/9562913783/ref=sr_1_3?s=books&ie=UTF8&qid=1425212689&sr=1-3&keywords=the+richest+man+in+babylon\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Richest Man In Babylon - George Clason\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"\u23F1 Personal Productivity\"})}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Habits-Highly-Effective-People-Anniversary-ebook/dp/B00GOZV3TM/ref=sr_1_1?s=books&ie=UTF8&qid=1408243341&sr=1-1&keywords=7+habits+of+highly+effective+people\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The 7 Habits Of Highly Effective People - Stephen Covey\"})}),\"\\xa0**\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Effective-Executive-Harperbusiness-Essentials-ebook/dp/B000FC11JW/ref=sr_1_1_twi_1?s=books&ie=UTF8&qid=1425212383&sr=1-1&keywords=the+effective+executive\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Effective Executive - Peter Drucker\"})}),\"\\xa0*\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"http://decisive:%20How%20to%20make%20better%20choices%20in%20life%20and%20work/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Decisive: How To Make Better Choices In Life And Work - Chip & Dan Heath\"})})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Do-Work-Steven-Pressfield-ebook/dp/B00NK0MJBK/ref=sr_1_1_twi_1?s=books&ie=UTF8&qid=1425212598&sr=1-1&keywords=do+the+work\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Do The Work - Steven Pressfield\"})})})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/dp/0143126563/ref=sr_1_3_twi_pap_2?s=books&ie=UTF8&qid=1530446279&sr=1-3&keywords=getting+things+done\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Getting Things Done - David Allen\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"\uD83D\uDC68\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC66 Psychology\"})}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Influence-Psychology-Persuasion-Business-Essentials/dp/006124189X/ref=sr_1_1?s=books&ie=UTF8&qid=1370837611&sr=1-1&keywords=psychology+of+influence\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Influence: The Psychology Of Persuasion - Robert Cialdini\"})}),\"\\xa0**\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Leadership-Self-Deception-Getting-Out-Box/dp/1576759776/ref=sr_1_2_twi_pap_2?s=books&ie=UTF8&qid=1530446687&sr=1-2&keywords=leadership+and+self+deception\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Leadership And Self-Deception - The Arbinger Institute\"})}),\"\\xa0*\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Games-People-Play-Psychology-Relationships/dp/0141040270/ref=sr_1_2?s=books&ie=UTF8&qid=1370837394&sr=1-2&keywords=games+people+play\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Games People Play - Eric Berne\"})}),\"\\xa0*\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Crucial-Conversations-Talking-Stakes-Second-ebook/dp/B005K0AYH4/ref=sr_1_1?s=books&ie=UTF8&qid=1408195894&sr=1-1&keywords=+Crucial+Conversations\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Crucial Conversations - Kerry Patterson\"})}),\"\\xa0*\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Why-We-What-Understanding-Self-Motivation/dp/0140255265/ref=sr_1_1?s=books&ie=UTF8&qid=1530446105&sr=1-1&keywords=why+we+do\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"We Why Do What We Do - Edward Deci\"})}),\" *\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/How-Win-Friends-Influence-People-ebook/dp/B0044XUINS/ref=sr_1_1_twi_1?s=books&ie=UTF8&qid=1425214763&sr=1-1&keywords=how+to+win+friends+and+influence+people\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"How To Win Friends And Influence People - Dale Carnegie\"})})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Mars-Women-Venus-Communication-Relationships-ebook/dp/B006UN3K4O/ref=sr_1_1?s=books&ie=UTF8&qid=1425212336&sr=1-1&keywords=men+are+from+mars\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Men Are From Mars, Women Are From Venus - John Gray\"})})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Never-Split-Difference-Negotiating-Depended/dp/0062407805/ref=sr_1_1?s=books&ie=UTF8&qid=1530445280&sr=1-1&keywords=never+split\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Never Split The Difference - Chris Voss\"})})})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Man-His-Symbols-Carl-Jung/dp/0440351839/ref=sr_1_1?s=books&ie=UTF8&qid=1530448480&sr=1-1&keywords=man+and+his+symbols\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Man And His Symbols - Carl Jung\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"\uD83C\uDFE2 Strategy & Business\"})}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Innovators-Dilemma-Revolutionary-Change-Business/dp/0062060244/ref=sr_1_1?s=books&ie=UTF8&qid=1370838047&sr=1-1&keywords=innovators+dilemma\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Innovators Dilemma - Clayton Christensen\"})}),\"\\xa0**\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Getting-Real-Smarter-Successful-Application/dp/0578012812/ref=sr_1_2?s=books&ie=UTF8&qid=1530448931&sr=1-2&keywords=getting+real\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Getting Real - Jason Fried, Dhh\"})}),\"\\xa0**\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Zero-One-Notes-Start-Future-ebook/dp/B00KHX0II4/ref=sr_1_1_twi_1?s=books&ie=UTF8&qid=1425212651&sr=1-1&keywords=zero+to+one\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Zero To One - Peter Thiel\"})}),\"\\xa0**\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Rework-Jason-Fried/dp/0307463745/ref=sr_1_1?s=books&ie=UTF8&qid=1370838027&sr=1-1&keywords=rework\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Rework - Jason Fried, Dhh\"})}),\"\\xa0*\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Score-Takes-Care-Itself-Philosophy/dp/1591843472/ref=sr_1_1_twi_pap_1?s=books&ie=UTF8&qid=1530446581&sr=1-1&keywords=the+score+takes+care+of+itself+by+bill+walsh\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Score Takes Care Of Itself - Bill Walsh\"})}),\"\\xa0*\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Turn-Ship-Around-Turning-Followers/dp/1591846404/ref=sr_1_1_twi_har_2?s=books&ie=UTF8&qid=1530446857&sr=1-1&keywords=turn+the+ship+around\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Turn The Ship Around - David Marquet\"})}),\"\\xa0*\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/High-Output-Management-Andrew-Grove/dp/0679762884/ref=sr_1_3_atc_badge_A2N1U4I2KOS032_twi_pap_1?s=books&ie=UTF8&qid=1530446969&sr=1-3&keywords=high+output+management+by+andrew+s.+grove\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"High Output Management - Andy Grove\"})}),\"\\xa0*\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Master-Switch-Information-Empires-Vintage/dp/0307390993/ref=sr_1_1?s=books&ie=UTF8&qid=1408195483&sr=1-1&keywords=++++*+The+Master+Switch\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Master Switch: The Rise And Fall Of Information Empires - Tim Wu\"})}),\"\\xa0*\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Profit-Zone-Strategic-Business-Tomorrows-ebook/dp/B000XUDGI0/ref=sr_1_1?s=books&ie=UTF8&qid=1408195867&sr=1-1&keywords=+The+Profit+Zone\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Profit Zone - Adrian Slywotzky &\\xa0David Morrison\"})})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Founders-Work-Stories-Startups-Early/dp/1430210788/ref=sr_1_1?s=books&ie=UTF8&qid=1530445849&sr=1-1&keywords=founders+at+work\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Founders At Work - Jessica Livingston\"})})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Business-Model-Generation-Visionaries-Challengers/dp/2839905809\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Business Model Generation - Alexander Osterwalder\"})})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Viral-Loop-Power-Pass--ebook/dp/B003M5IAA2/ref=sr_1_1?s=books&ie=UTF8&qid=1370803291&sr=1-1&keywords=viral+loop\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Viral Loop - Adam Penenberg\"})})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Thinking-Systems-Donella-H-Meadows/dp/1603580557/ref=sr_1_1?s=books&ie=UTF8&qid=1408194948&sr=1-1&keywords=thinking+in+systems\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Thinking In Systems \u2013 Donella Meadows\"})})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Hard-Thing-About-Things-Building-ebook/dp/B00DQ845EA/ref=sr_1_1?s=books&ie=UTF8&qid=1408195705&sr=1-1&keywords=the+hard+thing+about+hard+things\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Hard Thing About Hard Things - Ben Horowitz\"})})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Creativity-Inc-Overcoming-Unseen-Inspiration-ebook/dp/B00GUOEMA4/ref=sr_1_1?s=books&ie=UTF8&qid=1408243063&sr=1-1&keywords=Creativity+Inc\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Creativity Inc - Ed Catmull\"})})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Certain-Win-Strategy-Applied-Business/dp/1413453767/ref=sr_1_1?s=books&ie=UTF8&qid=1530445429&sr=1-1&keywords=certain+to+win\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Certain To Win: The Strategy Of John Boyd - Chet Richards\"})})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Laymans-Guide-Law-Venkateshwara-Rao/dp/B005Q6XKTQ/ref=sr_1_7?s=books&ie=UTF8&qid=1530445481&sr=1-7&keywords=laymans+guide+to+law\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Layman's Guide To Law - Venkateshwara Rao\"})})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Behind-Cloud-Salesforce-com-Billion-Dollar-Company/dp/B00332AFUC/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1530445788&sr=1-2\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Behind The Cloud - Marc Benioff\"})})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Predictable-Revenue-Business-Practices-Salesforce-com/dp/B00ENFXJ0G/ref=sr_1_1?s=books&ie=UTF8&qid=1530448420&sr=1-1&keywords=predictable+revenue\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Predictable Revenue - Aaron Ross\"})})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Joel-Software-Occasionally-Developers-Designers/dp/1590593898/ref=sr_1_1?s=books&ie=UTF8&qid=1530448813&sr=1-1&keywords=joel+on+software\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Joel On Software - Joel Spolsky\"})})})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Designing-Freedom-CBC-Massey-Lecture/dp/0887845479/ref=sr_1_1_twi_pap_1?s=books&ie=UTF8&qid=1530449104&sr=1-1&keywords=designing+freedom\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Designing Freedom - Stafford Beer\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"\u270D\uFE0F Writing\"})}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Elements-Style-4th-William-Strunk/dp/0205313426/ref=sr_1_1?s=books&ie=UTF8&qid=1370837763&sr=1-1&keywords=elements+of+style\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Elements Of Style - Strunk & White\"})}),\"\\xa0**\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Elements-Eloquence-Secrets-Perfect-Phrase/dp/042527618X/ref=sr_1_1_twi_pap_1?s=books&ie=UTF8&qid=1530446217&sr=1-1&keywords=elements+of+eloquence\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Elements Of Eloquence - Mark Forsyth\"})}),\" **\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"http://100%20ways%20to%20improve%20your%20writing/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"100 Ways To Improve Your Writing - Gary Provost\"})})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Ultimate-Sales-Letter-Attract-Customers-ebook/dp/B004J35JFU/ref=sr_1_1?s=books&ie=UTF8&qid=1408195498&sr=1-1&keywords=the+ultimate+sales+letter\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Ultimate Sales Letter - Dan Kennedy\"})})})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Story-Template-Conquer-Universal-Structure-ebook/dp/B005JK6I9I/ref=sr_1_1?s=books&ie=UTF8&qid=1408195664&sr=1-1&keywords=the+story+template\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Story Template - Amy Deardon\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]})]}),[b]:null},{id:\"StJSKbWNg\",[h]:!0,[d]:!0,[c]:\"The secret behind all great copywriting\",[p]:\"the-secret-to-great-copywriting\",[m]:\"rgb(215, 60, 56)\",[f]:\"rgb(182, 52, 47)\",[g]:x(void 0,\"\"),[w]:x({src:\"https://framerusercontent.com/images/qaCQzVHRlVINEyMtAUA1QSnpx8.webp\"},\"\"),[u]:\"There's a curious thing you notice as you get better at your craft: great work always feels a certain\u2008way\u2008even if you're unable to articulate why.\",[y]:/*#__PURE__*/r(o.Fragment,{children:[/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,qkIZeUiF4jdGaLYrJNtoBSScUI.png\",\"data-framer-height\":\"314\",\"data-framer-width\":\"844\",height:\"157\",src:\"https://framerusercontent.com/images/qkIZeUiF4jdGaLYrJNtoBSScUI.png\",style:{aspectRatio:\"844 / 314\"},width:\"422\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"\u201FThere's nothing to writing. All you do is sit down at a typewriter and bleed \u2014 Ernest Hemingway\u201D\"})})}),/*#__PURE__*/r(\"p\",{children:[\"Writing is hard. Writing to \",/*#__PURE__*/e(\"em\",{children:\"sell\"}),\" is harder. Words must be written, read, rewritten and coaxed until they arrange themselves in a way that persuades.\\xa0\"]}),/*#__PURE__*/e(\"p\",{children:\"However, a while back I stumbled across something: a lot of persuasive copywriting share similarities.\\xa0\"}),/*#__PURE__*/r(\"p\",{children:[\"Some in how \",/*#__PURE__*/e(\"em\",{children:\"they sound\"}),\", others in how \",/*#__PURE__*/e(\"em\",{children:\"they feel\"}),\".\\xa0\"]}),/*#__PURE__*/r(\"p\",{children:[\"It turns out, there are indeed patterns which make writing more persuasive and memorable. They even have a name \u2014 rhetoric, and curiously enough were quite\\xa0\",/*#__PURE__*/e(n,{href:\"https://en.wikipedia.org/wiki/Sophist\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"popular back in the 4th century bc\"})}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Rhetoric in copywriting today\"})}),/*#__PURE__*/e(\"p\",{children:\"While not common knowledge today, rhetoric is still used by the best copywriters, and is often what makes an ad work. The one below for instance.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,zBZcBevMDCWPuLdpggUBWRVk8nQ.png\",\"data-framer-height\":\"1582\",\"data-framer-width\":\"1024\",height:\"791\",src:\"https://framerusercontent.com/images/zBZcBevMDCWPuLdpggUBWRVk8nQ.png\",style:{aspectRatio:\"1024 / 1582\"},width:\"512\"}),/*#__PURE__*/e(\"p\",{children:\"Adidas celebrating its classic superstar line of shoes.\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/r(\"em\",{children:[/*#__PURE__*/e(\"strong\",{children:\"50 Years, forever young\"}),\" \u2014\"]}),\"\\xa0notice how the words stop & pull you in, how they roll off the tongue.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Imagine if it said \",/*#__PURE__*/e(\"em\",{children:\"50 years, forever classic\"}),\". Not quite the same, is it? That\u2019s the power of \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"alliteration\"})}),\", a rhetorical device in which similar sounds are repeated; the sound of the \",/*#__PURE__*/e(\"em\",{children:\"y\"}),\"\\xa0in this case.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Here\u2019s a few more examples. Once you see how it works, you start seeing them \",/*#__PURE__*/e(\"em\",{children:\"everywhere\"}),\".\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,9TdlEXsAKFeq1EMuUNMJTxTToMw.png\",\"data-framer-height\":\"625\",\"data-framer-width\":\"1327\",height:\"312\",src:\"https://framerusercontent.com/images/9TdlEXsAKFeq1EMuUNMJTxTToMw.png\",style:{aspectRatio:\"1327 / 625\"},width:\"663\"}),/*#__PURE__*/e(\"p\",{children:\"Alliterations. Once you see them, there's no unseeing them.\"}),/*#__PURE__*/r(\"p\",{children:[\"Apple, in particular, loves rhetorical devices. They even have a favorite\u2014the \",/*#__PURE__*/e(\"strong\",{children:\"tricolon\"}),\"\u2014a device where 3 similar phrases are repeated in quick succession.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Here\u2019s the banner\\xa0on the \",/*#__PURE__*/e(n,{href:\"https://www.apple.com/macbook-pro/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"apple mac pro page\"})}),\".\\xa0Notice anything?\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,dqsQoJWxieuls3VtsuP42EoUBpE.png\",\"data-framer-height\":\"1566\",\"data-framer-width\":\"2518\",height:\"783\",src:\"https://framerusercontent.com/images/dqsQoJWxieuls3VtsuP42EoUBpE.png\",style:{aspectRatio:\"2518 / 1566\"},width:\"1259\"}),/*#__PURE__*/e(\"p\",{children:\"Apple loves its tricolons.\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"More power. More performance. More pro\"}),\"\\xa0sure sounds a lot more powerful than \",/*#__PURE__*/e(\"em\",{children:\"the most powerful computer you can buy\"}),\".\"]}),/*#__PURE__*/e(\"p\",{children:\"You don't even need full phrases.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,74CeyR9bt8Edqnk2VqCbFhaA.png\",\"data-framer-height\":\"568\",\"data-framer-width\":\"1084\",height:\"284\",src:\"https://framerusercontent.com/images/74CeyR9bt8Edqnk2VqCbFhaA.png\",style:{aspectRatio:\"1084 / 568\"},width:\"542\"}),/*#__PURE__*/e(\"p\",{children:\"Single word tricolon. The trick is to end on a surprising note.\"}),/*#__PURE__*/r(\"p\",{children:[\"However, not all rhetorical devices play with sound. \",/*#__PURE__*/e(\"strong\",{children:\"Synaesthesia\"}),\", for instance, mixes up the senses\u2014colours as smells, sounds as tastes, tastes as touch\u2014in a way that pleasantly surprises your brain.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Here\u2019s coca-cola\\xa0using synaesthesia with \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"taste the feeling\"})})]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,8tfiAepCQIoB7CPzniQxhwBFWQ.png\",\"data-framer-height\":\"624\",\"data-framer-width\":\"961\",height:\"312\",src:\"https://framerusercontent.com/images/8tfiAepCQIoB7CPzniQxhwBFWQ.png\",style:{aspectRatio:\"961 / 624\"},width:\"480\"}),/*#__PURE__*/r(\"p\",{children:[\"You can\u2019t really\\xa0\",/*#__PURE__*/e(\"em\",{children:\"taste\"}),\"\\xa0a feeling. but since when did logic triumph over charm.\"]}),/*#__PURE__*/r(\"p\",{children:[\"And skittles asking you to \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"taste the rainbow\"})}),\".\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,gUTh5BdhTsAkb5HVCK6Ss2ygLAE.png\",\"data-framer-height\":\"704\",\"data-framer-width\":\"1279\",height:\"352\",src:\"https://framerusercontent.com/images/gUTh5BdhTsAkb5HVCK6Ss2ygLAE.png\",style:{aspectRatio:\"1279 / 704\"},width:\"639\"}),/*#__PURE__*/e(\"p\",{children:\"If only rainbows could be eaten.\"}),/*#__PURE__*/r(\"p\",{children:[\"Occasionally though, you spot an \",/*#__PURE__*/e(\"strong\",{children:\"antithesis\"}),\" \u2013 a device where contrasting ideas are placed next to each other.\\xa0Nike, the \",/*#__PURE__*/e(n,{href:\"https://www.slideshare.net/cultbranding.com/archetypal-branding-2\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"original warrior brand\"})}),\", uses it to great effect below.\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,rU67mAwfTpX8INrqxavPVShwKZQ.png\",\"data-framer-height\":\"927\",\"data-framer-width\":\"1327\",height:\"463\",src:\"https://framerusercontent.com/images/rU67mAwfTpX8INrqxavPVShwKZQ.png\",style:{aspectRatio:\"1327 / 927\"},width:\"663\"}),/*#__PURE__*/e(\"p\",{children:\"Games talk when you wear nike, notwithstanding that they're inanimate concepts.\"}),/*#__PURE__*/e(\"p\",{children:\"Ironically, for brands that scream how unique you are, nike, adidas & under armour are strikingly similar in their fondness for the antithesis.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,oV3eKzaZvF0r0Rj4RcbKPctYNY.png\",\"data-framer-height\":\"927\",\"data-framer-width\":\"1327\",height:\"463\",src:\"https://framerusercontent.com/images/oV3eKzaZvF0r0Rj4RcbKPctYNY.png\",style:{aspectRatio:\"1327 / 927\"},width:\"663\"}),/*#__PURE__*/e(\"p\",{children:\"Sports brands \u2013 brothers from different mothers.\"}),/*#__PURE__*/r(\"p\",{children:[\"And that leaves us with one last device to talk about today: the one that gets all the likes, and takes home all the awards \u2014 the \",/*#__PURE__*/e(\"strong\",{children:\"visual pun\"}),\".\"]}),/*#__PURE__*/r(\"p\",{children:[\"The visual pun is a device where the imagery & words mean more than the obvious. Here's \",/*#__PURE__*/e(\"em\",{children:\"that other cola brand\"}),\", Pepsi, dressing up for halloween.\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,H2ZXtpXeUjCg1KFGmEgEDVTY1So.png\",\"data-framer-height\":\"1697\",\"data-framer-width\":\"1200\",height:\"848\",src:\"https://framerusercontent.com/images/H2ZXtpXeUjCg1KFGmEgEDVTY1So.png\",style:{aspectRatio:\"1200 / 1697\"},width:\"600\"}),/*#__PURE__*/e(\"p\",{children:\"It's who\\xa0you are\\xa0inside that counts. Especially if you're Pepsi.\"}),/*#__PURE__*/e(\"p\",{children:\"Visual puns often require cultural context in order to appreciate them. Here's one final ad from India's original food app \u2013 zomato.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,24r5nM2A0FUIV9RzMF1Ieqs8Z84.png\",\"data-framer-height\":\"427\",\"data-framer-width\":\"1000\",height:\"213\",src:\"https://framerusercontent.com/images/24r5nM2A0FUIV9RzMF1Ieqs8Z84.png\",style:{aspectRatio:\"1000 / 427\"},width:\"500\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.youtube.com/watch?v=JGwWNGJdvx8\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"I imagine ed shereen's smiling somewhere\"})}),\".\"]}),/*#__PURE__*/r(\"p\",{children:[\"I hope these devices help you get started.\\xa0For a more complete list, here's something i made for myself: \",/*#__PURE__*/e(n,{href:\"https://airtable.com/shrmdPPGVbTzrLGv8/tblmPGcBDRjD3dA8B\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Felix's mostly-complete list of rhetorical devices for use in good & bad times alike\"})}),\".\"]}),/*#__PURE__*/e(\"p\",{children:\"\u200D\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"One final tease:\"}),\" here are panels by \",/*#__PURE__*/e(n,{href:\"https://www.instagram.com/ketnipz/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"ketnipz\"})})}),\", a wonderfully whimsical 18-year old artist who's strangely insightful for his age. Do you see a pattern in the words? That's an \",/*#__PURE__*/e(n,{href:\"https://airtable.com/shrmdPPGVbTzrLGv8/tblmPGcBDRjD3dA8B\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"assonant rhyme\"})})}),\".\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,ZXZ2K1YiFyeojhJ62MNXjn5Ho.png\",\"data-framer-height\":\"409\",\"data-framer-width\":\"1327\",height:\"204\",src:\"https://framerusercontent.com/images/ZXZ2K1YiFyeojhJ62MNXjn5Ho.png\",style:{aspectRatio:\"1327 / 409\"},width:\"663\"}),/*#__PURE__*/e(\"p\",{children:\"Now, go forth and write world-class copy, dear reader.\"})]}),[b]:/*#__PURE__*/r(o.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"\u2014\"}),/*#__PURE__*/e(\"h6\",{children:/*#__PURE__*/e(\"strong\",{children:\"Notes:\"})}),/*#__PURE__*/r(\"ol\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(34, 34, 34)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"22px\"},children:/*#__PURE__*/r(\"p\",{children:[\"Rhetorical devices work because they are \",/*#__PURE__*/e(\"em\",{children:\"interesting\"}),\". They are \",/*#__PURE__*/e(\"em\",{children:\"interesting\"}),\" because they are \",/*#__PURE__*/e(\"em\",{children:\"surprising\"}),\". And \",/*#__PURE__*/e(\"em\",{children:\"surprising\"}),\" because they reveal\\xa0unexpected patterns.\\xa0\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"22px\"},children:/*#__PURE__*/e(\"p\",{children:\"Consequently, the more you overuse them, the less effective they become; rhetoric loves moderation.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"22px\"},children:/*#__PURE__*/r(\"p\",{children:[\"Surprise is a common element of \",/*#__PURE__*/e(n,{href:\"https://arxiv.org/pdf/0812.4360.pdf\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"art, stories and jokes\"})}),\" \u2014\\xa0\",/*#__PURE__*/e(n,{href:\"http://sites.ieee.org/pcs/elements-of-visual-communication/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"visual composition\"})}),\", \",/*#__PURE__*/e(n,{href:\"https://www.youtube.com/watch?v=oP3c1h8v2ZQ\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"the story arc\"})}),\" and \",/*#__PURE__*/e(n,{href:\"https://www.huffingtonpost.com/scott-weems/joke-book_b_4892644.html\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"the punchline\"})}),\" all work because of surprise. In a sense, \",/*#__PURE__*/e(n,{href:\"https://plus.maths.org/content/information-surprise\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"all information is surprise.\"})})]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"22px\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.amazon.com/Elements-Eloquence-Secrets-Perfect-Phrase/dp/042527618X/ref=sr_1_1?ie=UTF8&qid=1534861516&sr=8-1&keywords=elements+of+eloquence\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"em\",{children:\"The elements of eloquence\"})})}),\" is the best resource i\u2019ve found on rhetorical devices. It helps that the author is witty. Wodehouse witty, even.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"22px\"},children:/*#__PURE__*/e(\"p\",{children:\"Rhetoric doesn't excuse the need to address\\xa0your customer's underlying needs.\\xa0First say it straight, then say it great.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"22px\"},children:/*#__PURE__*/r(\"p\",{children:[\"Rhetoric\\xa0helps communicate a \",/*#__PURE__*/e(\"em\",{children:\"specific\"}),\" message. But brands still need to have a consistent, differentiated place in your mind \",/*#__PURE__*/e(\"em\",{children:\"across messages\"}),\"\\xa0\u2013 that's something \",/*#__PURE__*/e(n,{href:\"https://www.slideshare.net/cultbranding.com/archetypal-branding-2\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"archetypes\"})}),\" and \",/*#__PURE__*/e(n,{href:\"https://www.slideshare.net/superbrands_poland/douglas-holt-how-to-build-an-iconic-brand\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"cultural branding\"})}),\" help with. Follow the rabbit hole \u2013 this stuff is fascinating \",/*#__PURE__*/e(\"em\",{children:\"and useful\"}),\".\"]})})]})]})},{id:\"kYTYyzL_h\",[h]:!0,[d]:!0,[c]:\"Creating intuitive products that users just get\",[p]:\"understanding-user-needs\",[m]:\"rgb(78, 68, 183)\",[f]:\"rgb(65, 58, 152)\",[g]:x(void 0,\"\"),[w]:x({src:\"https://framerusercontent.com/images/0s7GrbYH0hOYuyMzW8XdqPrZrKI.png\"},\"\"),[u]:\"\",[y]:/*#__PURE__*/r(o.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Creating products is hard.\"}),/*#__PURE__*/r(\"p\",{children:[\"I used to think this was due to the technical challenge involved. That\u2019s still true but several products later, I believe there\u2019s two other aspects that are even harder:\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"1. Creating something users want\"}),\" and \",/*#__PURE__*/e(\"strong\",{children:\"2. Creating something that users intuitively get\"}),\".\"]}),/*#__PURE__*/r(\"p\",{children:[\"There\u2019s some great material on the first part (\",/*#__PURE__*/e(n,{href:\"https://firstround.com/review/how-superhuman-built-an-engine-to-find-product-market-fit/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Rahul Vohra on building Superhuman\"})}),\" & \",/*#__PURE__*/e(n,{href:\"https://hitenism.com/slack-product-market-fit-survey/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Hiten Shah on identifying Product-Market fit\"})}),\" are fantastic) but little on the second.\"]}),/*#__PURE__*/e(\"p\",{children:\"In this post, I'd like to share an approach that helps with the second part.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Making products user just get\"})}),/*#__PURE__*/e(\"p\",{children:\"Most products are designed based on their underlying implementation model. This means that the user interface exposes functionality similar to how its modelled in the underlying implementation.\"}),/*#__PURE__*/e(\"p\",{children:\"But to create a truly intuitive product, one must first understand its intended users, their behaviours and their motivations. This in turn shifts the solution from thinking in terms of the implementation model to what users need and when.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"A simple example to illustrate this\"})}),/*#__PURE__*/r(\"p\",{children:[\"In a music player app, from an implementation standpoint the actions for Play, Next and Shuffle have the same importance \u2014 they\u2019re all verbs associated with the Player object. Hence when designed in terms of the implementation model, the actions have the same prominence on the UI.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"However, from a user\u2019s standpoint these actions are very different in importance. Users use Play more often than Next, and that in turn much more often than Shuffle. \",/*#__PURE__*/e(\"strong\",{children:\"A design that \"}),/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"respects \"})}),/*#__PURE__*/e(\"strong\",{children:\"the user reflects this difference in the UI.\"})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"How to uncover user needs &\\xa0behaviour\"})}),/*#__PURE__*/r(\"p\",{children:[\"The best process I've found to uncover these is to talk to customers and capture their behaviours &\\xa0motivations through job stories. (The folks at Intercom have a \",/*#__PURE__*/e(n,{href:\"https://www.intercom.com/blog/accidentally-invented-job-stories/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"great writeup on thi\"})}),\"s. Alan Klement's \",/*#__PURE__*/e(n,{href:\"https://jtbd.info/5-tips-for-writing-a-job-story-7c9092911fc9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"writing is insightful too\"})}),\".)\"]}),/*#__PURE__*/r(\"p\",{children:[\"The table below shows the format I use to capture job stories. Picturing the user along with the situation helps visualise the situation \",/*#__PURE__*/e(\"em\",{children:\"like a movie\"}),\" and understand the job better.\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,UbcNwUBzSHU8gdoS1C30np0Y.png\",\"data-framer-height\":\"1236\",\"data-framer-width\":\"1444\",height:\"618\",src:\"https://framerusercontent.com/images/UbcNwUBzSHU8gdoS1C30np0Y.png\",style:{aspectRatio:\"1444 / 1236\"},width:\"722\"}),/*#__PURE__*/r(\"p\",{children:[\"The last column captures possible solutions for the user's needs. Decoupling solutions from problems in this manner allows for better solutions to emerge later (and \",/*#__PURE__*/e(\"em\",{children:\"by others too\"}),\" since everybody can now understand the underlying problem being solved.)\"]}),/*#__PURE__*/e(\"p\",{children:\"Eventually as you capture more stories, the features required in the product and their relative importance in various flows become clear. This lets you prioritise features which are frequently required over those which are not.\"}),/*#__PURE__*/r(\"p\",{children:[\"The\",/*#__PURE__*/e(\"strong\",{children:\" right design \"}),\"then emerges from this.\"]})]}),[b]:/*#__PURE__*/r(o.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"\u2013\"}),/*#__PURE__*/e(\"h3\",{children:\"Notes:\"}),/*#__PURE__*/r(\"ol\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(34, 34, 34)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"22px\"},children:/*#__PURE__*/e(\"p\",{children:\"Talking to customers is the best way of understanding what they're trying to accomplish using your product. However, I also find job stories useful to capture insights gleaned from secondary research \u2013 the format helps weed out jobs that sound implausible.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"22px\"},children:/*#__PURE__*/e(\"p\",{children:\"When critiquing a product's flow or static design, you often find functionality that isn't supported by any job story (or a rare one.) Thus job stories are also a powerful tool to reduce complexity in products.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"22px\"},children:/*#__PURE__*/e(\"p\",{children:\"Job stories are usually written in present tense. However, I find describing situations in the past tense helps visualise them better. This is similar to how books written in third-person, past-tense are easier to picture in the mind's eye than those in first-person, present-tense.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"22px\"},children:/*#__PURE__*/r(\"p\",{children:[\"Jobs can also be used as a lens to understand when disruption might happen (the classic \",/*#__PURE__*/e(n,{href:\"https://hbr.org/2015/12/what-is-disruptive-innovation\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"Clayton Christensen Theory of Disruptive Innovation\"})})}),\" is descriptive but not predictive.) \",/*#__PURE__*/e(n,{href:\"https://medium.com/swlh/emergent-layers-chapter-2-overserved-and-underserved-customers-6d5ce546531d\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"Alex Danco's series on Emergent Layers\"})})}),/*#__PURE__*/e(\"strong\",{children:\" is an extremely enlightening\"}),\" read on this.\"]})})]})]})},{id:\"vIGMJnycY\",[h]:!0,[d]:!0,[c]:\"The lessons of history across 5,000 years\",[p]:\"the-lessons-of-history\",[m]:\"rgb(35, 59, 196)\",[f]:\"rgb(29, 49, 159)\",[g]:x(void 0,\"\"),[w]:x({src:\"https://framerusercontent.com/images/2CIXsFsqtxN7tDE9S0sxWHSefHs.png\"},\"\"),[u]:\"\",[y]:/*#__PURE__*/r(o.Fragment,{children:[/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,7rbLl7zGeKSeIq6EzKVMuXVR39I.png\",\"data-framer-height\":\"459\",\"data-framer-width\":\"318\",height:\"229\",src:\"https://framerusercontent.com/images/7rbLl7zGeKSeIq6EzKVMuXVR39I.png\",style:{aspectRatio:\"318 / 459\"},width:\"159\"}),/*#__PURE__*/r(\"p\",{children:[\"The \",/*#__PURE__*/e(\"em\",{children:\"Lessons of History\"}),\" is a rare book.\\xa0\"]}),/*#__PURE__*/r(\"p\",{children:[\"While most books on history retrace the past, this one aims to foretell the future.\\xa0How? By identifying patterns that stay constant across human history\",/*#__PURE__*/e(\"em\",{children:\".\"}),\"\\xa0\"]}),/*#__PURE__*/r(\"p\",{children:[\"These are my notes from the book. \",/*#__PURE__*/e(\"strong\",{children:\"\u200D\"})]}),/*#__PURE__*/e(\"p\",{children:\"\u200D\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Insights from the book:\"})}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(34, 34, 34)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"23.8px\"},children:/*#__PURE__*/r(\"p\",{children:[\"Freedom and equality are opposites. The more free an environment, the more people better suited to its needs accumulate its rewards. Which means you \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"can't have both perfect freedom and perfect equality\"})}),\".\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"23.8px\"},children:/*#__PURE__*/e(\"p\",{children:\"Inequality is not only natural, it grows with civilisation. Specialisation of tasks increase over time which in turn makes people unequally valuable to their group.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"23.8px\"},children:/*#__PURE__*/e(\"p\",{children:\"Instability arises at some point \u2014 the many poor versus the few rich. This becomes increasingly critical until wealth is redistributed either by legislation or by revolution.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"23.8px\"},children:/*#__PURE__*/r(\"p\",{children:[\"Religion and puritanism rise when laws are feeble, skepticism and paganism prevail when the laws and government are strong.\",/*#__PURE__*/e(\"em\",{children:\"\u200D\"})]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"23.8px\"},children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"People who manage money\"})}),\" usually prevail over \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"people who manage people\"})}),\" and who in turn prevail over \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"people who manage things\"})}),\".\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"23.8px\"},children:/*#__PURE__*/e(\"p\",{children:\"History is inflationary. This implies hoarding assets is a better strategy than hoarding money.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"23.8px\"},children:/*#__PURE__*/r(\"p\",{children:[\"The \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"only real revolution is in the enlightenment of the mind\"})}),\" and the improvement of character, the only real emancipation is individual, and the only real revolutionists are philosophers and saints.\"]})})]})]}),[b]:null},{id:\"TUbpO2ZD1\",[h]:!0,[d]:!0,[c]:\"The red balloon challenge and the power of incentives\",[p]:\"the-red-balloon-challenge\",[m]:\"rgb(140, 56, 154)\",[f]:\"rgb(108, 43, 120)\",[g]:x(void 0,\"\"),[w]:x({src:\"https://framerusercontent.com/images/9AhrQPdvjxDcez4DFHhNtT216I.png\"},\"\"),[u]:\"\",[y]:/*#__PURE__*/r(o.Fragment,{children:[/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,MVuIxhJUj8xQncFrAXdSSGSVI.png\",\"data-framer-height\":\"1500\",\"data-framer-width\":\"3000\",height:\"750\",src:\"https://framerusercontent.com/images/MVuIxhJUj8xQncFrAXdSSGSVI.png\",style:{aspectRatio:\"3000 / 1500\"},width:\"1500\"}),/*#__PURE__*/r(\"p\",{children:[\"In 2009, \",/*#__PURE__*/e(n,{href:\"https://en.wikipedia.org/wiki/DARPA\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"DARPA\"})}),\" (the american govt agency famous for helping create the internet), launched something called the \",/*#__PURE__*/e(n,{href:\"https://en.wikipedia.org/wiki/DARPA_Network_Challenge\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"Red Balloon Challenge\"})})}),\".\\xa0\"]}),/*#__PURE__*/e(\"p\",{children:\"As part of this challenge, DARPA hid 10 red balloons in various locations across the United states. The team that first located all ten balloons would\\xa0be declared the winner.\"}),/*#__PURE__*/e(\"p\",{children:\"The challenge was hard not only because the\\xa0balloons' locations were unknown, but also because participants had to sift through numerous incorrect and misleading reports. Hence\\xa0DARPA was ready to wait upto a week for teams to send in their submissions.\\xa0\"}),/*#__PURE__*/r(\"p\",{children:[\"Incredibly, the winning team from MIT won the challenge in \",/*#__PURE__*/e(\"em\",{children:\"under 9 hrs.\"}),\"\\xa0And despite learning about the challenge only a few days prior.\"]}),/*#__PURE__*/e(\"p\",{children:\"How did they do this?\"}),/*#__PURE__*/r(\"p\",{children:[\"It turns out that while several teams crowdsourced spotters & verifiers from the general public, the MIT team did something else in addition \u2013 they designed \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"Incentives that encouraged participation\"})}),/*#__PURE__*/e(\"strong\",{children:\".\"}),\"\\xa0\"]}),/*#__PURE__*/e(\"p\",{children:\"Specifically, the team promised\\xa0$2000 to the 1st person to locate a balloon, $1000 to their inviter, $500 to the inviter's inviter and so on.\\xa0Here's how this worked:\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,FBnRzV7UtRnBFKBmT2aUclm7dZg.png\",\"data-framer-height\":\"550\",\"data-framer-width\":\"726\",height:\"275\",src:\"https://framerusercontent.com/images/FBnRzV7UtRnBFKBmT2aUclm7dZg.png\",style:{aspectRatio:\"726 / 550\"},width:\"363\"}),/*#__PURE__*/r(\"p\",{children:[\"This meant that \",/*#__PURE__*/r(\"em\",{children:[/*#__PURE__*/e(\"strong\",{children:\"not only did more people join\"}),\", \",/*#__PURE__*/e(\"strong\",{children:\"but the joiners also got others on board\"})]}),\" since they stood to earn more.\\xa0\",/*#__PURE__*/e(\"em\",{children:\"Even people\"}),\" \",/*#__PURE__*/e(\"em\",{children:\"outside the country joined\"}),\" since they could get rewarded just by inviting the right people.\\xa0\"]}),/*#__PURE__*/e(\"p\",{children:\"And the more people that joined, the more the team's likelihood of winning \u2013 which they did.\"}),/*#__PURE__*/e(\"p\",{children:\"The right incentives are powerful indeed.\"})]}),[b]:/*#__PURE__*/r(o.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"\u2013\"}),/*#__PURE__*/e(\"h3\",{children:\"Notes:\"}),/*#__PURE__*/r(\"ol\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(34, 34, 34)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"22px\"},children:/*#__PURE__*/e(\"p\",{children:\"The mit team promised to donate any remaining amount to charity. This helped also create a sense of altruism.\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"22px\"},children:/*#__PURE__*/r(\"p\",{children:[\"Here's a \",/*#__PURE__*/e(n,{href:\"https://cacm.acm.org/magazines/2011/4/106587-reflecting-on-the-darpa-red-balloon-challenge/fulltext\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"good write-up of the strategies\"})})})}),\" employed by the top teams.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"22px\"},children:/*#__PURE__*/r(\"p\",{children:[\"In \",/*#__PURE__*/e(n,{href:\"https://www.youtube.com/watch?v=pqzcCfUglws\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/r(\"a\",{children:[\"charlie munger's \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"famous talk\"})})]})}),\", he lists incentives as the most important tool to\\xa0understand\\xa0people. I recommend going through the full talk.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"22px\"},children:/*#__PURE__*/e(\"p\",{children:\"Incentives for crowdsourced teams work when tasks can be broken down into discrete parts;\\xa0can we go further and design them to help with complex, creative tasks? (Open-source software such as linux & apache suggests that it's possible.)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"22px\"},children:/*#__PURE__*/r(\"p\",{children:[\"The better the technology we have to coordinate people, the better we're able to incentivize them. \",/*#__PURE__*/e(n,{href:\"https://continuations.com/post/126909987225/networks-firms-and-markets\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"Albert wenger's take on coordination vs motivation\"})})}),\" is an interesting read.\"]})})]})]})},{id:\"sQrXFl0Re\",[h]:!0,[d]:!0,[c]:\"On lessons learnt from creating\u2008products\",[p]:\"lessons-learnt-from-creating-products\",[m]:\"rgb(168, 25, 56)\",[f]:\"rgb(142, 21, 47)\",[g]:x(void 0,\"\"),[w]:x({src:\"https://framerusercontent.com/images/5UspRlnAvLQxpAxpFwyuLnhfQcE.png\"},\"\"),[u]:\"\",[y]:/*#__PURE__*/r(o.Fragment,{children:[/*#__PURE__*/e(s.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(a,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/5RntGP0I11dGShtzMldK/YouTube.js:Youtube\",children:r=>/*#__PURE__*/e(l,{...r,borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,isMixedBorderRadius:!1,isRed:!0,play:\"Off\",shouldMute:!0,thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=Wwc7idQLZhY&embeds_referring_euri=https%3A%2F%2Ffelixjamestin.webflow.io%2F&source_ve_path=MjM4NTE&feature=emb_title\"})})}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/r(\"em\",{children:[/*#__PURE__*/e(\"br\",{}),\"360 pixels\"]}),\" is a new show by product designers, Sanya & Palak.\\xa0Their aim is to create a space where practitioners can share insights from real-world experience.\\xa0\"]}),/*#__PURE__*/e(\"p\",{children:\"Here's a video of my conversation with them.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"I've learnt a lot from others who share freely and am glad to pay it forward.\"})]}),[b]:null},{id:\"ewNGtC8XT\",[h]:!0,[d]:!0,[c]:\"Introducing Mono: A themeset for Roam\",[p]:\"mono-a-themeset-for-roam-research\",[m]:\"rgb(51, 51, 51)\",[f]:\"rgb(28, 28, 28)\",[g]:x(void 0,\"\"),[w]:x({src:\"https://framerusercontent.com/images/fMC6ViPtmeRrX9FvCaVIjbeW1Y.png\"},\"\"),[u]:\"\",[y]:/*#__PURE__*/r(o.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"What is Roam?\"})}),/*#__PURE__*/r(\"p\",{children:[\"Roam is a tool that lets you effortlessly capture, remix and rediscover ideas; a \",/*#__PURE__*/e(\"em\",{children:\"second brain\"}),\" for your brain, if you will.\"]}),/*#__PURE__*/e(\"p\",{children:\"Here's two great introductions to it:\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(34, 34, 34)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"23.8px\"},children:/*#__PURE__*/r(\"p\",{children:[\"Nat Eliason\\xa0\u2013\\xa0\",/*#__PURE__*/e(n,{href:\"https://www.nateliason.com/blog/roam#1\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Roam: Why I Love It and How I Use It\"})})]})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-line-height\":\"23.8px\"},children:[/*#__PURE__*/r(\"p\",{children:[\"Shu Omi \u2013\\xa0\",/*#__PURE__*/e(n,{href:\"https://www.shuomi.me/blog/roam-research-course-a-complete-guide\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Roam Research Course: A Complete Guide\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"h2\",{children:\"Onto the themes\"}),/*#__PURE__*/e(\"p\",{children:\"Mono comes with several styles. See below for how to set them up.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,PoaqQYFC9aQ252crMg6Mx0wfGE.png\",\"data-framer-height\":\"4932\",\"data-framer-width\":\"2234\",height:\"2466\",src:\"https://framerusercontent.com/images/PoaqQYFC9aQ252crMg6Mx0wfGE.png?scale-down-to=4096\",style:{aspectRatio:\"2234 / 4932\"},width:\"1117\"}),/*#__PURE__*/e(\"p\",{children:\"\u200D\"}),/*#__PURE__*/e(\"h2\",{children:\"Step 1: Create a new page for your CSS\"}),/*#__PURE__*/r(\"p\",{children:[\"You can do this by creating a new \",/*#__PURE__*/e(\"em\",{children:\"[[roam/css]]\"}),\" page in Roam. This is where your styles sit.\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,DqCbrfttBjDuIjRSWbU0RA7lwVg.png\",\"data-framer-height\":\"468\",\"data-framer-width\":\"2052\",height:\"234\",src:\"https://framerusercontent.com/images/DqCbrfttBjDuIjRSWbU0RA7lwVg.png\",style:{aspectRatio:\"2052 / 468\"},width:\"1026\"}),/*#__PURE__*/e(\"p\",{children:\"\u200D\"}),/*#__PURE__*/e(\"h2\",{children:\"Step 2: Create a block for the Mono theme\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,zrzplPIcoS7mwj5UBlxVK1JomQ.png\",\"data-framer-height\":\"446\",\"data-framer-width\":\"2136\",height:\"223\",src:\"https://framerusercontent.com/images/zrzplPIcoS7mwj5UBlxVK1JomQ.png\",style:{aspectRatio:\"2136 / 446\"},width:\"1068\"}),/*#__PURE__*/e(\"p\",{children:\"\u200D\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Step 3: Create a code block under the theme\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,6DYMbAoWIZZShKUjeFopIqqrqw.png\",\"data-framer-height\":\"598\",\"data-framer-width\":\"1998\",height:\"299\",src:\"https://framerusercontent.com/images/6DYMbAoWIZZShKUjeFopIqqrqw.png\",style:{aspectRatio:\"1998 / 598\"},width:\"999\"}),/*#__PURE__*/e(\"p\",{children:\"\u200D\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Step 4: Change the code block's type to CSS\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Ye5Qi2vGDxJrSO2gACTLoeSFig.png\",\"data-framer-height\":\"604\",\"data-framer-width\":\"2146\",height:\"302\",src:\"https://framerusercontent.com/images/Ye5Qi2vGDxJrSO2gACTLoeSFig.png\",style:{aspectRatio:\"2146 / 604\"},width:\"1073\"}),/*#__PURE__*/e(\"p\",{children:\"\u200D\"}),/*#__PURE__*/e(\"h2\",{children:\"Step 4: Paste the theme's CSS into the code block\"}),/*#__PURE__*/e(\"p\",{children:\"You can copy Mono's CSS from the link below. Once you paste the CSS, Roam will update to reflect the new theme.\"}),/*#__PURE__*/r(\"p\",{children:[\"CSS\\xa0Link:\\xa0\",/*#__PURE__*/e(n,{href:\"https://github.com/felixjamestin/felixjamestin.github.io/blob/master/roam-themeset/themes.css\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"https://github.com/felixjamestin/felixjamestin.github.io/blob/master/roam-themeset/themes.css\"})})]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,EFVtYykAj7YEj2a3CGQvwwf1Dxc.png\",\"data-framer-height\":\"1880\",\"data-framer-width\":\"2326\",height:\"940\",src:\"https://framerusercontent.com/images/EFVtYykAj7YEj2a3CGQvwwf1Dxc.png\",style:{aspectRatio:\"2326 / 1880\"},width:\"1163\"}),/*#__PURE__*/e(\"p\",{children:\"\u200D\"}),/*#__PURE__*/e(\"h2\",{children:\"Step 5: Pick a style from the themeset\"}),/*#__PURE__*/e(\"p\",{children:\"You can change styles by coping over the current style at the top from one of the several styles in the CSS.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,6vDFu0YrSPMRj5OTuQbJFq2KE4.png\",\"data-framer-height\":\"1872\",\"data-framer-width\":\"2566\",height:\"936\",src:\"https://framerusercontent.com/images/6vDFu0YrSPMRj5OTuQbJFq2KE4.png\",style:{aspectRatio:\"2566 / 1872\"},width:\"1283\"}),/*#__PURE__*/e(\"p\",{children:\"\u200D\"}),/*#__PURE__*/e(\"h2\",{children:\"Step 6: ...and that's it. You're done \uD83C\uDF89\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[b]:null},{id:\"zGLlFrqAr\",[h]:!1,[d]:!0,[c]:\"What\u2008great\u2008work\u2008feels\u2008like\",[p]:\"what-great-work-feels-like\",[m]:\"rgb(0, 153, 255)\",[f]:\"rgb(0, 153, 255)\",[g]:x(void 0,\"\"),[w]:x({src:\"https://framerusercontent.com/images/qaCQzVHRlVINEyMtAUA1QSnpx8.webp\"},\"\"),[u]:\"There's a curious thing you notice as you get better at your craft: great work always feels a certain\u2008way\u2008even if you're unable to articulate why.\",[y]:/*#__PURE__*/r(o.Fragment,{children:[/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,ZQiNiwfUIq9AKURRMbg9jKgc97k.png\",\"data-framer-height\":\"1760\",\"data-framer-width\":\"1120\",height:\"880\",src:\"https://framerusercontent.com/images/ZQiNiwfUIq9AKURRMbg9jKgc97k.png\",style:{aspectRatio:\"1120 / 1760\"},width:\"560\"}),/*#__PURE__*/r(\"p\",{children:[\"There's a curious thing you notice as you get better at your craft: great work always \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"feels\"})}),/*#__PURE__*/e(\"strong\",{children:\"\\xa0\"}),/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"right\"})}),\". Add more to it and it feels decorated, remove even a little and it feels barren.\"]}),/*#__PURE__*/e(\"p\",{children:\"Like a piano riff with just the right notes.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"Or a paragraph with just the right words.\\xa0\"}),/*#__PURE__*/r(\"p\",{children:[\"And that's when you realize the underlying quality behind all great work:\\xa0\",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"it's\"})}),\"\\xa0\",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"less about what you add, and more about what you intentionally leave out.\"})})]}),/*#__PURE__*/r(\"p\",{children:[\"Truths are often rediscovered many times,\\xa0and unsurprisingly, folks \",/*#__PURE__*/e(\"em\",{children:\"across fields\"}),\" have arrived at the same truth:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"\u201CIt\u2019s not the notes you play, it\u2019s the notes you don\u2019t play \u2013\\xa0\",/*#__PURE__*/e(n,{href:\"https://en.wikipedia.org/wiki/Miles_Davis\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Miles Davis\"})}),\"\u201D\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"\u201CI would have written a shorter letter, but I didn\u2019t have the time \u2013\\xa0\",/*#__PURE__*/e(n,{href:\"https://en.wikipedia.org/wiki/Mark_Twain\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Mark Twain\"})}),\"\u201D\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"\u201CLess is better \u2013\\xa0\",/*#__PURE__*/e(n,{href:\"https://en.wikipedia.org/wiki/Dieter_Rams\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Dieter Rams\"})}),\"\u201D\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"\u201CMake all visual distinctions as subtle as possible while still effective \u2013 \",/*#__PURE__*/e(n,{href:\"https://en.wikipedia.org/wiki/Edward_Tufte\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Edward Tufte\"})}),\"\u201D\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"\u201CA good advertisement is one which sells the product without drawing attention to itself \u2013 \",/*#__PURE__*/e(n,{href:\"https://en.wikipedia.org/wiki/David_Ogilvy_(businessman)\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"David Ogilvy\"})}),\"\u201D\"]})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/r(\"p\",{children:[\"\u201CThe best code is no code at all \u2013\\xa0\",/*#__PURE__*/e(n,{href:\"https://en.wikipedia.org/wiki/Jeff_Atwood\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Jeff Atwood\"})}),\"\u201D\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]})]}),[b]:null},{id:\"StFJTf7Oh\",[h]:!1,[d]:!0,[c]:\"Goeffrey Bawa on architecture\",[p]:\"goeffrey-bawa-on-architecture\",[m]:\"rgb(0, 153, 255)\",[f]:\"rgb(0, 153, 255)\",[g]:x(void 0,\"\"),[w]:x({src:\"https://framerusercontent.com/images/qaCQzVHRlVINEyMtAUA1QSnpx8.webp\"},\"\"),[u]:\"Sri Lanka's most famous architect, Goeffrey Bawa, is known for buildings that are deeply true to their context.\u2008Here's an excerpt of him talking about his design principles.\",[y]:/*#__PURE__*/r(o.Fragment,{children:[/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,ewurC7Prv6ibXSIzPDhCJB2F7Iw.png\",\"data-framer-height\":\"1100\",\"data-framer-width\":\"1030\",height:\"550\",src:\"https://framerusercontent.com/images/ewurC7Prv6ibXSIzPDhCJB2F7Iw.png\",style:{aspectRatio:\"1030 / 1100\"},width:\"515\"}),/*#__PURE__*/r(\"p\",{children:[\"Sri Lankan architect, Goeffrey Bawa, is known for his incredible \",/*#__PURE__*/e(n,{href:\"http://www.geoffreybawa.com/work/the-early-years-contemporary-vernacular\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"body\"})}),\" \",/*#__PURE__*/e(n,{href:\"http://www.geoffreybawa.com/lunuganga-country-estate/introductionpage\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"of work\"})}),\", and for his approach of designing in context.\"]}),/*#__PURE__*/e(\"p\",{children:\"His design principles translate surprisingly well to software product design:\"}),/*#__PURE__*/e(\"p\",{children:\"1. Design to human needs\"}),/*#__PURE__*/e(\"p\",{children:\"2. Design within the larger context\"}),/*#__PURE__*/e(\"p\",{children:\"3. Stay true to the materials used\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[b]:null}];for(let e of T)Object.freeze(e);t(T,{PO13kQBvr:{defaultValue:!1,title:\"Featured\",type:i.Boolean},EvvJ9dAQJ:{defaultValue:!0,title:\"Show as blog post?\",type:i.Boolean},ZckEhR3V3:{defaultValue:\"\",title:\"Title\",type:i.String},V8PWfbvT8:{title:\"Slug\",type:i.String},qmKEIZQOx:{defaultValue:\"rgb(0, 153, 255)\",title:\"Color\",type:i.Color},ccwvp8dLJ:{defaultValue:\"rgb(0, 153, 255)\",title:\"Color 2\",type:i.Color},vny2uxJff:{title:\"Hero Image\",type:i.ResponsiveImage},pRCIA93Kp:{__defaultAssetReference:\"data:framer/asset-reference,qaCQzVHRlVINEyMtAUA1QSnpx8.webp?originalFilename=circle+1.webp&preferredSize=auto\",title:\"Card Image\",type:i.ResponsiveImage},Cuv3OOJMN:{defaultValue:\"\",displayTextArea:!1,title:\"One-liner\",type:i.String},KbGlbG3Yd:{defaultValue:\"\",title:\"Content\",type:i.RichText},uqlXIGJGa:{defaultValue:\"\",title:\"Footnotes\",type:i.RichText}}),T.displayName=\"Blog\";export default T;export const enumToDisplayNameFunctions={};export async function getSlugByRecordId(e,r){var t;return null===(t=T.find(r=>r.id===e))||void 0===t?void 0:t.V8PWfbvT8;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"data\",\"name\":\"data\",\"annotations\":{\"framerEnumToDisplayNameUtils\":\"2\",\"framerContractVersion\":\"1\",\"framerRecordIdKey\":\"id\",\"framerSlug\":\"V8PWfbvT8\",\"framerData\":\"\"}},\"enumToDisplayNameFunctions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getSlugByRecordId\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "h", "d", "c", "p", "m", "f", "g", "w", "u", "y", "b", "x", "e", "r", "T", "Link", "motion", "ComponentPresetsConsumer", "Youtube", "addPropertyControls", "ControlType", "E7GHsAote_default", "enumToDisplayNameFunctions", "getSlugByRecordId", "t", "__FramerMetadata__"]
}
