<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:cc="http://cyber.law.harvard.edu/rss/creativeCommonsRssModule.html">
    <channel>
        <title><![CDATA[Stories by Cris on Medium]]></title>
        <description><![CDATA[Stories by Cris on Medium]]></description>
        <link>https://medium.com/@pazly?source=rss-5daff0199924------2</link>
        <image>
            <url>https://cdn-images-1.medium.com/fit/c/150/150/1*o--YMxhk0WqPjUQkYM1ghQ.jpeg</url>
            <title>Stories by Cris on Medium</title>
            <link>https://medium.com/@pazly?source=rss-5daff0199924------2</link>
        </image>
        <generator>Medium</generator>
        <lastBuildDate>Mon, 25 May 2026 13:51:51 GMT</lastBuildDate>
        <atom:link href="https://medium.com/@pazly/feed" rel="self" type="application/rss+xml"/>
        <webMaster><![CDATA[yourfriends@medium.com]]></webMaster>
        <atom:link href="http://medium.superfeedr.com" rel="hub"/>
        <item>
            <title><![CDATA[Building website templates for Web3 projects with Pazly]]></title>
            <link>https://pazly.medium.com/building-website-templates-for-web3-projects-with-pazly-60cecae4ffe1?source=rss-5daff0199924------2</link>
            <guid isPermaLink="false">https://medium.com/p/60cecae4ffe1</guid>
            <category><![CDATA[tailwind-css]]></category>
            <category><![CDATA[web-development]]></category>
            <category><![CDATA[nft]]></category>
            <category><![CDATA[web3]]></category>
            <category><![CDATA[web-design]]></category>
            <dc:creator><![CDATA[Cris]]></dc:creator>
            <pubDate>Thu, 07 Jul 2022 12:59:51 GMT</pubDate>
            <atom:updated>2022-07-07T13:06:11.109Z</atom:updated>
            <content:encoded><![CDATA[<p>You will learn a simple way to create website templates for creative NFT projects and help countless artists stand out, while earning a side income.</p><h3>Cool … but what’s Pazly?</h3><p><a href="https://pazly.dev/">Pazly</a> is a static website builder that does not require you to have coding skills in order to make beautiful websites for your NFT and Web3 projects. The aim is to enable creative types to stand out from the vast set of NFT offerings in the most popular market places.</p><p>Ideally Pazly websites are published to NFT or Crypto domains and stand as a personal creator page where a person can present themselves and their work.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*MGEXlBwbRkmrEk5uebf5ww.png" /></figure><h3>Ok, how is this different from all other website builders?</h3><p>With Pazly you own everything you build. It does not matter if you are making your own website of freelancing for others. All you create with Pazly belongs to you.</p><p>Pazly websites are compatible with both the traditional web and Web3, so you can be sure that what you build will work on the most popular website hosting companies today, or the next generation Blockchain/IPFS hosting startups. So, in full spirit of Web3, individual ownership of the digital assets you create with Pazly belongs to the creator and there’s no platform lock-in whatsoever.</p><h3>So, you said templates. How do I start?</h3><p>You are reading this on a developer blog, chances are you are familiar, or at least not afraid to code. Let’s use this super power of yours for good … the good of helping all the artists and creators who will buy your template and customize it with Pazly.</p><p>All you need to know is basic <strong>HTML</strong>, basic <strong>Tailwind CSS 2</strong>.latest and <strong>a bit of UI/UX</strong>.</p><p>To start, go to <a href="https://pazly.dev/"><strong>https://pazly.dev</strong></a> and and click on START BUILDING YOUR WEBSITE</p><p>You will have to choose between FREE and PRO (lifetime is just PRO paid one time) I recommend you start with the FREE version. This has limited blocks, but all the editors and it’s important for your building process. You will build your template in code anyway.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/0*eiVCDD5I07AZkwRO" /><figcaption>The initial screen of Pazly FREE with a blank canvas in the middle</figcaption></figure><p>Hit the Save HTML button when the composition canvas is blank. This will download an empty template you can open in your favorite code editor. For this article I’m using VS Code (with a light theme, because nobody is perfect)</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/0*LAiuPMv2U4-jikjn" /></figure><p>It’s important <strong>not to delete anything from this file</strong>, otherwise Pazly will not recognize it as compatible with its editor. The HTML structure is important when opening this in Pazly.</p><p>The first element within the &lt;body&gt; tag is a &lt;section&gt; that will contain all the HTML blocks of your template.</p><h3>Let’s build some cool stuff</h3><p>The best way to start is to commit to using semantic HTML tags wherever possible. Here are some core concepts:</p><ul><li>A block is always a full width <strong>&lt;section&gt;</strong> with no positioning rules.</li><li>Inside a block you can define container elements and edge elements. All editable elements have to contain a <strong>pazly-editable </strong>attribute with various values, according to what editors you want to enable for these elements.</li></ul><iframe src="" width="0" height="0" frameborder="0" scrolling="no"><a href="https://medium.com/media/e2732541493466bca4c303b4357ec2d4/href">https://medium.com/media/e2732541493466bca4c303b4357ec2d4/href</a></iframe><p>Will result into the block below</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*vN8WBRwJnL6xE3RNTEjjtA.jpeg" /></figure><p>The <strong>pazly-editable</strong> attribute is essential for Pazly. Its presence marks the element as editable. Its value set tells Pazly which editors to enable for the specific elements. So, if you’d like to enable text editing for an element, you will have to set <strong>pazly-editable=”innerHTML”</strong>. A link that looks like a button, for example “GET STARTED” in the image above will need text, background color and URL editors enabled and maybe allow users to clone it. This will require <strong>pazly-editable=”innerHTML href bg clone”</strong></p><p>💡 See the full list of editable options on Github at <a href="https://github.com/pazlydev/template-kit#making-elements-editable">https://github.com/pazlydev/template-kit#making-elements-editable</a></p><h3>Using colors</h3><p>Always use colors as classes. Pazly has its own color system that is constantly updated, and a good rule of thumb is to follow the class naming convention below:</p><blockquote>For text color use <strong>text-p-[color]-[number]</strong>, for example <strong>text-p-indigo-800</strong></blockquote><blockquote>For background color use <strong>bg-p-[color]-[number]</strong>, for example <strong>bg-p-gray-100</strong></blockquote><p>Check out the full color reference at <a href="https://pazly.medium.com/the-pazly-color-system-fdc37ebb02c3">https://pazly.medium.com/the-pazly-color-system-fdc37ebb02c3</a></p><p>Putting the block inside the template</p><p>Simply copy paste the block &lt;section&gt; in the Pazly component section and save it.</p><iframe src="" width="0" height="0" frameborder="0" scrolling="no"><a href="https://medium.com/media/7aa4f23d0bf5c06568ed3209dd5b3cc6/href">https://medium.com/media/7aa4f23d0bf5c06568ed3209dd5b3cc6/href</a></iframe><p>Now, open Pazly FREE or PRO and open your HTML file with Pazly. After the file is validated, you should see the hero block in the canvas in the middle</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*td0zXEISUOwsxvR7lnhRmA.png" /></figure><p>Need more info? Check out Pazly’s developer onboarding page <a href="https://pazly.dev/developers.html">https://pazly.dev/developers.html</a></p><h3>Selling Online (Gumroad, Envato, Open Sea, etc.)</h3><p>You set your own prices, your own item description. Please add a demo video on how your customers should use the template you make with Pazly.</p><p>Please also mention they can reach Pazly at <a href="https://pazly.dev/">https://pazly.dev/</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=60cecae4ffe1" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[The Pazly color system]]></title>
            <link>https://pazly.medium.com/the-pazly-color-system-fdc37ebb02c3?source=rss-5daff0199924------2</link>
            <guid isPermaLink="false">https://medium.com/p/fdc37ebb02c3</guid>
            <dc:creator><![CDATA[Cris]]></dc:creator>
            <pubDate>Mon, 16 Aug 2021 21:46:22 GMT</pubDate>
            <atom:updated>2021-08-16T21:46:22.132Z</atom:updated>
            <content:encoded><![CDATA[<h3>Getting Started</h3><p>Pazly <a href="https://pazly.dev/">https://pazly.dev</a> is a landing page building tool for both non technically skilled users and information technology specialists. It aims to allow users to quickly build high quality, high converting web pages which are completely owned by the users.</p><p>Pazly relies on TailwindCSS and has its own coloring system. If you are a fan of Tailwind CSS and want to help nocoders, freelancers and small businesses make great looking landing pages, this guide is for you.</p><h3>Color System</h3><p>Pazly uses its own implementation of the coloring system proposed by the Tailwind CSS team. Since Tailwind uses a plugin system and Pazly targets non technical users, I opted to implement a standalone coloring system which is served through CDN. Check the guide below for the class names and color codes. You will notice they match the coloring in the TailwindCSS documentation. Setting the colors is exactly like in TailwindCSS: set the corresponding CSS class on your element. Same codes apply to text and border, so for example</p><ul><li>Setting a bluegray 200 <strong>background</strong> means adding the <strong>bg-p-bluegray-200</strong> class</li><li>Setting a bluegray 200 <strong>text</strong> means adding the <strong>text-p-bluegray-200 </strong>class</li><li>Setting a bluegray 200 <strong>border</strong> means adding the <strong>border-p-bluegray-200</strong> class</li></ul><h3>Grays</h3><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/0*oKdAnXxHz5l8rvt8.png" /></figure><h3>Colors</h3><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/0*5GKfLkKbaAqnvGZI.png" /></figure><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/0*qiA8JCbGeNLBtW6D.png" /></figure><h3>Github Starter Kit</h3><p>The easiest way to start is to fork or download the starter kit from Github here <a href="https://github.com/pazlydev/template-kit"><strong>https://github.com/pazlydev/template-kit</strong></a></p><p>It contains a simple file <strong>index.html</strong> with dummy elements and the structure that allows Pazly to read and understand the template.</p><p><strong><em>The benefits of making templates for Pazly:</em></strong></p><p>✅ You set your price for your work</p><p>✅ You keep 100% revenue from your template sales. Pazly does not apply any sales commissions</p><p>✅ You get great discounts on Pazly Pro memberships</p><p>✅ You help a fast growing number of users who will benefit from your awesome work.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=fdc37ebb02c3" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Pazly Template Developer Guide]]></title>
            <link>https://pazly.medium.com/pazly-template-developer-guide-e06180cbad18?source=rss-5daff0199924------2</link>
            <guid isPermaLink="false">https://medium.com/p/e06180cbad18</guid>
            <dc:creator><![CDATA[Cris]]></dc:creator>
            <pubDate>Mon, 16 Aug 2021 21:36:54 GMT</pubDate>
            <atom:updated>2021-11-05T16:52:25.238Z</atom:updated>
            <content:encoded><![CDATA[<h3>Getting Started</h3><p>Pazly <a href="https://pazly.dev/">https://pazly.dev</a> is a landing page building tool for both non technically skilled users and information technology specialists. It aims to allow users to quickly build high quality, high converting web pages which are completely owned by the users.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/960/1*aeHPG5PYYHTQY16BOFiikg.png" /></figure><p>Pazly relies on TailwindCSS and has its own coloring system. If you are a fan of Tailwind CSS and want to help nocoders, freelancers and small businesses make great looking landing pages, this guide is for you.</p><p><strong><em>Benefits of making templates for Pazly:</em></strong></p><p>✅ You set your price for your work</p><p>✅ You keep 100% revenue from your template sales. Pazly does not apply any sales commissions</p><p>✅ You get great discounts on Pazly Pro memberships</p><p>✅ You help a fast growing number of users who will benefit from your awesome work.</p><h4>Examples</h4><ul><li><a href="https://pazlydev.gumroad.com/l/rHLSK">Experts Website Template</a></li><li><a href="https://pazlydev.gumroad.com/l/nGIisi">Happy Plants (App) Darkmode Template</a></li><li><a href="https://pazlydev.gumroad.com/l/Bwwfs">Happy Plants (App) Website Template</a></li></ul><h3>Github Starter Kit</h3><p>The easiest way to start is to fork or download the starter kit from Github here <a href="https://github.com/pazlydev/template-kit"><strong>https://github.com/pazlydev/template-kit</strong></a></p><p>It contains a simple file <strong>index.html</strong> with dummy elements and the structure that allows Pazly to read and understand the template.</p><h3>Color System</h3><p>Pazly uses its own implementation of the coloring system proposed by the Tailwind CSS team. Since Tailwind uses a plugin system and Pazly targets non technical users, I opted to implement a standalone coloring system which is served through CDN. Check the guide below for the class names and color codes. You will notice they match the coloring in the TailwindCSS documentation. Setting the colors is exactly like in TailwindCSS: set the corresponding CSS class on your element. Same codes apply to text and border, so for example</p><ul><li>Setting a bluegray 200 <strong>background</strong> means adding the <strong>bg-p-bluegray-200</strong> class</li><li>Setting a bluegray 200 <strong>text</strong> means adding the <strong>text-p-bluegray-200 </strong>class</li><li>Setting a bluegray 200 <strong>border</strong> means adding the <strong>border-p-bluegray-200</strong> class</li></ul><h4>Grays</h4><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*OYI1SVFhFatgOEBJsRFkrQ.png" /></figure><h4>Colors</h4><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*xA1yRzn6tsV5z13i_KnjLw.png" /></figure><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*WY1dB8vdHzu9IZ2EpGwZgw.png" /></figure><h3>Template structure</h3><p>A landing page for Pazly is formed from a set of blocks. Each block has within it editable elements. It is very important to understand the difference between blocks and the elements within the blocks</p><h3>Editable Blocks</h3><p>A block represents a <strong>full width section</strong> of a Pazly webpage. Blocks are relative to their container. Blocks can be moved before or after neighbouring blocs. Blocks can be cloned by default. It is a good practice to color blocks one by one.</p><h3>Making Elements Editable</h3><p>Editable elements should be marked with the ‘<em>pazly-editable</em>’ attribute. This is a set of string values, similar to the ‘class’ attribute and contains identifiers for the editors you want to enable for the selected element.</p><p>Example:</p><pre>&lt;button<strong> pazly-editable</strong>=”innerHtml bg href” class=”….</pre><p><strong><em>IMPORTANT</em></strong><em>: Please add these markers at leaf nodes in your HTML tree structure</em></p><h3>Editing text</h3><p>Add ‘<strong>innerHTML</strong>’ to the <em>pazly-editable</em> attribute. This will enable a text editor for the element. Please make sure that the innerHtml contains only text</p><pre>&lt;h1 pazly-editable=”<strong>innerHTML</strong>” class=”….</pre><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*9dQ-wrZI-CKoQWZDlzuBfg.png" /></figure><h3>Editing background</h3><p>Simply add ‘<strong>bg</strong>’ to the <em>pazly-editable</em> attribute. This will enable the color picker.</p><p>Use the ‘<strong>bg</strong>’ to enable element level background. Choose this editor for your buttons, links, cards, or areas that you want the user to color differently.</p><pre>&lt;a href=”” pazly-editable=”innerHTML <strong>bg</strong> href” class=”….</pre><p><strong><em>IMPORTANT</em></strong><em>: The section background picker is assigned out of the box, please do not assign the pazly-editable attribute on the section block.</em></p><h3>Editing links</h3><p>Add ‘<strong>href</strong>’ to the <em>pazly-editable</em> attribute. This will enable the link input editor. Choose this editor for your buttons and links</p><pre>&lt;<strong>a</strong> href=”” pazly-editable=”innerHTML bg <strong>href</strong>” class=”….</pre><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*A0pdbHPHbJKLp1DaaAkAoQ.png" /></figure><h3>Clone-able links</h3><p>To enable element cloning, simply add the ‘<strong>clone</strong>’ to the <em>pazly-editable</em> attribute. In the image above, the link is part of a row, which can contain multiple such links. So the code becomes</p><pre>&lt;<strong>a</strong> href=”” pazly-editable=”innerHTML bg href<strong> clone</strong>” class=”….</pre><h3>Editing images</h3><p>Editing images is as simple as setting the ‘<strong>src</strong>’ value on the <em>pazly-editable</em> attribute of an image tag. This will enable the image editor which allows you to set an image link or open an image from your computer. The opened image is later transformed into a base64 string.</p><p><strong><em>IMPORTANT</em></strong><em>: Do not use pazly-editable=”src ‘’ on HTML elements that do not support the src attribute natively.</em></p><pre>&lt;<strong>img</strong> src=”” pazly-editable=”<strong>src</strong>” class=”….</pre><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*lKftMKznsgeSEjb2ka9zCw.png" /></figure><h3>Editing videos</h3><p>Editing video tags is as simple as setting the ‘<strong>src</strong>’ value on the <em>pazly-editable</em> attribute of a video tag. This will enable the video editor which lets you set a video link. At the moment videos only support one video link, so please use a link that point to a <strong>.mp4</strong> video</p><p><strong><em>IMPORTANT</em></strong><em>: Do not use pazly-editable=”src ‘’ on HTML elements that do not support the src attribute natively.</em></p><pre>&lt;<strong>video</strong> src=”” pazly-editable=”<strong>src</strong>” class=”….</pre><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*jOx49CKmoElQG6PZxXWJtA.png" /></figure><h3>Editing embeddables</h3><p>To enable embeddings, please construct a wrapper element. Attache the <em>pazly-editable</em> attribute containing the “<strong>iframe</strong>” value. You can attach other edibles like ‘bg’.</p><pre>&lt;<strong>div</strong> pazly-editable=”bg <strong>iframe</strong>” class=”…</pre><pre>     &lt;iframe …</pre><pre>&lt;/<strong>div</strong>&gt;</pre><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*AmfVkKQ9qyQVCIuylTZcqQ.png" /></figure><h3>Editing forms</h3><p>Attache the “<strong>form</strong>” value to the <em>pazly-editable</em> attribute in the form tag, like in the example below.</p><pre>&lt;<strong>form</strong> pazly-editable=”<strong>form</strong>” method=”POST” action=”” static-form=”” class=”…</pre><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*hUqDMWH5i2qrpgiYhLnaWw.png" /></figure><h3>Selling Online (Gumroad, Lemon Squeezy, etc.)</h3><p>You set your own prices, your own item description. Please add a video demo on how your customers should use the template you make with Pazly Pro. Please also mention they can reach Pazly Pro at <a href="https://pazly.dev/">https://pazly.dev/</a></p><h3>Getting Featured in Pazly Pro</h3><p>This means that when Pazly Pro users open the Template panel, your template will show up with a quick link to purchase. This works only with Gumroad for now.</p><p>Instructions on how to submit coming soon…</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=e06180cbad18" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Landing pages for the undecided]]></title>
            <link>https://pazly.medium.com/landing-pages-for-the-undecided-d070d5136c35?source=rss-5daff0199924------2</link>
            <guid isPermaLink="false">https://medium.com/p/d070d5136c35</guid>
            <dc:creator><![CDATA[Cris]]></dc:creator>
            <pubDate>Mon, 10 May 2021 16:45:48 GMT</pubDate>
            <atom:updated>2021-05-21T08:18:54.548Z</atom:updated>
            <content:encoded><![CDATA[<p><em>Helping early stage startups with their online presence.</em></p><p>Building landing pages is almost an exact science nowadays. As a freelancer, it is in your advantage to adapt your client’s content to proven successful patterns and deliver fast. Let’s explore how you can do this efficiently for early stage startups.</p><p>In the very early stages, startup companies have great pitches and even greater ambitions but not a very clear focus on building a compelling landing page that clearly describes their services. This method will help you achieve a great landing page in minutes.</p><p>Warning: <em>this is as difficult as making a sandwich</em></p><h3>Prepare</h3><p>There’s no winning combination but I found out that these tools help me achieve great results in almost no time. It takes literally minutes to prepare:</p><p><strong>Images</strong>: great websites need even greater images. unsplash.com and pexels.com are perfect places for high quality copyright free images</p><p><strong>Illustrations</strong>: undraw.co and blush.design are my favourite, but there’s a lot of free to use illustration projects on the web</p><p><strong>Image composition</strong>: it doesn’t have to be complicated, just use a presentation software. Google Slides, PowerPoint or Keynote work just fine for now. You can make more refined graphics with a photo editing app after the first review with your client.</p><p><strong>Website builder</strong>: you could code but there’s a faster, better way. I built Pazly <a href="https://pazly.dev/">https://pazly.dev</a> to help you achieve great results, in no time, without even coding. It’s the fastest way to put images and text together into amazing landing pages, which you own and can sell to your clients.</p><p><strong>Review tool</strong>: Dropbox works best for this because it renders the HTML generated from Pazly. Your clients can review and add comments.</p><h3>Build</h3><p>Start from your clients pitch. It describes the value proposition in a clear way and you also get hints into what’s the problem they tackle, what’s their solution &amp; who are the founders. It can be that, at this point, they don’t have a good marketing strategy or some extended copy that you can use for the websites.</p><p>Go to <a href="https://pazly.dev/">pazly.dev</a> and sign up for the pro account. This will give you access to 80+ editable web blocks that you can mix into a great looking landing page template.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/960/1*E-xSCjsejJPtA6ITD9_s6g.png" /><figcaption>A screenshot from the Pro version of <a href="https://pazly.dev/">pazly.dev</a> used on a laptop</figcaption></figure><p>Drag and drop web blocks. Fill in the headings with the pieces of text from the startup pitch.</p><p>Search for a compelling image or open up a presentation and compose a visual slide that describes the text in the heading.</p><iframe src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FiWgRU_y6Nzk&amp;display_name=YouTube&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DiWgRU_y6Nzk&amp;image=http%3A%2F%2Fi.ytimg.com%2Fvi%2FiWgRU_y6Nzk%2Fhqdefault.jpg&amp;key=a19fcc184b9711e1b4764040d3dc5c07&amp;type=text%2Fhtml&amp;schema=youtube" width="854" height="480" frameborder="0" scrolling="no"><a href="https://medium.com/media/88c01978041d6a1c3e1fefc0e5b1039b/href">https://medium.com/media/88c01978041d6a1c3e1fefc0e5b1039b/href</a></iframe><p>If you don’t have an extended copy brief, leave out the extra text as a placeholder and make sure to ask your clients on review time what you should replace it with. This will get them thinking.</p><h3>Deliver</h3><p>Download your website from Pazly and upload it to Dropbox. Share the link with your clients and ask for a review.</p><h3>About Pazly</h3><p>Pazly is a visual development tool for landing pages and websites. It allows users to quickly build and iterate through multiple versions of their website.</p><p>Everything you build belongs to you and there’s no strings attached. Ideally you are a freelancer who builds presentations and landing pages for your clients and wants to achieve high quality results in little time. Sign up to Pazly today <a href="https://pazly.dev/">https://pazly.dev/</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=d070d5136c35" width="1" height="1" alt="">]]></content:encoded>
        </item>
    </channel>
</rss>