Parallel routes is a powerful feature in Next.js. It allows you to render one or more independent...
In Next.js layout.tsx is a shared UI component between routes. layout.tsx never rerenders when we...
In this article we will describe Next.js Link and its props Link is primarily used to...
layout.tsx takes a React component as a children. There is a default layout file in the app...
A dynamic route lets your application handle URLs whose segments aren’t known ahead of time. In...
The useRouter is a hook in Next.js providing programmatic navigation and access to the current...
We know that creating any folder in App Router creates a route. But if you want to create nested...
page.tsx File-based routing is introduced in Next.js from v13. That means the file's name...
How to implement theme toggler in tailwind CSS v4 in React project Theme...
NavLink, Link-এর মতই কাজ করে। তবে এটি Navigation Link তৈরিতে ব্যবহৃত হয়। NavLink active state handle...
কখন Route nest করতে হবে কখন করতে হবে না Nested Routes ব্যবহার Parent-Child...
Index Routes, React Router-এর একটি বিশেষ বৈশিষ্ট্য যা একটি route-এর default child নির্দেশ করে। যখন...
Nested Routes কী? Nested Routes হলো একটি root এর মধ্যে এক বা একাধিক root বা child root set...
Absolute Path Absolute Path হলো এমন একটি পাথ যা application-এর root ("/") থেকে শুরু করে।...
Params is an important feature of React Router, which helps to retrieve data from URLs through...
What We Will Learn? What Is Function Terminologies Different Types of...