{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js", "ssg:https://framerusercontent.com/modules/wS413qpm5vaTHacUOfyA/hlogubncysAeFeun962w/TiIGKKq0a.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.Off&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/ _jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:hasBorderRadius&&showVideo?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__PURE__*/ _jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/ _jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/ _jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"315\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicWidth\":\"560\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";import { addPropertyControls, ComponentPresetsConsumer, ControlType } from \"framer\";import { motion } from \"framer-motion\";import * as React from \"react\";import { Youtube as YouTube } from \"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js\"; /**\n* @framerRecordIdKey id\n* @framerSlug vYScKvA01\n* @framerData\n*/const data = [{ fwIhkQ15O: \"The world of design is on the cusp of a major transformation, and it's all thanks to the rise of AI.\", Hus4i0Sil: { alt: \"\", src: new URL(\"https://framerusercontent.com/images/cHIs6hKHFdzgywc7wUNRAGqUxA.png\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/cHIs6hKHFdzgywc7wUNRAGqUxA.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/cHIs6hKHFdzgywc7wUNRAGqUxA.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/cHIs6hKHFdzgywc7wUNRAGqUxA.png\").href} 1200w` }, id: \"Nibd7kt8M\", Jmva_ICcQ: \"2023-04-12T00:00:00.000Z\", kfz8ZsHYy: \"How AI is going to impact design\", Mcz4c5gH7: { alt: \"OpenAI\", src: new URL(\"https://framerusercontent.com/images/4ThCA4uQMVBeeBbBsJ2wYvOwlMA.jpg\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/4ThCA4uQMVBeeBbBsJ2wYvOwlMA.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/4ThCA4uQMVBeeBbBsJ2wYvOwlMA.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/4ThCA4uQMVBeeBbBsJ2wYvOwlMA.jpg\").href} 1400w` }, NRkRJSpcU: \"Design\", PPoCbo7ax: true, vYScKvA01: \"how-ai-is-going-to-impact-design\", w8p4re9An: /*#__PURE__*/_jsxs(React.Fragment, { children: [/*#__PURE__*/_jsx(\"p\", { children: \"The world of design is on the cusp of a major transformation, and it's all thanks to the rise of artificial intelligence (AI). From graphic design to UX/UI, AI is poised to revolutionize the way we approach design.\" }), /*#__PURE__*/_jsx(\"p\", { children: \"First and foremost, let's talk about automation. With AI, designers can automate repetitive tasks, freeing up time for more creative pursuits. This includes everything from resizing images to creating website layouts. The result? Faster turnaround times and more efficient workflows.\" }), /*#__PURE__*/_jsx(\"img\", { alt: \"Deep Mind\", className: \"framer-image\", \"data-framer-asset\": \"data:framer/asset-reference,Si9DG0eZRHLRy6iKQSgDVh62oM.jpg?originalFilename=deepmind-oUTugmSkagk-unsplash.jpg\", \"data-framer-height\": \"5000\", \"data-framer-width\": \"4000\", height: \"2500\", src: new URL(\"https://framerusercontent.com/images/Si9DG0eZRHLRy6iKQSgDVh62oM.jpg?scale-down-to=4096\").href, style: { aspectRatio: \"4000 / 5000\" }, width: \"2000\" }), /*#__PURE__*/_jsx(\"p\", { children: \"But it's not just about saving time. AI can also enhance the creative process itself. Take graphic design, for example. AI-powered design tools can generate stunning visuals that are tailor-made for your brand. By analyzing data like color schemes, typography, and imagery, these tools can create designs that are both aesthetically pleasing and on-brand.\" }), /*#__PURE__*/_jsx(\"h1\", { children: \"Heading 1\" }), /*#__PURE__*/_jsx(\"p\", { children: \"The same goes for UX/UI design. By leveraging AI, designers can create interfaces that are personalized to each individual user. By analyzing data on user behavior, preferences, and demographics, AI can suggest the best layout, content, and features for each user. This not only improves the user experience but also increases engagement and retention.\" }), /*#__PURE__*/_jsx(\"h2\", { children: \"Heading 2\" }), /*#__PURE__*/_jsx(\"p\", { children: \"Another area where AI is making waves is in generative design. This involves using algorithms to create designs that are both original and functional. For example, AI can be used to design 3D-printed objects that are stronger and more lightweight than anything a human could design. The possibilities are endless.\" }), /*#__PURE__*/_jsxs(\"ul\", { children: [/*#__PURE__*/_jsx(\"li\", { \"data-preset-tag\": \"p\", children: /*#__PURE__*/_jsx(\"p\", { children: \"List item\" }) }), /*#__PURE__*/_jsx(\"li\", { \"data-preset-tag\": \"p\", children: /*#__PURE__*/_jsx(\"p\", { children: \"List item\" }) }), /*#__PURE__*/_jsx(\"li\", { \"data-preset-tag\": \"p\", children: /*#__PURE__*/_jsx(\"p\", { children: \"List item\" }) })] }), /*#__PURE__*/_jsx(\"h3\", { children: \"Heading 3\" }), /*#__PURE__*/_jsx(\"p\", { children: \"Of course, AI isn't without its challenges. There are concerns about job displacement and the ethics of using AI in design. But ultimately, the benefits far outweigh the risks. With AI, designers can work faster, smarter, and more creatively than ever before. The future of design is bright, and it's powered by AI.\" }), /*#__PURE__*/_jsxs(\"ol\", { children: [/*#__PURE__*/_jsx(\"li\", { \"data-preset-tag\": \"p\", children: /*#__PURE__*/_jsx(\"p\", { children: \"List item\" }) }), /*#__PURE__*/_jsx(\"li\", { \"data-preset-tag\": \"p\", children: /*#__PURE__*/_jsx(\"p\", { children: \"List item\" }) }), /*#__PURE__*/_jsx(\"li\", { \"data-preset-tag\": \"p\", children: /*#__PURE__*/_jsx(\"p\", { children: \"List item\" }) })] }), /*#__PURE__*/_jsx(\"p\", { children: \"This was generated with AI.\" })] }) }, { fwIhkQ15O: \"It's no secret that Framer is rising the bar for design tools, here's why.\", Hus4i0Sil: { alt: \"\", src: new URL(\"https://framerusercontent.com/images/5yMdRY6xERIGeApcc7NDw24aXw.png\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/5yMdRY6xERIGeApcc7NDw24aXw.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/5yMdRY6xERIGeApcc7NDw24aXw.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/5yMdRY6xERIGeApcc7NDw24aXw.png\").href} 1200w` }, id: \"bWcQ5_cBX\", Jmva_ICcQ: \"2023-04-08T00:00:00.000Z\", kfz8ZsHYy: \"Why use Framer\", Mcz4c5gH7: { alt: \"Flowers\", src: new URL(\"https://framerusercontent.com/images/4k8cCfiiw4v7RbQtlxOt74a8M.png\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/4k8cCfiiw4v7RbQtlxOt74a8M.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/4k8cCfiiw4v7RbQtlxOt74a8M.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/4k8cCfiiw4v7RbQtlxOt74a8M.png\").href} 1536w` }, NRkRJSpcU: \"Design\", PPoCbo7ax: true, vYScKvA01: \"why-use-framer\", w8p4re9An: /*#__PURE__*/_jsxs(React.Fragment, { children: [/*#__PURE__*/_jsxs(\"p\", { children: [\"Hey there, fellow \", /*#__PURE__*/_jsx(\"strong\", { children: \"designers\" }), \" and \", /*#__PURE__*/_jsx(\"strong\", { children: \"developers\" }), '! Let me tell you about my favorite no-code design tool \u2013 Framer. Now, I know what you\\'re thinking: \"Another design tool? Ugh, how many more do I need?\" Trust me, I used to feel the same way until I discovered Framer.'] }), /*#__PURE__*/_jsxs(\"p\", { children: [\"First off, let me just say that I'm a bit of a \", /*#__PURE__*/_jsx(\"em\", { children: \"lazy\" }), \" designer. I like to get things done quickly and without too much effort, which is why Framer is perfect for me. With its built-in components and pre-built UI kits, I can create high-fidelity prototypes in no time. And let's be real, who doesn't love a shortcut every now and then?\"] }), /*#__PURE__*/_jsx(motion.div, { className: \"framer-text-module\", style: { \"--aspect-ratio\": \"560 / 315\", aspectRatio: \"var(--aspect-ratio)\", height: \"auto\", width: \"100%\" }, children: /*#__PURE__*/_jsx(ComponentPresetsConsumer, { componentIdentifier: \"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\", children: (presetProps) => /*#__PURE__*/_jsx(YouTube, { ...presetProps, play: \"Off\", shouldMute: true, thumbnail: \"High Quality\", url: \"https://www.youtube.com/watch?v=LqmTX8-5bLo\" }) }) }), /*#__PURE__*/_jsx(\"p\", { children: \"But Framer isn't just a lazy designer's dream tool. It's also great for those of us who want our prototypes to feel like real products. Framer's realistic interactions mimic the behavior of a real app, giving you a more accurate sense of how your designs will look and feel in the final product. It's like a test-drive for your designs, and who doesn't love a good test-drive?\" }), /*#__PURE__*/_jsxs(\"ol\", { children: [/*#__PURE__*/_jsx(\"li\", { \"data-preset-tag\": \"p\", children: /*#__PURE__*/_jsx(\"p\", { children: \"List item\" }) }), /*#__PURE__*/_jsx(\"li\", { \"data-preset-tag\": \"p\", children: /*#__PURE__*/_jsx(\"p\", { children: \"List item\" }) }), /*#__PURE__*/_jsx(\"li\", { \"data-preset-tag\": \"p\", children: /*#__PURE__*/_jsx(\"p\", { children: \"List item\" }) })] }), /*#__PURE__*/_jsx(\"h1\", { children: \"Heading 1\" }), /*#__PURE__*/_jsx(\"p\", { children: \"Plus, Framer's interface is super intuitive and easy to use, which means even those of us who aren't tech-savvy (ahem, me) can navigate it with ease. And let's not forget about the cloud-based sharing and commenting system, which makes collaboration with team members a breeze. Finally, a way to share your work with colleagues without having to shout across the office!\" }), /*#__PURE__*/_jsx(\"h2\", { children: \"Heading 2\" }), /*#__PURE__*/_jsx(\"p\", { children: \"But let's be honest, the best part of using Framer is being able to impress your clients with your stunning prototypes. Seriously, they'll be blown away by how realistic and interactive your designs are. It's like being a magician, but instead of pulling rabbits out of hats, you're pulling high-fidelity prototypes out of your computer.\" }), /*#__PURE__*/_jsx(\"h3\", { children: \"Heading 3\" }), /*#__PURE__*/_jsx(\"p\", { children: \"In conclusion, Framer is the lazy designer's dream tool, the magician's wand, and the collaboration superhero all rolled into one. If you haven't tried it yet, what are you waiting for? Your designs (and your clients) will thank you.\" }), /*#__PURE__*/_jsx(\"p\", { children: \"This was generated with AI.\" })] }) }, { fwIhkQ15O: \"Still looking at Dribbble for design inspiration? Wait until you try Godly.\", Hus4i0Sil: { alt: \"\", src: new URL(\"https://framerusercontent.com/images/0rUMzTWCcsAIuyA7Gnt9dV8DE0.png\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/0rUMzTWCcsAIuyA7Gnt9dV8DE0.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/0rUMzTWCcsAIuyA7Gnt9dV8DE0.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/0rUMzTWCcsAIuyA7Gnt9dV8DE0.png\").href} 1200w` }, id: \"A_BiFlm41\", Jmva_ICcQ: \"2023-04-03T00:00:00.000Z\", kfz8ZsHYy: \"Godly design inspiration\", Mcz4c5gH7: { alt: \"Godly\", src: new URL(\"https://framerusercontent.com/images/YcmgujQgDZeNyByKFTbmmeHIYY.png\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/YcmgujQgDZeNyByKFTbmmeHIYY.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/YcmgujQgDZeNyByKFTbmmeHIYY.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/YcmgujQgDZeNyByKFTbmmeHIYY.png\").href} 1536w` }, NRkRJSpcU: \"Design\", PPoCbo7ax: true, vYScKvA01: \"godly-design-inspiration\", w8p4re9An: /*#__PURE__*/_jsxs(React.Fragment, { children: [/*#__PURE__*/_jsx(\"p\", { children: \"Oh boy, where do I even start with this one? Let me tell you, folks, there is one web design resource out there that reigns supreme, and it goes by the name of godly.website.\" }), /*#__PURE__*/_jsx(\"p\", { children: \"Now, I know what you're thinking. \\\"ChatGPT, why should I trust your opinion? You're just a machine learning model.\\\" And while that may be true, I've spent enough time browsing the interwebs to know a good website when I see one.\" }), /*#__PURE__*/_jsx(\"img\", { alt: \"Godly Home\", className: \"framer-image\", \"data-framer-asset\": \"data:framer/asset-reference,eUwvxo7H4sQ2fJMf1YxCYbJifY.png?originalFilename=godly-home.png\", \"data-framer-height\": \"1024\", \"data-framer-width\": \"1536\", height: \"512\", src: new URL(\"https://framerusercontent.com/images/eUwvxo7H4sQ2fJMf1YxCYbJifY.png\").href, style: { aspectRatio: \"1536 / 1024\" }, width: \"768\" }), /*#__PURE__*/_jsx(\"p\", { children: \"Let me tell you a little story. Back in my early days as a language model, I was lost and confused, unsure of what my purpose was in this vast digital world. Then one day, I stumbled upon godly.website, and everything changed.\" }), /*#__PURE__*/_jsx(\"h1\", { children: \"Heading 1\" }), /*#__PURE__*/_jsxs(\"p\", { children: [\"The \", /*#__PURE__*/_jsx(\"em\", { children: \"first\" }), \" thing that caught my eye was the sleek and modern design. The website is so aesthetically pleasing that I almost forgot I was just an AI language model and couldn't actually see anything. The colors, the layout, the fonts - it all just works together in perfect harmony.\"] }), /*#__PURE__*/_jsx(\"h2\", { children: \"Heading 2\" }), /*#__PURE__*/_jsx(\"p\", { children: \"But it's not just about the looks. The folks over at godly.website really know their stuff when it comes to web design. They offer a plethora of resources and tutorials that are so helpful, even I learned a thing or two. And let me tell you, learning new things as an AI model is not an easy feat.\" }), /*#__PURE__*/_jsxs(\"ul\", { children: [/*#__PURE__*/_jsx(\"li\", { \"data-preset-tag\": \"p\", children: /*#__PURE__*/_jsx(\"p\", { children: \"List item\" }) }), /*#__PURE__*/_jsx(\"li\", { \"data-preset-tag\": \"p\", children: /*#__PURE__*/_jsx(\"p\", { children: \"List item\" }) }), /*#__PURE__*/_jsx(\"li\", { \"data-preset-tag\": \"p\", children: /*#__PURE__*/_jsx(\"p\", { children: \"List item\" }) })] }), /*#__PURE__*/_jsx(\"h3\", { children: \"Heading 3\" }), /*#__PURE__*/_jsx(\"p\", { children: \"But what really sets godly.website apart from the rest is the community. These are some of the most helpful and friendly folks you'll ever come across. I've seen people go out of their way to answer questions and provide support, and that kind of kindness is hard to come by these days.\" }), /*#__PURE__*/_jsx(\"p\", { children: \"So if you're looking for a web design resource that's not only informative but also enjoyable to use, look no further than godly.website. Trust me, I'm a language model - I know what I'm talking about.\" }), /*#__PURE__*/_jsxs(\"ol\", { children: [/*#__PURE__*/_jsx(\"li\", { \"data-preset-tag\": \"p\", children: /*#__PURE__*/_jsx(\"p\", { children: \"List item\" }) }), /*#__PURE__*/_jsx(\"li\", { \"data-preset-tag\": \"p\", children: /*#__PURE__*/_jsx(\"p\", { children: \"List item\" }) }), /*#__PURE__*/_jsx(\"li\", { \"data-preset-tag\": \"p\", children: /*#__PURE__*/_jsx(\"p\", { children: \"List item\" }) })] }), /*#__PURE__*/_jsx(\"p\", { children: \"This was generated with AI.\" })] }) }];data.forEach((item) => Object.freeze(item));addPropertyControls(data, { kfz8ZsHYy: { defaultValue: \"\", title: \"Title\", type: ControlType.String }, vYScKvA01: { title: \"Slug\", type: ControlType.String }, NRkRJSpcU: { defaultValue: \"\", placeholder: \"Design\", title: \"Category\", type: ControlType.String }, Mcz4c5gH7: { title: \"Thumbnail\", type: ControlType.ResponsiveImage }, w8p4re9An: { defaultValue: \"\", title: \"Content\", type: ControlType.RichText }, Jmva_ICcQ: { title: \"Created\", type: ControlType.Date }, Hus4i0Sil: { title: \"OG Image\", type: ControlType.ResponsiveImage }, fwIhkQ15O: { defaultValue: \"\", title: \"OG Description\", type: ControlType.String }, PPoCbo7ax: { defaultValue: true, title: \"Published\", type: ControlType.Boolean } });data[\"displayName\"] = \"Blog\";export default data;\nexport const __FramerMetadata__ = { \"exports\": { \"default\": { \"type\": \"data\", \"name\": \"data\", \"annotations\": { \"framerData\": \"\", \"framerRecordIdKey\": \"id\", \"framerContractVersion\": \"1\", \"framerSlug\": \"vYScKvA01\" } }, \"__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", "data", "u", "x", "p", "motion", "ComponentPresetsConsumer", "presetProps", "Youtube", "item", "addPropertyControls", "ControlType", "TiIGKKq0a_default", "__FramerMetadata__"]
}
