Aug 16, 2025 · 3 min read · By now, you’ve learned how to create pages and subpages in Next.js using the app/ folder and page.js files. But what if you’re building something like a blog with many blog posts? Do you really need to create a new folder and file for every blog pos...
Join discussionJul 6, 2025 · 19 min read · If you’ve ever wondered how routers know where to send data even across large and complex networks, that’s where dynamic routing comes in. In this blog, I’ll share what I’ve learned about dynamic routing, how it works, and the different types of rout...
Join discussionJun 22, 2025 · 13 min read · 🔍 Introduction Ever landed on a page in your Next.js app and wondered why the UI didn’t quite reflect your latest changes, without you clicking refresh? You’re not alone. While the App Router’s Server Actions and React Server Components (RSC) promis...
Join discussion
May 29, 2025 · 12 min read · TL;DR: Unlock the secrets of Next.js routing with this comprehensive guide! Discover how to effortlessly create routes with its file-based system—no external libraries needed, unlike React. Learn to master dynamic routes for flexible URLs and catch-a...
Join discussion
May 12, 2025 · 3 min read · Example: Building a Simple Blog with Basic Routing Building a Simple Blog with Basic Routing in Next.js using the app directory is a great way to solidify your understanding of file-based routing. We'll create a basic blog structure, focusing on crea...
Join discussionMar 16, 2025 · 3 min read · [43] Routing in React App To implement routing within a React application, developers typically rely on a third-party package, such as React Router, which provides the necessary tools for managing navigation. The core of the routing configuration res...
Join discussion
Jan 1, 2025 · 4 min read · Introduction Dynamic routing is an essential feature of modern web applications, enabling developers to build pages dynamically based on data or user input. With Next.js, implementing dynamic routing becomes intuitive and efficient, thanks to its fil...
Join discussion
Dec 31, 2024 · 4 min read · Dynamic routing in Next.js allows you to create flexible routes that adapt to user input. This feature is particularly useful for building dynamic applications like blogs, e-commerce sites, and user-specific dashboards. Additionally, Next.js provides...
Join discussion