<?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>Forem: Aarish</title>
    <description>The latest articles on Forem by Aarish (@qxr).</description>
    <link>https://forem.com/qxr</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%2F3020786%2Fd6adeeac-09e2-408d-b6b5-6e3a79092e25.jpg</url>
      <title>Forem: Aarish</title>
      <link>https://forem.com/qxr</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/qxr"/>
    <language>en</language>
    <item>
      <title>I Built a Portfolio with Next.js 16, React 19 &amp; Tailwind v4 – Here’s What I Learned</title>
      <dc:creator>Aarish</dc:creator>
      <pubDate>Sat, 17 Jan 2026 17:30:25 +0000</pubDate>
      <link>https://forem.com/qxr/i-built-a-portfolio-with-nextjs-16-react-19-tailwind-v4-heres-what-i-learned-2k40</link>
      <guid>https://forem.com/qxr/i-built-a-portfolio-with-nextjs-16-react-19-tailwind-v4-heres-what-i-learned-2k40</guid>
      <description>&lt;p&gt;&lt;strong&gt;🚀 The Motivation&lt;/strong&gt;&lt;br&gt;
As a developer, your portfolio is your handshake. I didn't want just another template—I wanted to build something that reflects my engineering standards: performance, scalability, and modern aesthetics.&lt;/p&gt;

&lt;p&gt;In this post, I'll walk you through how I built my new portfolio using the absolute latest stack: Next.js 16, React 19, and Tailwind CSS v4, along with GSAP for high-performance animations.&lt;/p&gt;

&lt;p&gt;🛠️ &lt;strong&gt;The Tech Stack&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Framework: Next.js 16 (App Router)&lt;/li&gt;
&lt;li&gt;UI Library: React 19&lt;/li&gt;
&lt;li&gt;Styling: Tailwind CSS v4 (Alpha/Beta)&lt;/li&gt;
&lt;li&gt;Animations: GSAP (GreenSock)&lt;/li&gt;
&lt;li&gt;State Management: React Context API&lt;/li&gt;
&lt;li&gt;Language: TypeScript&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;✨ &lt;strong&gt;Key Features &amp;amp; "The Cool Stuff"&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;1. Dynamic Color Themes (Not Just Dark Mode!)&lt;/strong&gt;&lt;br&gt;
Most sites stop at Dark/Light mode. I wanted more expression. I implemented a ThemeContext that allows for multiple color palettes (Cyan-Blue, Green-Emerald, Pink-Rose, etc.) that instantly re-theme the entire application.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;// contexts/ThemeContext.tsx
export type ColorTheme = 'cyan-blue-purple' | 'green-emerald-teal' | 'pink-rose-purple' | ...;
const themeConfigs = {
  'cyan-blue-purple': {
    primary: 'from-cyan-400 via-blue-500 to-purple-600',
    // ... define complex gradients
  },
  // ... other themes
};
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="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%2Farticles%2Fa87suls4zcq0x8lrwz8b.png" class="article-body-image-wrapper"&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%2Farticles%2Fa87suls4zcq0x8lrwz8b.png" alt=" " width="800" height="517"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Scalable Project Data Architecture&lt;/strong&gt;&lt;br&gt;
Instead of hardcoding HTML for every project, I built a data-driven architecture.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;data/enhancedProjects.ts : Acts as the source of truth.&lt;/li&gt;
&lt;li&gt;projectMapper.ts: Dynamically handles image paths, resolving screenshot-*.png files automatically.&lt;/li&gt;
&lt;li&gt;ProjectCard.tsx: A reusable component that adapts to the data.&lt;/li&gt;
&lt;li&gt;This means adding a new project is as simple as adding a JSON object—no UI code changes required.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="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%2Farticles%2Fgg3o8loqdxz9os0o3rt6.png" class="article-body-image-wrapper"&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%2Farticles%2Fgg3o8loqdxz9os0o3rt6.png" alt=" " width="800" height="491"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Butter-Smooth Animations with GSAP&lt;/strong&gt;&lt;br&gt;
I used GSAP for complex entrance animations and hover effects. Unlike simple CSS transitions, GSAP gives me granular control over timelines, ensuring the site feels "alive" without jank.&lt;/p&gt;

&lt;p&gt;&lt;a href="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%2Farticles%2F6u3disj3tqus2vghpekx.png" class="article-body-image-wrapper"&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%2Farticles%2F6u3disj3tqus2vghpekx.png" alt=" " width="800" height="496"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🔗 Check it out&lt;br&gt;
I'm hosting this live at &lt;a href="//aarish.dev"&gt;aarish.dev&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Let me know what you think!&lt;/p&gt;

</description>
      <category>nextjs</category>
      <category>portfolio</category>
      <category>showdev</category>
      <category>tailwindcss</category>
    </item>
    <item>
      <title>winner</title>
      <dc:creator>Aarish</dc:creator>
      <pubDate>Mon, 07 Apr 2025 09:15:12 +0000</pubDate>
      <link>https://forem.com/qxr/winner-1g60</link>
      <guid>https://forem.com/qxr/winner-1g60</guid>
      <description></description>
      <category>emptystring</category>
    </item>
  </channel>
</rss>
