{"id":2057,"date":"2024-11-03T01:44:31","date_gmt":"2024-11-03T01:44:31","guid":{"rendered":"https:\/\/ayospc.com\/?p=2057"},"modified":"2024-11-03T01:46:01","modified_gmt":"2024-11-03T01:46:01","slug":"my-first-web-app","status":"publish","type":"post","link":"https:\/\/ayospc.com\/es\/my-first-web-app\/","title":{"rendered":"My First Web App Using V0 by Vercel | A YouTube Channel Mock up Previewer"},"content":{"rendered":"<figure class=\"wp-block-image size-large\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"527\" src=\"https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/channel-mock-up-app-1024x527.png\" alt=\"\" class=\"wp-image-2058\" srcset=\"https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/channel-mock-up-app-1024x527.png 1024w, https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/channel-mock-up-app-300x154.png 300w, https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/channel-mock-up-app-768x395.png 768w, https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/channel-mock-up-app-18x9.png 18w, https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/channel-mock-up-app.png 1438w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Using v0 by Vercel<\/h2>\n\n\n\n<p>My First try at creating a Web App, its pretty cool what you can do with the power of AI. This was unheard of around a couple of years ago. <\/p>\n\n\n\n<p>By just typing a simple prompt you can create your ideas into reality.<\/p>\n\n\n\n<figure class=\"wp-block-image alignwide size-full\"><img decoding=\"async\" width=\"501\" height=\"314\" src=\"https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/v0-message-prompt-1.png\" alt=\"\" class=\"wp-image-2059\" srcset=\"https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/v0-message-prompt-1.png 501w, https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/v0-message-prompt-1-300x188.png 300w, https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/v0-message-prompt-1-18x12.png 18w\" sizes=\"(max-width: 501px) 100vw, 501px\" \/><\/figure>\n\n\n\n<p>Imagine just by saying to a computer what you want your app to be it can generate it in just a couple of seconds. You can also make edits on the fly to refine and perfect your designs. Its just awesome. <br>here is a link to what I have just created using this amazing tool.<\/p>\n\n\n\n<p><br><a href=\"https:\/\/b_C60UnkL5Fdv.v0.build\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/b_C60UnkL5Fdv.v0.build\/<\/a><\/p>\n\n\n\n<p>Here is the code for this web app:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>'use client'\r\n\r\nimport { useState, useRef } from 'react'\r\nimport { Button } from &quot;@\/components\/ui\/button&quot;\r\nimport { Label } from &quot;@\/components\/ui\/label&quot;\r\nimport { Tabs, TabsContent, TabsList, TabsTrigger } from &quot;@\/components\/ui\/tabs&quot;\r\nimport { Maximize2, Minimize2, Upload, ZoomIn, ZoomOut } from 'lucide-react'\r\n\r\nexport default function Component() {\r\n  const [banner, setBanner] = useState('\/placeholder.svg?height=200&amp;width=1280')\r\n  const [avatar, setAvatar] = useState('\/placeholder.svg?height=80&amp;width=80')\r\n  const [watermark, setWatermark] = useState('\/placeholder.svg?height=40&amp;width=40')\r\n  const [channelName, setChannelName] = useState('Channel Name')\r\n  const [isFullScreen, setIsFullScreen] = useState(false)\r\n  const [activeDevice, setActiveDevice] = useState('mobile')\r\n  const [zoomLevel, setZoomLevel] = useState(1)\r\n\r\n  const bannerInputRef = useRef(null)\r\n  const avatarInputRef = useRef(null)\r\n  const watermarkInputRef = useRef(null)\r\n\r\n  const handleImageUpload = (event, setter) =&gt; {\r\n    const file = event.target.files[0]\r\n    if (file) {\r\n      const reader = new FileReader()\r\n      reader.onload = (e) =&gt; setter(e.target.result)\r\n      reader.readAsDataURL(file)\r\n    }\r\n  }\r\n\r\n  const toggleFullScreen = () =&gt; {\r\n    setIsFullScreen(!isFullScreen)\r\n  }\r\n\r\n  const handleZoomIn = () =&gt; {\r\n    setZoomLevel(prevZoom =&gt; Math.min(prevZoom + 0.1, 2))\r\n  }\r\n\r\n  const handleZoomOut = () =&gt; {\r\n    setZoomLevel(prevZoom =&gt; Math.max(prevZoom - 0.1, 0.5))\r\n  }\r\n\r\n  const DevicePreview = ({ device }) =&gt; {\r\n    const sizes = {\r\n      mobile: 'w-64',\r\n      tablet: 'w-[768px]',\r\n      desktop: 'w-[1024px]',\r\n      hdtv: 'w-[1920px]'\r\n    }\r\n\r\n    return (\r\n      &lt;div classname=&quot;{`mx-auto&quot; ${sizes[device]} overflow-hidden bg-[#0f0f0f] shadow-lg relative border-4 border-gray-700`}&gt;\r\n        &lt;div classname=&quot;relative&quot;&gt;\r\n          &lt;img src=&quot;{banner}&quot; alt=&quot;Channel Banner&quot; classname=&quot;w-full h-32 object-cover&quot; \/&gt;\r\n          &lt;img src=&quot;{avatar}&quot; alt=&quot;Channel Avatar&quot; classname=&quot;absolute bottom-0 left-4 transform translate-y-1\/2 w-16 h-16 rounded-full border-4 border-[#0f0f0f]&quot; \/&gt;\r\n          &lt;img src=&quot;{watermark}&quot; alt=&quot;Watermark&quot; classname=&quot;absolute top-2 right-2 w-8 h-8&quot; \/&gt;\r\n        &lt;\/div&gt;\r\n        &lt;div classname=&quot;p-4&quot;&gt;\r\n          &lt;h2 classname=&quot;text-xl font-bold text-white&quot;&gt;{channelName}&lt;\/h2&gt;\r\n          &lt;p classname=&quot;text-sm text-gray-400&quot;&gt;1M subscribers&lt;\/p&gt;\r\n        &lt;\/div&gt;\r\n        &lt;div classname=&quot;px-4 pb-4 grid grid-cols-2 gap-4&quot;&gt;\r\n          &lt;div classname=&quot;space-y-2&quot;&gt;\r\n            &lt;img src=&quot;\/placeholder.svg?height=120&amp;width=210&quot; alt=&quot;Video Thumbnail&quot; classname=&quot;w-full aspect-video object-cover rounded&quot; \/&gt;\r\n            &lt;h3 classname=&quot;text-sm font-semibold text-white&quot;&gt;Video Title 1&lt;\/h3&gt;\r\n            &lt;p classname=&quot;text-xs text-gray-400&quot;&gt;10K views &bull; 2 days ago&lt;\/p&gt;\r\n          &lt;\/div&gt;\r\n          &lt;div classname=&quot;space-y-2&quot;&gt;\r\n            &lt;img src=&quot;\/placeholder.svg?height=120&amp;width=210&quot; alt=&quot;Video Thumbnail&quot; classname=&quot;w-full aspect-video object-cover rounded&quot; \/&gt;\r\n            &lt;h3 classname=&quot;text-sm font-semibold text-white&quot;&gt;Video Title 2&lt;\/h3&gt;\r\n            &lt;p classname=&quot;text-xs text-gray-400&quot;&gt;8K views &bull; 3 days ago&lt;\/p&gt;\r\n          &lt;\/div&gt;\r\n          &lt;div classname=&quot;space-y-2&quot;&gt;\r\n            &lt;img src=&quot;\/placeholder.svg?height=120&amp;width=210&quot; alt=&quot;Video Thumbnail&quot; classname=&quot;w-full aspect-video object-cover rounded&quot; \/&gt;\r\n            &lt;h3 classname=&quot;text-sm font-semibold text-white&quot;&gt;Video Title 3&lt;\/h3&gt;\r\n            &lt;p classname=&quot;text-xs text-gray-400&quot;&gt;15K views &bull; 1 week ago&lt;\/p&gt;\r\n          &lt;\/div&gt;\r\n          &lt;div classname=&quot;space-y-2&quot;&gt;\r\n            &lt;img src=&quot;\/placeholder.svg?height=120&amp;width=210&quot; alt=&quot;Video Thumbnail&quot; classname=&quot;w-full aspect-video object-cover rounded&quot; \/&gt;\r\n            &lt;h3 classname=&quot;text-sm font-semibold text-white&quot;&gt;Video Title 4&lt;\/h3&gt;\r\n            &lt;p classname=&quot;text-xs text-gray-400&quot;&gt;5K views &bull; 2 weeks ago&lt;\/p&gt;\r\n          &lt;\/div&gt;\r\n        &lt;\/div&gt;\r\n      &lt;\/div&gt;\r\n    )\r\n  }\r\n\r\n  return (\r\n    &lt;div classname=&quot;{`min-h-screen&quot; ${isfullscreen ? 'fixed inset-0 z-50' : ''} bg-gray-800 text-gray-100`}&gt;\r\n      &lt;div classname=&quot;container mx-auto p-4&quot;&gt;\r\n        &lt;h1 classname=&quot;text-2xl font-bold mb-4&quot;&gt;YouTube Channel Mockup&lt;\/h1&gt;\r\n        &lt;div classname=&quot;{`grid&quot; ${isfullscreen ? '' : 'grid-cols-1 lg:grid-cols-3'} gap-4`}&gt;\r\n          {!isFullScreen &amp;&amp; (\r\n            &lt;div classname=&quot;lg:col-span-1&quot;&gt;\r\n              &lt;h2 classname=&quot;text-xl font-semibold mb-4&quot;&gt;Upload Channel Assets&lt;\/h2&gt;\r\n              &lt;div classname=&quot;space-y-4&quot;&gt;\r\n                &lt;div&gt;\r\n                  &lt;label htmlfor=&quot;banner&quot; classname=&quot;block mb-2&quot;&gt;Banner Image&lt;\/label&gt;\r\n                  &lt;button \r\n                    onclick=&quot;{()&quot; &gt; bannerInputRef.current.click()} \r\n                    variant=&quot;outline&quot; \r\n                    className=&quot;w-full lg:w-3\/4 bg-gray-700 text-gray-300 hover:bg-gray-600&quot;\r\n                  &gt;\r\n                    &lt;upload classname=&quot;mr-2 h-4 w-4&quot; \/&gt; Choose Banner\r\n                  &lt;\/button&gt;\r\n                  &lt;input\r\n                    id=&quot;banner&quot;\r\n                    ref=&quot;{bannerInputRef}&quot;                    type=&quot;file&quot;\r\n                    accept=&quot;image\/*&quot;\r\n                    onchange=&quot;{(e)&quot; &gt; handleImageUpload(e, setBanner)}\r\n                    className=&quot;hidden&quot;\r\n                  \/&gt;\r\n                &lt;\/div&gt;\r\n                &lt;div&gt;\r\n                  &lt;label htmlfor=&quot;avatar&quot; classname=&quot;block mb-2&quot;&gt;Channel Avatar&lt;\/label&gt;\r\n                  &lt;button \r\n                    onclick=&quot;{()&quot; &gt; avatarInputRef.current.click()} \r\n                    variant=&quot;outline&quot; \r\n                    className=&quot;w-full lg:w-3\/4 bg-gray-700 text-gray-300 hover:bg-gray-600&quot;\r\n                  &gt;\r\n                    &lt;upload classname=&quot;mr-2 h-4 w-4&quot; \/&gt; Choose Avatar\r\n                  &lt;\/button&gt;\r\n                  &lt;input\r\n                    id=&quot;avatar&quot;\r\n                    ref=&quot;{avatarInputRef}&quot;                    type=&quot;file&quot;\r\n                    accept=&quot;image\/*&quot;\r\n                    onchange=&quot;{(e)&quot; &gt; handleImageUpload(e, setAvatar)}\r\n                    className=&quot;hidden&quot;\r\n                  \/&gt;\r\n                &lt;\/div&gt;\r\n                &lt;div&gt;\r\n                  &lt;label htmlfor=&quot;watermark&quot; classname=&quot;block mb-2&quot;&gt;Watermark&lt;\/label&gt;\r\n                  &lt;button \r\n                    onclick=&quot;{()&quot; &gt; watermarkInputRef.current.click()} \r\n                    variant=&quot;outline&quot; \r\n                    className=&quot;w-full lg:w-3\/4 bg-gray-700 text-gray-300 hover:bg-gray-600&quot;\r\n                  &gt;\r\n                    &lt;upload classname=&quot;mr-2 h-4 w-4&quot; \/&gt; Choose Watermark\r\n                  &lt;\/button&gt;\r\n                  &lt;input\r\n                    id=&quot;watermark&quot;\r\n                    ref=&quot;{watermarkInputRef}&quot;                    type=&quot;file&quot;\r\n                    accept=&quot;image\/*&quot;\r\n                    onchange=&quot;{(e)&quot; &gt; handleImageUpload(e, setWatermark)}\r\n                    className=&quot;hidden&quot;\r\n                  \/&gt;\r\n                &lt;\/div&gt;\r\n                &lt;div&gt;\r\n                  &lt;label htmlfor=&quot;channelName&quot; classname=&quot;block mb-2&quot;&gt;Channel Name&lt;\/label&gt;\r\n                  &lt;input\r\n                    id=&quot;channelName&quot;\r\n                    value=&quot;{channelName}&quot;                    onchange=&quot;{(e)&quot; &gt; setChannelName(e.target.value)}\r\n                    placeholder=&quot;Enter channel name&quot;\r\n                    className=&quot;w-full lg:w-3\/4 px-3 py-2 bg-gray-700 text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500&quot;\r\n                  \/&gt;\r\n                &lt;\/div&gt;\r\n              &lt;\/div&gt;\r\n            &lt;\/div&gt;\r\n          )}\r\n          &lt;div classname=&quot;{`${isFullScreen&quot; ? '' : 'lg:col-span-2'} bg-gray-200 p-4 rounded-lg relative`}&gt;\r\n            &lt;div classname=&quot;flex justify-between items-center mb-4&quot;&gt;\r\n              &lt;h2 classname=&quot;text-xl font-semibold text-gray-800&quot;&gt;Device Preview&lt;\/h2&gt;\r\n              &lt;div classname=&quot;flex space-x-2&quot;&gt;\r\n                &lt;button onclick=&quot;{handleZoomOut}&quot; variant=&quot;outline&quot; size=&quot;icon&quot; classname=&quot;bg-gray-300 text-gray-800 hover:bg-gray-400&quot;&gt;\r\n                  &lt;zoomout classname=&quot;h-4 w-4&quot; \/&gt;\r\n                &lt;\/button&gt;\r\n                &lt;button onclick=&quot;{handleZoomIn}&quot; variant=&quot;outline&quot; size=&quot;icon&quot; classname=&quot;bg-gray-300 text-gray-800 hover:bg-gray-400&quot;&gt;\r\n                  &lt;zoomin classname=&quot;h-4 w-4&quot; \/&gt;\r\n                &lt;\/button&gt;\r\n                &lt;button onclick=&quot;{toggleFullScreen}&quot; variant=&quot;outline&quot; size=&quot;icon&quot; classname=&quot;bg-gray-300 text-gray-800 hover:bg-gray-400&quot;&gt;\r\n                  {isFullScreen ? &lt;minimize2 classname=&quot;h-4 w-4&quot; \/&gt; : &lt;maximize2 classname=&quot;h-4 w-4&quot; \/&gt;}\r\n                &lt;\/button&gt;\r\n              &lt;\/div&gt;\r\n            &lt;\/div&gt;\r\n            &lt;div classname=&quot;h-px bg-gray-300 mb-4&quot;&gt;&lt;\/div&gt;\r\n            &lt;tabs value=&quot;{activeDevice}&quot; onvaluechange=&quot;{setActiveDevice}&quot; classname=&quot;w-full&quot;&gt;\r\n              &lt;tabslist classname=&quot;grid w-full grid-cols-4 bg-gray-300&quot;&gt;\r\n                &lt;tabstrigger value=&quot;mobile&quot; classname=&quot;data-[state=active]:bg-gray-100 text-gray-800&quot;&gt;Mobile&lt;\/tabstrigger&gt;\r\n                &lt;tabstrigger value=&quot;tablet&quot; classname=&quot;data-[state=active]:bg-gray-100 text-gray-800&quot;&gt;Tablet&lt;\/tabstrigger&gt;\r\n                &lt;tabstrigger value=&quot;desktop&quot; classname=&quot;data-[state=active]:bg-gray-100 text-gray-800&quot;&gt;Desktop&lt;\/tabstrigger&gt;\r\n                &lt;tabstrigger value=&quot;hdtv&quot; classname=&quot;data-[state=active]:bg-gray-100 text-gray-800&quot;&gt;HD TV&lt;\/tabstrigger&gt;\r\n              &lt;\/tabslist&gt;\r\n              &lt;tabscontent value=&quot;{activeDevice}&quot; classname=&quot;overflow-x-auto mt-4&quot;&gt;\r\n                &lt;div style=&quot;{{&quot; transform: `scale(${zoomlevel})`, transformorigin: 'top left', transition: 'transform 0.3s ease-in-out' }}&gt;\r\n                  &lt;devicepreview device=&quot;{activeDevice}&quot; \/&gt;\r\n                &lt;\/div&gt;\r\n              &lt;\/tabscontent&gt;\r\n            &lt;\/tabs&gt;\r\n            &lt;div classname=&quot;absolute bottom-8 left-8 w-48 h-36 bg-gray-800 rounded overflow-hidden shadow-lg border-2 border-gray-600&quot;&gt;\r\n              &lt;div classname=&quot;relative w-full h-full&quot;&gt;\r\n                &lt;div classname=&quot;absolute inset-0 bg-gradient-to-r from-blue-500 to-purple-500 animate-gradient&quot;&gt;&lt;\/div&gt;\r\n                &lt;img src=&quot;{watermark}&quot; alt=&quot;Watermark Preview&quot; classname=&quot;absolute bottom-2 right-2 w-8 h-8 opacity-75&quot; \/&gt;\r\n              &lt;\/div&gt;\r\n            &lt;\/div&gt;\r\n          &lt;\/div&gt;\r\n        &lt;\/div&gt;\r\n      &lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n  )\r\n}<\/code><\/pre>\n\n\n\n<p>This is a working Progress and I hope to add in more features and enhancements.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"595\" src=\"https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/channel-mock-up-app-1-1024x595.png\" alt=\"\" class=\"wp-image-2060\" srcset=\"https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/channel-mock-up-app-1-1024x595.png 1024w, https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/channel-mock-up-app-1-300x174.png 300w, https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/channel-mock-up-app-1-768x446.png 768w, https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/channel-mock-up-app-1-18x10.png 18w, https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/channel-mock-up-app-1.png 1254w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Hopefully this can become a fully pledge web app in a couple of days, and maybe even a mobile app in the future. <\/p>\n\n\n\n<p>V0 uses a credit system wherein you are given a set number of message that you can send to there ai chat bot, the higher the plan you choose the more messages and the higher the priority you are in there system.<br>Visit there pricing are to learn more <a href=\"https:\/\/v0.dev\/pricing\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/v0.dev\/pricing<\/a><\/p>","protected":false},"excerpt":{"rendered":"<p>My First Web App Using V0 by Vercel | A YouTube Channel Mock up Previewer<\/p>","protected":false},"author":1,"featured_media":2062,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"footnotes":""},"categories":[166],"tags":[],"class_list":["post-2057","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-software-installation-and-troubleshooting"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>My First Web App Using V0 by Vercel | A YouTube Channel Mock up Previewer - ayospc<\/title>\n<meta name=\"description\" content=\"My First try at creating a Web App, its pretty cool what you can do with the power of AI. This was unheard of around a couple of years ago.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/ayospc.com\/es\/my-first-web-app\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"My First Web App Using V0 by Vercel | A YouTube Channel Mock up Previewer - ayospc\" \/>\n<meta property=\"og:description\" content=\"My First try at creating a Web App, its pretty cool what you can do with the power of AI. This was unheard of around a couple of years ago.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ayospc.com\/es\/my-first-web-app\/\" \/>\n<meta property=\"og:site_name\" content=\"ayospc\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/ayospcph\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/ayospcph\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-03T01:44:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-03T01:46:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/channel-mock-up-app-1-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1254\" \/>\n\t<meta property=\"og:image:height\" content=\"729\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"artosien22\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"artosien22\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/ayospc.com\/my-first-web-app\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/ayospc.com\/my-first-web-app\/\"},\"author\":{\"name\":\"artosien22\",\"@id\":\"https:\/\/ayospc.com\/#\/schema\/person\/76505d78b598667f882b783d2e3f2622\"},\"headline\":\"My First Web App Using V0 by Vercel | A YouTube Channel Mock up Previewer\",\"datePublished\":\"2024-11-03T01:44:31+00:00\",\"dateModified\":\"2024-11-03T01:46:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/ayospc.com\/my-first-web-app\/\"},\"wordCount\":222,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/ayospc.com\/#\/schema\/person\/76505d78b598667f882b783d2e3f2622\"},\"image\":{\"@id\":\"https:\/\/ayospc.com\/my-first-web-app\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/channel-mock-up-app-1-1.png\",\"articleSection\":[\"Software installation and troubleshooting\"],\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/ayospc.com\/my-first-web-app\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/ayospc.com\/my-first-web-app\/\",\"url\":\"https:\/\/ayospc.com\/my-first-web-app\/\",\"name\":\"My First Web App Using V0 by Vercel | A YouTube Channel Mock up Previewer - ayospc\",\"isPartOf\":{\"@id\":\"https:\/\/ayospc.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/ayospc.com\/my-first-web-app\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/ayospc.com\/my-first-web-app\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/channel-mock-up-app-1-1.png\",\"datePublished\":\"2024-11-03T01:44:31+00:00\",\"dateModified\":\"2024-11-03T01:46:01+00:00\",\"description\":\"My First try at creating a Web App, its pretty cool what you can do with the power of AI. This was unheard of around a couple of years ago.\",\"breadcrumb\":{\"@id\":\"https:\/\/ayospc.com\/my-first-web-app\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/ayospc.com\/my-first-web-app\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/ayospc.com\/my-first-web-app\/#primaryimage\",\"url\":\"https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/channel-mock-up-app-1-1.png\",\"contentUrl\":\"https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/channel-mock-up-app-1-1.png\",\"width\":1254,\"height\":729,\"caption\":\"channel mock previewer with V0 by vercel\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/ayospc.com\/my-first-web-app\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/ayospc.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"My First Web App Using V0 by Vercel | A YouTube Channel Mock up Previewer\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/ayospc.com\/#website\",\"url\":\"https:\/\/ayospc.com\/\",\"name\":\"ayospc\",\"description\":\"&quot;Your go-to resource for computer repair and troubleshooting.&quot;\",\"publisher\":{\"@id\":\"https:\/\/ayospc.com\/#\/schema\/person\/76505d78b598667f882b783d2e3f2622\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/ayospc.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/ayospc.com\/#\/schema\/person\/76505d78b598667f882b783d2e3f2622\",\"name\":\"artosien22\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/ayospc.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/ayospc.com\/wp-content\/uploads\/2026\/03\/Untitled_design__1_-removebg-preview.png\",\"contentUrl\":\"https:\/\/ayospc.com\/wp-content\/uploads\/2026\/03\/Untitled_design__1_-removebg-preview.png\",\"width\":500,\"height\":500,\"caption\":\"artosien22\"},\"logo\":{\"@id\":\"https:\/\/ayospc.com\/#\/schema\/person\/image\/\"},\"sameAs\":[\"https:\/\/ayospc.com\",\"https:\/\/www.facebook.com\/ayospcph\"],\"url\":\"https:\/\/ayospc.com\/es\/author\/artosien22\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"My First Web App Using V0 by Vercel | A YouTube Channel Mock up Previewer - ayospc","description":"My First try at creating a Web App, its pretty cool what you can do with the power of AI. This was unheard of around a couple of years ago.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/ayospc.com\/es\/my-first-web-app\/","og_locale":"es_ES","og_type":"article","og_title":"My First Web App Using V0 by Vercel | A YouTube Channel Mock up Previewer - ayospc","og_description":"My First try at creating a Web App, its pretty cool what you can do with the power of AI. This was unheard of around a couple of years ago.","og_url":"https:\/\/ayospc.com\/es\/my-first-web-app\/","og_site_name":"ayospc","article_publisher":"https:\/\/www.facebook.com\/ayospcph","article_author":"https:\/\/www.facebook.com\/ayospcph","article_published_time":"2024-11-03T01:44:31+00:00","article_modified_time":"2024-11-03T01:46:01+00:00","og_image":[{"width":1254,"height":729,"url":"https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/channel-mock-up-app-1-1.png","type":"image\/png"}],"author":"artosien22","twitter_card":"summary_large_image","twitter_misc":{"Escrito por":"artosien22","Tiempo de lectura":"2 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/ayospc.com\/my-first-web-app\/#article","isPartOf":{"@id":"https:\/\/ayospc.com\/my-first-web-app\/"},"author":{"name":"artosien22","@id":"https:\/\/ayospc.com\/#\/schema\/person\/76505d78b598667f882b783d2e3f2622"},"headline":"My First Web App Using V0 by Vercel | A YouTube Channel Mock up Previewer","datePublished":"2024-11-03T01:44:31+00:00","dateModified":"2024-11-03T01:46:01+00:00","mainEntityOfPage":{"@id":"https:\/\/ayospc.com\/my-first-web-app\/"},"wordCount":222,"commentCount":0,"publisher":{"@id":"https:\/\/ayospc.com\/#\/schema\/person\/76505d78b598667f882b783d2e3f2622"},"image":{"@id":"https:\/\/ayospc.com\/my-first-web-app\/#primaryimage"},"thumbnailUrl":"https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/channel-mock-up-app-1-1.png","articleSection":["Software installation and troubleshooting"],"inLanguage":"es","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/ayospc.com\/my-first-web-app\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/ayospc.com\/my-first-web-app\/","url":"https:\/\/ayospc.com\/my-first-web-app\/","name":"My First Web App Using V0 by Vercel | A YouTube Channel Mock up Previewer - ayospc","isPartOf":{"@id":"https:\/\/ayospc.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/ayospc.com\/my-first-web-app\/#primaryimage"},"image":{"@id":"https:\/\/ayospc.com\/my-first-web-app\/#primaryimage"},"thumbnailUrl":"https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/channel-mock-up-app-1-1.png","datePublished":"2024-11-03T01:44:31+00:00","dateModified":"2024-11-03T01:46:01+00:00","description":"My First try at creating a Web App, its pretty cool what you can do with the power of AI. This was unheard of around a couple of years ago.","breadcrumb":{"@id":"https:\/\/ayospc.com\/my-first-web-app\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ayospc.com\/my-first-web-app\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/ayospc.com\/my-first-web-app\/#primaryimage","url":"https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/channel-mock-up-app-1-1.png","contentUrl":"https:\/\/ayospc.com\/wp-content\/uploads\/2024\/11\/channel-mock-up-app-1-1.png","width":1254,"height":729,"caption":"channel mock previewer with V0 by vercel"},{"@type":"BreadcrumbList","@id":"https:\/\/ayospc.com\/my-first-web-app\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/ayospc.com\/"},{"@type":"ListItem","position":2,"name":"My First Web App Using V0 by Vercel | A YouTube Channel Mock up Previewer"}]},{"@type":"WebSite","@id":"https:\/\/ayospc.com\/#website","url":"https:\/\/ayospc.com\/","name":"ayospc","description":"&quot;Your go-to resource for computer repair and troubleshooting.&quot;","publisher":{"@id":"https:\/\/ayospc.com\/#\/schema\/person\/76505d78b598667f882b783d2e3f2622"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ayospc.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":["Person","Organization"],"@id":"https:\/\/ayospc.com\/#\/schema\/person\/76505d78b598667f882b783d2e3f2622","name":"artosien22","image":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/ayospc.com\/#\/schema\/person\/image\/","url":"https:\/\/ayospc.com\/wp-content\/uploads\/2026\/03\/Untitled_design__1_-removebg-preview.png","contentUrl":"https:\/\/ayospc.com\/wp-content\/uploads\/2026\/03\/Untitled_design__1_-removebg-preview.png","width":500,"height":500,"caption":"artosien22"},"logo":{"@id":"https:\/\/ayospc.com\/#\/schema\/person\/image\/"},"sameAs":["https:\/\/ayospc.com","https:\/\/www.facebook.com\/ayospcph"],"url":"https:\/\/ayospc.com\/es\/author\/artosien22\/"}]}},"_links":{"self":[{"href":"https:\/\/ayospc.com\/es\/wp-json\/wp\/v2\/posts\/2057","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ayospc.com\/es\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ayospc.com\/es\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ayospc.com\/es\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ayospc.com\/es\/wp-json\/wp\/v2\/comments?post=2057"}],"version-history":[{"count":2,"href":"https:\/\/ayospc.com\/es\/wp-json\/wp\/v2\/posts\/2057\/revisions"}],"predecessor-version":[{"id":2064,"href":"https:\/\/ayospc.com\/es\/wp-json\/wp\/v2\/posts\/2057\/revisions\/2064"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ayospc.com\/es\/wp-json\/wp\/v2\/media\/2062"}],"wp:attachment":[{"href":"https:\/\/ayospc.com\/es\/wp-json\/wp\/v2\/media?parent=2057"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ayospc.com\/es\/wp-json\/wp\/v2\/categories?post=2057"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ayospc.com\/es\/wp-json\/wp\/v2\/tags?post=2057"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}