<?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: Shamima Alina</title>
    <description>The latest articles on DEV Community by Shamima Alina (@shamima_alina_e9f0f1a996a).</description>
    <link>https://dev.to/shamima_alina_e9f0f1a996a</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%2F2706098%2F5eec3527-1965-4513-be9a-006fe119bc55.jpg</url>
      <title>DEV Community: Shamima Alina</title>
      <link>https://dev.to/shamima_alina_e9f0f1a996a</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/shamima_alina_e9f0f1a996a"/>
    <language>en</language>
    <item>
      <title>Tech Tip: 5 ways to speed up your Next.js App</title>
      <dc:creator>Shamima Alina</dc:creator>
      <pubDate>Tue, 25 Mar 2025 19:49:19 +0000</pubDate>
      <link>https://dev.to/shamima_alina_e9f0f1a996a/tech-tip-5-ways-to-speed-up-your-nextjs-app-4c1h</link>
      <guid>https://dev.to/shamima_alina_e9f0f1a996a/tech-tip-5-ways-to-speed-up-your-nextjs-app-4c1h</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/shamima_alina_e9f0f1a996a" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2706098%2F5eec3527-1965-4513-be9a-006fe119bc55.jpg" alt="shamima_alina_e9f0f1a996a"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/shamima_alina_e9f0f1a996a/tech-tip-tuesday-5-ways-to-speed-up-your-nextjs-app-4je" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;Tech Tip Wednesday: 5 Ways to Speed Up Your Next.js App&lt;/h2&gt;
      &lt;h3&gt;Shamima Alina ・ Mar 25&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#webdev&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#programming&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#javascript&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#nextjs&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>webdev</category>
      <category>programming</category>
      <category>javascript</category>
      <category>nextjs</category>
    </item>
    <item>
      <title>Tech Tip Tuesday: 5 Ways to Speed Up Your Next.js App</title>
      <dc:creator>Shamima Alina</dc:creator>
      <pubDate>Tue, 25 Mar 2025 19:46:44 +0000</pubDate>
      <link>https://dev.to/shamima_alina_e9f0f1a996a/tech-tip-tuesday-5-ways-to-speed-up-your-nextjs-app-4je</link>
      <guid>https://dev.to/shamima_alina_e9f0f1a996a/tech-tip-tuesday-5-ways-to-speed-up-your-nextjs-app-4je</guid>
      <description>&lt;p&gt;Next.js is awesome, but your app can feel sluggish if you don’t optimize it. Here are 5 quick tips to make it run faster:&lt;/p&gt;

&lt;p&gt;1️⃣ Use Dynamic Imports &amp;amp; Lazy Loading&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Reduce initial load time by dynamically importing components:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import dynamic from "next/dynamic";
const HeavyComponent = dynamic(() =&amp;gt; import("../components/HeavyComponent"), { ssr: false });
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;2️⃣ Optimize Images with Next.js Image Component&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Instead of using &lt;code&gt;&amp;lt;img&amp;gt;&lt;/code&gt;, leverage Next.js's built-in &lt;code&gt;&amp;lt;Image&amp;gt;&lt;/code&gt; component for better compression &amp;amp; lazy loading:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import Image from "next/image";  
&amp;lt;Image src="/hero.jpg" width={500} height={300} alt="Hero image" /&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;3️⃣ Enable Automatic Static Optimization&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Use getStaticProps() or getStaticPaths() to pre-render pages at build time for better performance.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;4️⃣ Reduce Bundle Size with Code Splitting&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Analyze your bundle size with next build + next analyze to remove unused dependencies.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;5️⃣ Leverage Edge Functions &amp;amp; Middleware&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Move logic closer to users with Edge Functions to improve speed and scalability.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;💡 What’s your favorite Next.js optimization tip? Let’s discuss in the comments! 👇&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>javascript</category>
      <category>nextjs</category>
    </item>
  </channel>
</rss>
