{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/BYmqpIvBnQRp9hbiqtiG/pDkMt4DD0DeUurU4xqM4/AWt_2FQyl.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.Off&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/ _jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__PURE__*/ _jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/ _jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/ _jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (57b1764)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import Footer from\"#framer/local/canvasComponent/lxsUiVAyR/lxsUiVAyR.js\";import Topbar from\"#framer/local/canvasComponent/pQWsMWkcK/pQWsMWkcK.js\";import Button from\"#framer/local/canvasComponent/SjXrwyuYd/SjXrwyuYd.js\";import Arc from\"#framer/local/codeFile/ZqdlGvR/Arc.js\";import*as sharedStyle2 from\"#framer/local/css/kEM386AUQ/kEM386AUQ.js\";import*as sharedStyle from\"#framer/local/css/o4hXGrCqI/o4hXGrCqI.js\";import*as sharedStyle1 from\"#framer/local/css/W8OZPSgmd/W8OZPSgmd.js\";import metadataProvider from\"#framer/local/webPageMetadata/AWt_2FQyl/AWt_2FQyl.js\";const TopbarFonts=getFonts(Topbar);const ArcFonts=getFonts(Arc);const ContainerWithFX=withFX(Container);const MotionDivWithFX=withFX(motion.div);const ButtonFonts=getFonts(Button);const YouTubeFonts=getFonts(YouTube);const FooterFonts=getFonts(Footer);const breakpoints={};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-xn5rJ\";const variantClassNames={ueLh2pMRU:\"framer-v-1is94tx\"};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const getProps=({height,id,width,...props})=>{return{...props};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const DoEWHLP6m3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ueLh2pMRU\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-d345d267-c7d6-4092-ad2c-563ab154ce74, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1is94tx\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m8iu2s-container\",nodeId:\"PB1q_ZISA\",scopeId:\"AWt_2FQyl\",children:/*#__PURE__*/_jsx(Topbar,{height:\"100%\",id:\"PB1q_ZISA\",layoutId:\"PB1q_ZISA\",style:{width:\"100%\"},variant:\"eoTXJYY6N\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-175keoq\",\"data-framer-name\":\"SPLASH\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1400,intrinsicWidth:2100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+56+-98),pixelHeight:1668,pixelWidth:2388,src:\"https://framerusercontent.com/images/SdOTYR8IRve2ssqSXqcBtBjMDY.gif\"},className:\"framer-1n4fqh\",\"data-framer-name\":\"Cover\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mst65r\",\"data-framer-name\":\"title + intro\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1te8a32\",\"data-framer-name\":\"Arrow Down\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-u0nqs9\",\"data-framer-name\":\"Arrow\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 166\"><path d=\"M 9 2.5 L 9 164\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-cb05e262-7bc9-447c-ac1a-2c424c0ac3f1, rgb(230, 230, 230)) /* {&quot;name&quot;:&quot;Black / 10&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 16.5 157 L 14.562 158.507 C 12.865 159.827 11.392 161.412 10.2 163.2 L 9 165 L 7.035 162.473 C 6.016 161.163 4.837 159.984 3.527 158.965 L 1 157\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-cb05e262-7bc9-447c-ac1a-2c424c0ac3f1, rgb(230, 230, 230)) /* {&quot;name&quot;:&quot;Black / 10&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 9 0 C 10.657 0 12 1.343 12 3 C 12 4.657 10.657 6 9 6 C 7.343 6 6 4.657 6 3 C 6 1.343 7.343 0 9 0 Z\" fill=\"var(--token-cb05e262-7bc9-447c-ac1a-2c424c0ac3f1, rgb(230, 230, 230)) /* {&quot;name&quot;:&quot;Black / 10&quot;} */\"></path></svg>',svgContentId:9665830306,withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-rddcir-container\",isAuthoredByUser:true,nodeId:\"cXUUTvm8I\",rendersWithMotion:true,scopeId:\"AWt_2FQyl\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Arc,{alignmentBaseline:\"bottom\",animate:true,animateDuration:5,animateEnd:150,animateStart:-50,color:\"rgb(219, 40, 0)\",cylinderHeight:0,flip:false,font:{font:\"Darker Grotesque\",fontSize:13,fontWeight:600,letterSpacing:2.7,wordSpacing:0},height:\"100%\",id:\"cXUUTvm8I\",layoutId:\"cXUUTvm8I\",rotate:true,rotateSpeed:0,slots:[],startOffset:0,style:{height:\"100%\",width:\"100%\"},text:\"VIEW CASE \u2022 VIEW CASE \u2022 VIEW CASE \u2022 \",type:\"circle\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rlzqen\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-z74r5\",\"data-framer-name\":\"title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7TGlicmUgQ2FzbG9uIFRleHQtaXRhbGlj\",\"--framer-font-family\":'\"Libre Caslon Text\", \"Libre Caslon Text Placeholder\", serif',\"--framer-font-size\":\"52px\",\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e28a5581-b715-4582-b4ea-e0c5e68be0db, rgb(153, 41, 0))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7QmFsbGV0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Ballet\", sans-serif',\"--framer-font-size\":\"95px\",\"--framer-font-style\":\"normal\"},children:\"R\"}),\"eddy\"]})}),className:\"framer-fc0vsw\",\"data-framer-name\":\"Title\",fonts:[\"GF;Libre Caslon Text-italic\",\"FS;Ballet-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j63fxb\",\"data-framer-name\":\"text area\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1motclw\",\"data-styles-preset\":\"o4hXGrCqI\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c27d3630-571e-4efe-b3e3-49b7d14e4239, rgb(12, 13, 13))\"},children:\"what i did\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-141s0m2\",\"data-styles-preset\":\"W8OZPSgmd\",style:{\"--framer-text-alignment\":\"left\"},children:[\"industrial design\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-2d5c4a4f-249a-413a-96b2-24709308ba7e, rgb(70, 68, 68))\"},children:\"ux/ui design\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-2d5c4a4f-249a-413a-96b2-24709308ba7e, rgb(70, 68, 68))\"},children:[\"user research\",/*#__PURE__*/_jsx(\"br\",{}),\"competitive analysis \",/*#__PURE__*/_jsx(\"br\",{}),\"wireframing prototyping\",/*#__PURE__*/_jsx(\"br\",{}),\"branding \"]})]})]}),className:\"framer-1x9xqf0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1motclw\",\"data-styles-preset\":\"o4hXGrCqI\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c27d3630-571e-4efe-b3e3-49b7d14e4239, rgb(12, 13, 13))\"},children:\"the result\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-141s0m2\",\"data-styles-preset\":\"W8OZPSgmd\",style:{\"--framer-text-alignment\":\"left\"},children:['From \"Redd\" to \"Reddy\" \u2014 along with new branding and packaging, this redesign ',/*#__PURE__*/_jsx(\"strong\",{children:\"expands the skincare experience beyond physical products to include digital interactions and playful animations.\"}),\" \"]})]}),className:\"framer-1tky79x\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-141s0m2\",\"data-styles-preset\":\"W8OZPSgmd\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c27d3630-571e-4efe-b3e3-49b7d14e4239, rgb(12, 13, 13))\"},children:'An educational, playful, and tactile skincare system designed for kids that I originally designed for my capstone at University of Washington\\'s industrial design program. Through illustration, storytelling, and interactive packaging, \"Redd\" taught children the importance of washing their faces and caring for their skin. I revisited this project to reimagine and refine it, applying new skills I\u2019ve developed since graduating.'})}),className:\"framer-n7fjv4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1motclw\",\"data-styles-preset\":\"o4hXGrCqI\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c27d3630-571e-4efe-b3e3-49b7d14e4239, rgb(12, 13, 13))\"},children:\"project type\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-141s0m2\",\"data-styles-preset\":\"W8OZPSgmd\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2d5c4a4f-249a-413a-96b2-24709308ba7e, rgb(70, 68, 68))\"},children:\"solo / capstone physical product\"})]}),className:\"framer-1y17b8e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+812+0+0+809.3116-545+515-114,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-11cerz3-container\",id:\"11cerz3\",nodeId:\"lYNeK4yKB\",scopeId:\"AWt_2FQyl\",children:[/*#__PURE__*/_jsx(Button,{DoEWHLP6m:DoEWHLP6m3bnx0g({overlay}),height:\"100%\",id:\"lYNeK4yKB\",layoutId:\"lYNeK4yKB\",Rpa0AOrsv:\"https://www.figma.com/file/QhBn4ITDwPt6ycgDJB3M9V/Your-Daily?type=design&node-id=0%3A1&mode=design&t=afdqMoDZasLpubcQ-1\",rpoVdy4MY:true,variant:\"bPA5GBic_\",vwvRStlFO:true,width:\"100%\",YcT58yHz8:\"figma file\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1fuldbz\"),\"data-framer-portal-id\":\"11cerz3\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"dHJ90EU0L\")}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+812+0+0+809.3116-545+515-114,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1dbal8j-container\",id:\"1dbal8j\",nodeId:\"c3B_T0Kxu\",scopeId:\"AWt_2FQyl\",children:[/*#__PURE__*/_jsx(Button,{DoEWHLP6m:DoEWHLP6m3bnx0g({overlay:overlay1}),height:\"100%\",id:\"c3B_T0Kxu\",layoutId:\"c3B_T0Kxu\",Rpa0AOrsv:\"https://www.figma.com/proto/c88zNGYvPiRhB2uTVKi2VB/Your-Daily---Future?page-id=86%3A2&node-id=210-1859&starting-point-node-id=210%3A1859&scaling=scale-down&mode=design&t=duzFJOtD5gv4dAUM-1\",rpoVdy4MY:true,variant:\"bPA5GBic_\",vwvRStlFO:true,width:\"100%\",YcT58yHz8:\"prototype\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-l6j67z\"),\"data-framer-portal-id\":\"1dbal8j\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"wKzNlnzR1\")}),getContainer())})})]})})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4du7re\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k9u9e7\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1704+30.3+0),pixelHeight:1490,pixelWidth:1490,src:\"https://framerusercontent.com/images/rFYZ9AbbWzsGRNnB61BkIjyYTo.png\"},className:\"framer-nla6ar\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1704+30.3+0),pixelHeight:3e3,pixelWidth:3e3,src:\"https://framerusercontent.com/images/39DI8EmT1jy6NU7bb3hpZsb1Vw.jpg\"},className:\"framer-1tunhl7\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dy4ika\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2307+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9aOtfhZ87VNUJUmqVmBFfuSj0n4.gif\"},className:\"framer-boabd5\"})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1rw2g7g\",\"data-framer-name\":\"original concept vid\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l11qk5\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19isfqf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ujGSDI1oC\",scopeId:\"AWt_2FQyl\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"ujGSDI1oC\",isMixedBorderRadius:false,isRed:true,layoutId:\"ujGSDI1oC\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/_vlKansmbag?si=7dJSYcNUQehnvEUp\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1olig76\",\"data-styles-preset\":\"kEM386AUQ\",style:{\"--framer-text-color\":\"var(--token-2d5c4a4f-249a-413a-96b2-24709308ba7e, rgb(70, 68, 68))\"},children:\"original concept \u2014 video presentation\"})}),className:\"framer-105rlps\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1htg2wn\",\"data-framer-name\":\"how might we\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vkxq59\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvIE1vbm8tNzAwaXRhbGlj\",\"--framer-font-family\":'\"Roboto Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-21d02a57-18e0-45d1-af60-ea1ff3470365, rgb(255, 130, 92))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvIE1vbm8tcmVndWxhcg==\",\"--framer-font-size\":\"25px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--token-d345d267-c7d6-4092-ad2c-563ab154ce74, rgb(255, 255, 255))\"},children:\"implement ways to make \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"25px\"},children:\"information about autoimmune conditions more accessible\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvIE1vbm8tcmVndWxhcg==\",\"--framer-font-size\":\"25px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--token-d345d267-c7d6-4092-ad2c-563ab154ce74, rgb(255, 255, 255))\"},children:\"? \"}),/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-font-size\":\"25px\"},children:[/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{})]}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvIE1vbm8tcmVndWxhcg==\",\"--framer-font-size\":\"25px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--token-d345d267-c7d6-4092-ad2c-563ab154ce74, rgb(255, 255, 255))\"},children:\"create a space for women with underlying health conditions to \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"25px\"},children:\"feel understood and connected\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvIE1vbm8tcmVndWxhcg==\",\"--framer-font-size\":\"25px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--token-d345d267-c7d6-4092-ad2c-563ab154ce74, rgb(255, 255, 255))\"},children:\" with each other?\"}),/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-font-size\":\"25px\"},children:[/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{})]}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvIE1vbm8tcmVndWxhcg==\",\"--framer-font-size\":\"25px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--token-d345d267-c7d6-4092-ad2c-563ab154ce74, rgb(255, 255, 255))\"},children:\"motivate people to \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"25px\"},children:\"include small yet impactful habits into their daily routine\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvIE1vbm8tcmVndWxhcg==\",\"--framer-font-size\":\"25px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--token-d345d267-c7d6-4092-ad2c-563ab154ce74, rgb(255, 255, 255))\"},children:\"?\"})]})}),className:\"framer-1pzxu3t\",fonts:[\"GF;Roboto Mono-700italic\",\"GF;Roboto Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1motclw\",\"data-styles-preset\":\"o4hXGrCqI\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d345d267-c7d6-4092-ad2c-563ab154ce74, rgb(255, 255, 255))\"},children:\"how might we\"})}),className:\"framer-vy7qqi\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1bg3562\",\"data-framer-name\":\"visual design\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s14pxw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1olig76\",\"data-styles-preset\":\"kEM386AUQ\",style:{\"--framer-text-color\":\"var(--token-2d5c4a4f-249a-413a-96b2-24709308ba7e, rgb(70, 68, 68))\"},children:\"visual design\"})}),className:\"framer-by87j7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1970,intrinsicWidth:3006,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4371+40+72+700-643),pixelHeight:1970,pixelWidth:3006,positionX:\"center\",positionY:\"center\",sizes:\"1000px\",src:\"https://framerusercontent.com/images/DmCgcqujuj1ce4yZYEdW7bxaQrk.png\",srcSet:\"https://framerusercontent.com/images/DmCgcqujuj1ce4yZYEdW7bxaQrk.png?scale-down-to=512 512w,https://framerusercontent.com/images/DmCgcqujuj1ce4yZYEdW7bxaQrk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DmCgcqujuj1ce4yZYEdW7bxaQrk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DmCgcqujuj1ce4yZYEdW7bxaQrk.png 3006w\"},className:\"framer-2nmwbh\"})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:512,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5295,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mmramz-container\",nodeId:\"SCILzOOxt\",scopeId:\"AWt_2FQyl\",children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"SCILzOOxt\",layoutId:\"SCILzOOxt\",style:{height:\"100%\",width:\"100%\"},variant:\"U1jjBmzzh\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xn5rJ.framer-k3jt7o, .framer-xn5rJ .framer-k3jt7o { display: block; }\",\".framer-xn5rJ.framer-1is94tx { align-content: center; align-items: center; background-color: var(--token-d345d267-c7d6-4092-ad2c-563ab154ce74, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-xn5rJ .framer-1m8iu2s-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-xn5rJ .framer-175keoq { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 756px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-xn5rJ .framer-1n4fqh { bottom: -55px; flex: none; left: 0px; max-width: 100%; overflow: hidden; position: absolute; right: 0px; top: -98px; z-index: 1; }\",\".framer-xn5rJ .framer-mst65r { align-content: center; align-items: center; background-color: var(--token-d345d267-c7d6-4092-ad2c-563ab154ce74, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 892px; justify-content: flex-start; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; z-index: 2; }\",\".framer-xn5rJ .framer-1te8a32 { flex: none; gap: 10px; height: 269px; left: 1066px; overflow: hidden; position: absolute; top: 12px; width: 111px; z-index: 1; }\",\".framer-xn5rJ .framer-u0nqs9 { background-color: var(--token-d345d267-c7d6-4092-ad2c-563ab154ce74, #ffffff); flex: none; height: 166px; left: calc(50.45045045045047% - 18px / 2); position: absolute; top: calc(50.185873605947975% - 166px / 2); width: 18px; }\",\".framer-xn5rJ .framer-rddcir-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 104px); position: absolute; right: 4px; top: 0px; width: 104px; z-index: 1; }\",\".framer-xn5rJ .framer-rlzqen { flex: none; height: 91%; overflow: hidden; position: sticky; width: 1153px; }\",\".framer-xn5rJ .framer-z74r5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 61px; height: min-content; justify-content: flex-start; left: 64px; min-height: 138px; overflow: visible; padding: 0px; position: absolute; top: 67px; width: 712px; z-index: 1; }\",\".framer-xn5rJ .framer-fc0vsw { bottom: -5px; flex: none; height: auto; left: 0px; position: absolute; white-space: pre-wrap; width: 622px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-xn5rJ .framer-j63fxb { bottom: 30px; flex: none; height: 515px; left: calc(50.73720728534261% - 90.28620988725065% / 2); overflow: hidden; position: absolute; width: 90%; }\",\".framer-xn5rJ .framer-1x9xqf0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 225px; left: 269px; position: absolute; top: calc(45.04854368932041% - 225px / 2); white-space: pre-wrap; width: 139px; word-break: break-word; word-wrap: break-word; }\",\".framer-xn5rJ .framer-1tky79x { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 186px; left: 556px; position: absolute; top: 119px; white-space: pre-wrap; width: 454px; word-break: break-word; word-wrap: break-word; }\",\".framer-xn5rJ .framer-n7fjv4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 80px; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 1006px; word-break: break-word; word-wrap: break-word; }\",\".framer-xn5rJ .framer-1y17b8e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 90px; left: -1px; position: absolute; top: 119px; white-space: pre-wrap; width: 133px; word-break: break-word; word-wrap: break-word; }\",\".framer-xn5rJ .framer-11cerz3-container { bottom: 68px; flex: none; height: auto; left: 8px; position: absolute; width: auto; }\",\".framer-xn5rJ.framer-1fuldbz, .framer-xn5rJ.framer-l6j67z { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-xn5rJ .framer-1dbal8j-container { bottom: 68px; flex: none; height: auto; left: 209px; position: absolute; width: auto; }\",\".framer-xn5rJ .framer-4du7re { flex: none; height: 603px; overflow: hidden; position: relative; width: 1200px; }\",\".framer-xn5rJ .framer-k9u9e7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 564px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: calc(51.79104477611942% - 564px / 2); width: 100%; }\",\".framer-xn5rJ .framer-nla6ar, .framer-xn5rJ .framer-1tunhl7 { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-xn5rJ .framer-dy4ika { flex: none; height: 670px; overflow: hidden; position: relative; width: 100%; }\",\".framer-xn5rJ .framer-boabd5 { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-xn5rJ .framer-1rw2g7g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: 735px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-xn5rJ .framer-1l11qk5 { flex: none; height: 669px; overflow: hidden; position: relative; width: 1024px; }\",\".framer-xn5rJ .framer-19isfqf-container { flex: none; height: 563px; left: calc(50.00000000000002% - 1022px / 2); position: absolute; top: calc(54.1106128550075% - 563px / 2); width: 1022px; }\",\".framer-xn5rJ .framer-105rlps { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 32px; left: 0px; position: absolute; top: 27px; white-space: pre-wrap; width: 523px; word-break: break-word; word-wrap: break-word; }\",\".framer-xn5rJ .framer-1htg2wn { align-content: center; align-items: center; background-color: var(--token-76b1234f-321d-4ffb-880a-32bc4b0ebd14, #0e2525); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 659px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-xn5rJ .framer-1vkxq59 { flex: none; height: 455px; overflow: hidden; position: relative; width: 1000px; }\",\".framer-xn5rJ .framer-1pzxu3t { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 0px; flex: none; height: 345px; left: calc(50.200000000000024% - 880px / 2); position: absolute; white-space: pre-wrap; width: 880px; word-break: break-word; word-wrap: break-word; }\",\".framer-xn5rJ .framer-vy7qqi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 24px; left: calc(50.00000000000002% - 244px / 2); position: absolute; top: 0px; white-space: pre-wrap; width: 244px; word-break: break-word; word-wrap: break-word; }\",\".framer-xn5rJ .framer-1bg3562 { align-content: center; align-items: center; background-color: var(--token-d345d267-c7d6-4092-ad2c-563ab154ce74, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 924px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-xn5rJ .framer-s14pxw { flex: none; height: 700px; overflow: hidden; position: relative; width: 1000px; }\",\".framer-xn5rJ .framer-by87j7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 30px; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 645px; word-break: break-word; word-wrap: break-word; }\",\".framer-xn5rJ .framer-2nmwbh { bottom: 0px; flex: none; height: 643px; left: 0px; overflow: hidden; position: absolute; right: 0px; }\",\".framer-xn5rJ .framer-mmramz-container { flex: none; height: 512px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5807\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerAWt_2FQyl=withCSS(Component,css,\"framer-xn5rJ\");export default FramerAWt_2FQyl;FramerAWt_2FQyl.displayName=\"Yourdaily 2\";FramerAWt_2FQyl.defaultProps={height:5807,width:1200};addFonts(FramerAWt_2FQyl,[{explicitInter:true,fonts:[{family:\"Libre Caslon Text\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/librecaslontext/v5/DdT678IGsGw1aF1JU10PUbTvNNaDMfq91-JJGxO1q9o.woff2\",weight:\"400\"},{family:\"Ballet\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/WGPT4KZPRZL7VEI5Z7QAARRIINILAPLJ/GP5IIEY4A5YTRB4ONKLM6M5GIU76HE53/LPNQFWIK46GIITWCQQEC2I3D5ZODDCV4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Roboto Mono\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/robotomono/v30/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrmAB-W4AJi8SZwt.woff2\",weight:\"700\"},{family:\"Roboto Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/robotomono/v30/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vqPRu-5Ip2sSQ.woff2\",weight:\"400\"}]},...TopbarFonts,...ArcFonts,...ButtonFonts,...YouTubeFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAWt_2FQyl\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"5807\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "TopbarFonts", "getFonts", "pQWsMWkcK_default", "ArcFonts", "Arc_default", "ContainerWithFX", "withFX", "Container", "MotionDivWithFX", "motion", "ButtonFonts", "SjXrwyuYd_default", "YouTubeFonts", "Youtube", "FooterFonts", "lxsUiVAyR_default", "breakpoints", "serializationHash", "variantClassNames", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "DoEWHLP6m3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "pQWsMWkcK_default", "Image2", "getLoadingLazyAtYPosition", "MotionDivWithFX", "SVG", "ContainerWithFX", "Arc_default", "RichText", "x", "l", "SjXrwyuYd_default", "AnimatePresence", "Ga", "overlay1", "Youtube", "lxsUiVAyR_default", "css", "FramerAWt_2FQyl", "withCSS", "AWt_2FQyl_default", "addFonts", "TopbarFonts", "ArcFonts", "ButtonFonts", "YouTubeFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
