<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Byakkuya (ahmed zbaa)</title>
    <description>The latest articles on DEV Community by Byakkuya (ahmed zbaa) (@byakkuya).</description>
    <link>https://dev.to/byakkuya</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1139046%2F604c2307-a1b8-4bf8-98b0-258dccdb0cef.jpeg</url>
      <title>DEV Community: Byakkuya (ahmed zbaa)</title>
      <link>https://dev.to/byakkuya</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/byakkuya"/>
    <language>en</language>
    <item>
      <title>Gradient animated text with Tailwind CSS</title>
      <dc:creator>Byakkuya (ahmed zbaa)</dc:creator>
      <pubDate>Sat, 20 Jul 2024 12:23:15 +0000</pubDate>
      <link>https://dev.to/byakkuya/gradient-animated-text-with-tailwind-css-1g2k</link>
      <guid>https://dev.to/byakkuya/gradient-animated-text-with-tailwind-css-1g2k</guid>
      <description>&lt;p&gt;I've was working on a project recently and I wanted to add some cool effect on my landing page's hero section's text.&lt;br&gt;
I've seen this effect on lots of sites  and i want something simple because i use Tailwind css &lt;br&gt;
so i find it somewhere online &lt;br&gt;
and i wanted to share it with you &lt;br&gt;
first you gonna add this to &lt;code&gt;tailwind.config.js&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;modules.export = {
  theme: {
    extend: {
      animation: {
        text: 'text 5s ease infinite',
      },
      keyframes: {
        text: {
          '0%, 100%': {
            'background-size': '200% 200%',
            'background-position': 'left center',
          },
          '50%': {
            'background-size': '200% 200%',
            'background-position': 'right center',
          },
        },
      },
    }
  }
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;then add these classes wherever you want&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;h1 class="animate-text bg-gradient-to-r from-teal-500 via-purple-500 to-orange-500 bg-clip-text text-transparent text-5xl font-black"&amp;gt;
   Gradient animated text with Tailwind CSS
&amp;lt;/h1&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>tailwindcss</category>
      <category>animation</category>
    </item>
    <item>
      <title>Docker Template for PERN Stack Project</title>
      <dc:creator>Byakkuya (ahmed zbaa)</dc:creator>
      <pubDate>Wed, 17 Jul 2024 12:32:54 +0000</pubDate>
      <link>https://dev.to/byakkuya/docker-template-for-pern-stack-project-3dd2</link>
      <guid>https://dev.to/byakkuya/docker-template-for-pern-stack-project-3dd2</guid>
      <description>&lt;p&gt;As part of my journey to master Docker🐳 and Docker Compose, I’ve completed a mini-project where I dockerized a simple PERN stack, which is my main stack. &lt;br&gt;
🔗 GitHub Repo: &lt;a href="https://lnkd.in/dXPfFWrx" rel="noopener noreferrer"&gt;https://lnkd.in/dXPfFWrx&lt;/a&gt;&lt;br&gt;
With this repository, you can start working on a PERN stack project without setting up the development environment. &lt;br&gt;
The stack includes:&lt;br&gt;
Next.js, Axios, Node.js, Express..js, PostgreSQL, PrismaORM&lt;/p&gt;

&lt;p&gt;📄 Instructions are in the repo. &lt;br&gt;
Looking forward to your feedback!!&lt;/p&gt;

</description>
      <category>docker</category>
      <category>nextjs</category>
      <category>postgres</category>
      <category>prisma</category>
    </item>
  </channel>
</rss>
