diff --git a/src/data/roadmaps/nextjs/content/adapters@fXXlJ6oN_YPWVr-fqEar3.md b/src/data/roadmaps/nextjs/content/adapters@fXXlJ6oN_YPWVr-fqEar3.md
index b02a4bf9d..30795018f 100644
--- a/src/data/roadmaps/nextjs/content/adapters@fXXlJ6oN_YPWVr-fqEar3.md
+++ b/src/data/roadmaps/nextjs/content/adapters@fXXlJ6oN_YPWVr-fqEar3.md
@@ -1 +1,7 @@
-# Adapters
\ No newline at end of file
+# Adapter
+
+Next.js can be adapted to run on different platforms to support their infrastructure capabilities, including AWS Amplify Hosting, Cloudflare, Deno Deploy, Netlify, and Vercel.
+
+Visit the following resources to learn more:
+
+- [@official@Deployment with Adapters](https://nextjs.org/docs/app/getting-started/deploying#adapters)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/analytics@a34ZmSk5VYVLq8wsEvOcI.md b/src/data/roadmaps/nextjs/content/analytics@a34ZmSk5VYVLq8wsEvOcI.md
index eb021f46e..8622e8b8a 100644
--- a/src/data/roadmaps/nextjs/content/analytics@a34ZmSk5VYVLq8wsEvOcI.md
+++ b/src/data/roadmaps/nextjs/content/analytics@a34ZmSk5VYVLq8wsEvOcI.md
@@ -1 +1,8 @@
-# Analytics
\ No newline at end of file
+# Analytics
+
+Next.js has built-in support for measuring and reporting performance metrics. You can either use the `useReportWebVitals` hook to manage reporting yourself, or alternatively, Vercel provides a managed service to automatically collect and visualize metrics for you.
+
+Visit the following resources to learn more:
+
+- [@official@How to add analytics to your Next.js application](https://nextjs.org/docs/app/guides/analytics)
+- [@official@useReportWebVitals](https://nextjs.org/docs/app/api-reference/functions/use-report-web-vitals)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/api-endpoints@4H8aOVYsZiPbTQUYcZjb_.md b/src/data/roadmaps/nextjs/content/api-endpoints@4H8aOVYsZiPbTQUYcZjb_.md
index 5a39d7e9d..acdd3ecfd 100644
--- a/src/data/roadmaps/nextjs/content/api-endpoints@4H8aOVYsZiPbTQUYcZjb_.md
+++ b/src/data/roadmaps/nextjs/content/api-endpoints@4H8aOVYsZiPbTQUYcZjb_.md
@@ -1 +1,13 @@
-# API Endpoints
\ No newline at end of file
+# API Endpoints
+
+API Routes let you create an API endpoint inside a Next.js app. API endpoints work differently in Pages routers and App Routers:
+
+* Pages Router: Historically, Next.js used pages/api/* for APIs. This approach relied on Node.js request/response objects and an Express-like API.
+* App Router (Default): Introduced in Next.js 13, the App Router fully embraces web standard Request/Response APIs. Instead of pages/api/*, you can now place `route.ts` or `route.js` files anywhere inside the app/ directory.
+
+Visit the following resources to learn more:
+
+- [@official@Route Handlers and Middleware](https://nextjs.org/docs/app/getting-started/route-handlers-and-middleware)
+- [@official@API Routes for Pages Router](https://nextjs.org/docs/pages/building-your-application/routing/api-routes)
+- [@official@Building APIs with Next.js](https://nextjs.org/blog/building-apis-with-nextjs)
+- [@video@Next.js 15 Tutorial - Route Handlers](https://www.youtube.com/watch?v=27Uj6BeIDV0)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/app@3VXKRDxDmqJObkoW8ndrz.md b/src/data/roadmaps/nextjs/content/app@3VXKRDxDmqJObkoW8ndrz.md
index 343b0527c..a1ae028b2 100644
--- a/src/data/roadmaps/nextjs/content/app@3VXKRDxDmqJObkoW8ndrz.md
+++ b/src/data/roadmaps/nextjs/content/app@3VXKRDxDmqJObkoW8ndrz.md
@@ -4,5 +4,5 @@ The App Router is a file-system based router that uses React's latest features,
Visit the following resources to learn more:
-- [@article@App Router Tutorial](https://nextjs.org/learn/dashboard-app)
-- [@article@Next js Tutorial for Beginners | Nextjs 13 (App Router) with TypeScript](https://www.youtube.com/watch?v=ZVnjOPwW4ZA)
\ No newline at end of file
+- [@official@App Router Tutorial](https://nextjs.org/learn/dashboard-app)
+- [@video@Next js Tutorial for Beginners | Nextjs 13 (App Router) with TypeScript](https://www.youtube.com/watch?v=ZVnjOPwW4ZA)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/caching-data@77i6HVsnX-uSDw8vz3afD.md b/src/data/roadmaps/nextjs/content/caching-data@77i6HVsnX-uSDw8vz3afD.md
index 8e494eae0..4ab3e79d5 100644
--- a/src/data/roadmaps/nextjs/content/caching-data@77i6HVsnX-uSDw8vz3afD.md
+++ b/src/data/roadmaps/nextjs/content/caching-data@77i6HVsnX-uSDw8vz3afD.md
@@ -1 +1,9 @@
-# Caching Data
\ No newline at end of file
+# Caching Data
+
+Caching data in Next.js involves storing the results of data fetches so that subsequent requests for the same data can be served faster. Instead of repeatedly fetching data from a database or API, Next.js can retrieve it from the cache. This improves performance and reduces the load on your data sources. Caching can be configured at different levels.
+
+Caching behavior changes depending on whether the route is statically or dynamically rendered, data is cached or uncached, and whether a request is part of an initial visit or a subsequent navigation. Depending on your use case, you can configure the caching behavior for individual routes and data requests.
+
+Visit the following resources to learn more:
+
+- [@official@Caching and Revalidating](https://nextjs.org/docs/app/getting-started/caching-and-revalidating)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/caching@0Rgs7jaFX1Gl5KDT6DKbX.md b/src/data/roadmaps/nextjs/content/caching@0Rgs7jaFX1Gl5KDT6DKbX.md
index 07f88797a..34f8a0a9d 100644
--- a/src/data/roadmaps/nextjs/content/caching@0Rgs7jaFX1Gl5KDT6DKbX.md
+++ b/src/data/roadmaps/nextjs/content/caching@0Rgs7jaFX1Gl5KDT6DKbX.md
@@ -1 +1,9 @@
-# Caching
\ No newline at end of file
+# Caching API Endpoints in Next.js
+
+When you don't know the exact route segment names ahead of time and want to create routes from dynamic data, you can use Dynamic Segments that are filled in at request time or prerendered at build time. One example is catch-all segments, which allow you to extend API Routes to catch all subsequent paths.
+
+Visit the following resources to learn more:
+
+- [@official@Catch-all Segments for App Router](https://nextjs.org/docs/app/api-reference/file-conventions/dynamic-routes#catch-all-segments)
+- [@official@Catch all API routes for Page Router](https://nextjs.org/docs/pages/building-your-application/routing/api-routes#catch-all-api-routes)
+- [@video@Next.js 15 Tutorial - Catch all Segments](https://www.youtube.com/watch?v=d46hLIg1B3Q)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/client-rendered@HdSmD_nDV5BPO5JJqs1k8.md b/src/data/roadmaps/nextjs/content/client-rendered@HdSmD_nDV5BPO5JJqs1k8.md
index bdc79bb7f..4ffbb82df 100644
--- a/src/data/roadmaps/nextjs/content/client-rendered@HdSmD_nDV5BPO5JJqs1k8.md
+++ b/src/data/roadmaps/nextjs/content/client-rendered@HdSmD_nDV5BPO5JJqs1k8.md
@@ -1 +1,10 @@
-# Client Rendered
\ No newline at end of file
+# Client-Side Rendering in Next.js
+
+Client-Side Rendering (CSR) means the browser receives a minimal HTML page from the server. The browser then downloads the JavaScript code, which is responsible for rendering the entire user interface. The JavaScript code fetches the data and dynamically generates the HTML content in the browser. This approach shifts the rendering workload from the server to the client's browser.
+
+Visit the following resources to learn more:
+
+- [@official@Server and Client Components for App Router](https://nextjs.org/docs/app/getting-started/server-and-client-components)
+- [@official@Client-side Rendering for Pages Router](https://nextjs.org/docs/pages/building-your-application/rendering/client-side-rendering)
+- [@official@Client Components](https://nextjs.org/docs/14/app/building-your-application/rendering/client-components)
+- [@video@Next.js 15 Tutorial - Server and Client Components](https://www.youtube.com/watch?v=dMCSiA5gzkU)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/client@jYSa7UMmjb51pGAyU4PoB.md b/src/data/roadmaps/nextjs/content/client@jYSa7UMmjb51pGAyU4PoB.md
index 22eccffe1..3b0e9c6d0 100644
--- a/src/data/roadmaps/nextjs/content/client@jYSa7UMmjb51pGAyU4PoB.md
+++ b/src/data/roadmaps/nextjs/content/client@jYSa7UMmjb51pGAyU4PoB.md
@@ -1 +1,11 @@
-# Client
\ No newline at end of file
+# Client-Side Data Fetching
+
+Client-side data fetching involves retrieving data directly in the user's browser using JavaScript. This happens after the initial HTML content is loaded. When a user interacts with a page, or after a certain event, the browser makes a request to an API or data source. The fetched data is then used to update the user interface dynamically, without requiring a full page reload.
+
+Client-side data fetching is useful when your page doesn't require SEO indexing, when you don't need to pre-render your data, or when the content of your pages needs to update frequently. It's important to note that using client-side data fetching can affect the performance of your application and the load speed of your pages. This is because the data fetching is done at the time of the component or pages mount, and the data is not cached.
+
+Visit the following resources to learn more:
+
+- [@official@Client-side Fetching for App Router](https://nextjs.org/docs/app/getting-started/fetching-data#client-components)
+- [@official@Client-side Fetching for Pages Router](https://nextjs.org/docs/pages/building-your-application/data-fetching/client-side)
+- [@video@Next.js 15 Tutorial - Fetching Data in Client Components](https://www.youtube.com/watch?v=7Kz4--kCBP0)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/composition@6O9c3J-1JQtZTXXIDDXSM.md b/src/data/roadmaps/nextjs/content/composition@6O9c3J-1JQtZTXXIDDXSM.md
index 471d9ad03..0554c9b7b 100644
--- a/src/data/roadmaps/nextjs/content/composition@6O9c3J-1JQtZTXXIDDXSM.md
+++ b/src/data/roadmaps/nextjs/content/composition@6O9c3J-1JQtZTXXIDDXSM.md
@@ -1 +1,9 @@
-# Composition
\ No newline at end of file
+# Rendering Composition
+
+Rendering composition is the practice of building complex user interfaces by combining smaller, reusable components. In Next.js, this is important because it allows you to strategically decide which parts of your application should be pre-rendered on the server for better performance and SEO, and which parts can be rendered on the client for dynamic interactivity. By composing components effectively, you can optimize the rendering strategy for each part of your application, leading to a faster and more efficient user experience.
+
+Visit the following resources to learn more:
+
+- [@official@Server and Client Composition Patterns](https://nextjs.org/docs/14/app/building-your-application/rendering/composition-patterns)
+- [@official@Server and Client Components](https://nextjs.org/docs/app/getting-started/server-and-client-components#how-do-server-and-client-components-work-in-nextjs)
+- [@video@Next.js 15 Tutorial - Server and Client Components](https://www.youtube.com/watch?v=dMCSiA5gzkU)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/css-in-js@j5jIZvz_bMZqmr_gl0pQF.md b/src/data/roadmaps/nextjs/content/css-in-js@j5jIZvz_bMZqmr_gl0pQF.md
index 27a2f6400..02948e9f2 100644
--- a/src/data/roadmaps/nextjs/content/css-in-js@j5jIZvz_bMZqmr_gl0pQF.md
+++ b/src/data/roadmaps/nextjs/content/css-in-js@j5jIZvz_bMZqmr_gl0pQF.md
@@ -1 +1,8 @@
-# CSS in JS
\ No newline at end of file
+# CSS in JS
+
+It's possible to use any existing CSS-in-JS solution in your existing Next.js Apps and Pages. CSS-in-JS is a technique where CSS styles are written in JavaScript files instead of separate CSS files. This approach allows you to use JavaScript's dynamic capabilities to manage and scope your styles, often using libraries that generate CSS at runtime or build time. It offers benefits like component-level styling, dynamic theming, and easier management of CSS dependencies.
+
+Visit the following resources to learn more:
+
+- [@official@How to use CSS-in-JS libraries in App Router](https://nextjs.org/docs/app/guides/css-in-js)
+- [@official@How to use CSS-in-JS libraries in Pages Router](https://nextjs.org/docs/pages/guides/css-in-js)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/css-modules@tlg5XMVcAHmhey-efjf3M.md b/src/data/roadmaps/nextjs/content/css-modules@tlg5XMVcAHmhey-efjf3M.md
index 515238253..d67e7fd3a 100644
--- a/src/data/roadmaps/nextjs/content/css-modules@tlg5XMVcAHmhey-efjf3M.md
+++ b/src/data/roadmaps/nextjs/content/css-modules@tlg5XMVcAHmhey-efjf3M.md
@@ -1 +1,7 @@
-# CSS Modules
\ No newline at end of file
+# CSS Modules
+
+CSS Modules locally scope CSS by generating unique class names. This allows you to use the same class in different files without worrying about naming collisions.
+
+Visit the following resources to learn more:
+
+- [@official@CSS Modules](https://nextjs.org/docs/app/getting-started/css#css-modules)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/custom-server@Hj01UZuHkQppXTq6XV9Pn.md b/src/data/roadmaps/nextjs/content/custom-server@Hj01UZuHkQppXTq6XV9Pn.md
index 75b76f9e0..7a3a22495 100644
--- a/src/data/roadmaps/nextjs/content/custom-server@Hj01UZuHkQppXTq6XV9Pn.md
+++ b/src/data/roadmaps/nextjs/content/custom-server@Hj01UZuHkQppXTq6XV9Pn.md
@@ -1 +1,7 @@
-# Custom Server
\ No newline at end of file
+# How to set up a custom server in Next.js
+
+Next.js includes its own server with `next start` by default. If you have an existing backend, you can still use it with Next.js (this is not a custom server). A custom Next.js server allows you to programmatically start a server for custom patterns. The majority of the time, you will not need this approach. However, it's available if you need to eject.
+
+Visit the following resources to learn more:
+
+- [@official@How to set up a custom server in Next.js](https://nextjs.org/docs/app/guides/custom-server)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/cypress@KmOTgclnf-QYDYK0QwwVe.md b/src/data/roadmaps/nextjs/content/cypress@KmOTgclnf-QYDYK0QwwVe.md
index c881065db..c95dc0b73 100644
--- a/src/data/roadmaps/nextjs/content/cypress@KmOTgclnf-QYDYK0QwwVe.md
+++ b/src/data/roadmaps/nextjs/content/cypress@KmOTgclnf-QYDYK0QwwVe.md
@@ -1 +1,8 @@
-# Cypress
\ No newline at end of file
+# Cypress
+
+Next.js supports Cypress for End-to-End (E2E) and Component Testing. With Cypress, you can easily create tests for your modern web applications, debug them visually, and automatically run them in your continuous integration builds.
+
+Visit the following resources to learn more:
+
+- [@official@How to set up Cypress with Next.js](https://nextjs.org/docs/app/guides/testing/cypress)
+- [@official@Cypress](https://www.cypress.io/)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/data-fetching-patterns@GAHFfQ8CviNxV7ITpt--q.md b/src/data/roadmaps/nextjs/content/data-fetching-patterns@GAHFfQ8CviNxV7ITpt--q.md
index b828a9b46..10e87da77 100644
--- a/src/data/roadmaps/nextjs/content/data-fetching-patterns@GAHFfQ8CviNxV7ITpt--q.md
+++ b/src/data/roadmaps/nextjs/content/data-fetching-patterns@GAHFfQ8CviNxV7ITpt--q.md
@@ -1 +1,12 @@
-# Data Fetching Patterns
\ No newline at end of file
+# Data Fetching Patterns in Next.js
+
+There are a few recommended patterns and best practices for fetching data in React and Next.js, including:
+* Fetching data on the server.
+* Fetching data only where it's necessary.
+* Using React's streaming and Suspense features to progressively render and incrementally stream rendered units of the UI to the client.
+* Using parallel or sequential fetching depending on your particular use case.
+* Using preload data.
+
+Visit the following resources to learn more:
+
+- [@official@Patterns and Best Practices](https://nextjs.org/docs/14/app/building-your-application/data-fetching/patterns#fetching-data-on-the-server)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/deployment-options@BPStVqWV0660A-_fJSuM7.md b/src/data/roadmaps/nextjs/content/deployment-options@BPStVqWV0660A-_fJSuM7.md
index fb25a997d..3119a77fa 100644
--- a/src/data/roadmaps/nextjs/content/deployment-options@BPStVqWV0660A-_fJSuM7.md
+++ b/src/data/roadmaps/nextjs/content/deployment-options@BPStVqWV0660A-_fJSuM7.md
@@ -1 +1,12 @@
-# Deployment Options
\ No newline at end of file
+# Deployment Options
+
+Next.js can be deployed in multiple ways, including as a :
+
+* Node.js server,
+* Docker container,
+* static export,
+* adapted to run on different platforms.
+
+Visit the following resources to learn more:
+
+- [@official@Deploying in Next.js](https://nextjs.org/docs/app/getting-started/deploying)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/docker-container@y5_zX209AaHOf_wQibo12.md b/src/data/roadmaps/nextjs/content/docker-container@y5_zX209AaHOf_wQibo12.md
index f10504d5d..f8d532eec 100644
--- a/src/data/roadmaps/nextjs/content/docker-container@y5_zX209AaHOf_wQibo12.md
+++ b/src/data/roadmaps/nextjs/content/docker-container@y5_zX209AaHOf_wQibo12.md
@@ -1 +1,8 @@
-# Docker Container
\ No newline at end of file
+# Docker Container
+
+Next.js can be deployed to any provider that supports Docker containers. This includes container orchestrators like Kubernetes or a cloud provider that runs Docker. Docker deployments support all Next.js features.
+
+Visit the following resources to learn more:
+
+- [@roadmap@Visit the Dedicated Docker Roadmap](https://roadmap.sh/docker)
+- [@official@Deployment with Docker](https://nextjs.org/docs/app/getting-started/deploying#nodejs-server)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/edge@SYUKB1Afciqz7hA1n5yIx.md b/src/data/roadmaps/nextjs/content/edge@SYUKB1Afciqz7hA1n5yIx.md
index 5dffcfc5e..5206d0602 100644
--- a/src/data/roadmaps/nextjs/content/edge@SYUKB1Afciqz7hA1n5yIx.md
+++ b/src/data/roadmaps/nextjs/content/edge@SYUKB1Afciqz7hA1n5yIx.md
@@ -1 +1,8 @@
-# Edge
\ No newline at end of file
+# Edge Runtime
+
+The Edge Runtime is a lightweight JavaScript runtime environment based on V8, designed to execute code closer to the user. It allows you to run server-side logic, like API routes and middleware, on a globally distributed network of servers. This proximity reduces latency and improves the overall performance of your application by minimizing the distance data needs to travel.
+
+Visit the following resources to learn more:
+
+- [@official@What is Edge Runtime?](https://edge-runtime.vercel.app/)
+- [@official@Edge Runtime](https://nextjs.org/docs/app/api-reference/edge)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/environment-variables@iv6rWEqjh07d0n2kAQedO.md b/src/data/roadmaps/nextjs/content/environment-variables@iv6rWEqjh07d0n2kAQedO.md
index be8e682f7..c1e4e9e4a 100644
--- a/src/data/roadmaps/nextjs/content/environment-variables@iv6rWEqjh07d0n2kAQedO.md
+++ b/src/data/roadmaps/nextjs/content/environment-variables@iv6rWEqjh07d0n2kAQedO.md
@@ -1 +1,9 @@
-# Environment Variables
\ No newline at end of file
+# Environment Variables
+
+Environment variables are dynamic values that can affect the behavior of programs on a computer. They are typically used to store configuration settings, API keys, and other sensitive information that should not be hardcoded directly into the application's source code. This allows you to easily change the application's behavior without modifying the code itself, making it more flexible and secure across different environments like development, testing, and production.
+
+Next.js comes with built-in support for environment variables, which allows you to use `.env` to load environment variables, and bundle environment variables for the browser by prefixing with` NEXT_PUBLIC_`
+
+Visit the following resources to learn more:
+
+- [@official@How to use environment variables in Next.js](https://nextjs.org/docs/app/guides/environment-variables)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/error-states@pxltXOWgpbo95V4u2ryX7.md b/src/data/roadmaps/nextjs/content/error-states@pxltXOWgpbo95V4u2ryX7.md
index 7e02a900b..cdeb7a484 100644
--- a/src/data/roadmaps/nextjs/content/error-states@pxltXOWgpbo95V4u2ryX7.md
+++ b/src/data/roadmaps/nextjs/content/error-states@pxltXOWgpbo95V4u2ryX7.md
@@ -1 +1,12 @@
-# Error States
\ No newline at end of file
+# Error States
+
+Error states in Next.js routing refer to how your application handles situations where a route cannot be successfully loaded or rendered. Errors can be divided into two categories: expected errors and uncaught exceptions.
+
+Expected errors are those that can occur during the normal operation of the application, such as those from server-side form validation or failed requests. These errors should be handled explicitly and returned to the client.
+
+Uncaught exceptions are unexpected errors that indicate bugs or issues that should not occur during the normal flow of your application. These should be handled by throwing errors, which will then be caught by error boundaries.
+
+Visit the following resources to learn more:
+
+- [@official@Error Handling](https://nextjs.org/docs/app/getting-started/error-handling#handling-expected-errors)
+- [@video@Next.js 15 Tutorial - Error Handling](https://www.youtube.com/watch?v=fWV5WPSbgdg)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/eslint@CvrHzkxg7ndCvd_tbYnK4.md b/src/data/roadmaps/nextjs/content/eslint@CvrHzkxg7ndCvd_tbYnK4.md
index 6f7ae19b0..0221a6685 100644
--- a/src/data/roadmaps/nextjs/content/eslint@CvrHzkxg7ndCvd_tbYnK4.md
+++ b/src/data/roadmaps/nextjs/content/eslint@CvrHzkxg7ndCvd_tbYnK4.md
@@ -1 +1,9 @@
-# ESLint
\ No newline at end of file
+# ESLint
+
+ESLint is an open-source static code analysis tool for JavaScript that identifies problematic patterns and style issues in your code, helping to enforce coding standards and prevent bugs before they occur
+
+Next.js provides an ESLint plugin, `eslint-plugin-next`, already bundled within the base configuration that makes it possible to catch common issues and problems in a Next.js application.
+
+Visit the following resources to learn more:
+
+- [@official@ESLint Plugin](https://nextjs.org/docs/app/api-reference/config/eslint)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/fetching-locations@lkdBRzC8lAvRYKBt7E37V.md b/src/data/roadmaps/nextjs/content/fetching-locations@lkdBRzC8lAvRYKBt7E37V.md
index 2869430f2..9c4bf831c 100644
--- a/src/data/roadmaps/nextjs/content/fetching-locations@lkdBRzC8lAvRYKBt7E37V.md
+++ b/src/data/roadmaps/nextjs/content/fetching-locations@lkdBRzC8lAvRYKBt7E37V.md
@@ -1 +1,12 @@
-# Fetching Locations
\ No newline at end of file
+# Fetching Location
+
+Data fetching in Next.js allows you to render your content in different ways, depending on your application's use case. By default, layouts and pages are Server Components, which lets you fetch data and render parts of your UI on the server, optionally cache the result, and stream it to the client. When you need interactivity or browser APIs, you can use Client Components to layer in functionality.
+
+
+
+These include pre-rendering with Server-side Rendering or Static Generation, and updating or creating content at runtime with Incremental Static Regeneration.
+
+Visit the following resources to learn more:
+
+- [@official@Fetching Data](https://nextjs.org/docs/app/getting-started/fetching-data)
+- [@video@Next.js 15 Tutorial - Data Fetching](https://www.youtube.com/watch?v=DRsU93Lde2)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/fonts@ZptECTASMX97m5yCZ-XO8.md b/src/data/roadmaps/nextjs/content/fonts@ZptECTASMX97m5yCZ-XO8.md
index 49d56b6db..e7269bcb8 100644
--- a/src/data/roadmaps/nextjs/content/fonts@ZptECTASMX97m5yCZ-XO8.md
+++ b/src/data/roadmaps/nextjs/content/fonts@ZptECTASMX97m5yCZ-XO8.md
@@ -1 +1,7 @@
-# Fonts
\ No newline at end of file
+# Font Optimization
+
+The `next/font` module automatically optimizes your fonts and removes external network requests for improved privacy and performance. It includes built-in self-hosting for any font file. This means you can optimally load web fonts with no layout shift.
+
+Visit the following resources to learn more:
+
+- [@official@Font Optimization](https://nextjs.org/docs/app/getting-started/fonts)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/global-css@BfNON3Vp3zSWBurSS4ZHo.md b/src/data/roadmaps/nextjs/content/global-css@BfNON3Vp3zSWBurSS4ZHo.md
index c333ad672..b1418cd84 100644
--- a/src/data/roadmaps/nextjs/content/global-css@BfNON3Vp3zSWBurSS4ZHo.md
+++ b/src/data/roadmaps/nextjs/content/global-css@BfNON3Vp3zSWBurSS4ZHo.md
@@ -1 +1,7 @@
-# Global CSS
\ No newline at end of file
+# Global CSS
+
+Next.js provides several ways to style your application using CSS. One example is Global CSS, which refers to CSS styles that are applied across your entire application. This means that the styles defined in a global CSS file will affect all elements on every page of your website, unless specifically overridden by more specific CSS rules. It's a way to establish a consistent look and feel throughout your project.
+
+Visit the following resources to learn more:
+
+- [@official@Global CSS](https://nextjs.org/docs/app/getting-started/css#global-css)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/handling-sensitive-data@Ti_Bl5NnRIY9UTNTH15xA.md b/src/data/roadmaps/nextjs/content/handling-sensitive-data@Ti_Bl5NnRIY9UTNTH15xA.md
index d24b112f4..5bbebf583 100644
--- a/src/data/roadmaps/nextjs/content/handling-sensitive-data@Ti_Bl5NnRIY9UTNTH15xA.md
+++ b/src/data/roadmaps/nextjs/content/handling-sensitive-data@Ti_Bl5NnRIY9UTNTH15xA.md
@@ -1 +1,8 @@
-# Handling Sensitive Data
\ No newline at end of file
+# Handling Sensitive Data
+
+Sensitive data, like API keys or user credentials, requires careful management to prevent exposure. In Next.js, you should avoid directly embedding such data in client-side code or committing it to your repository. Instead, leverage environment variables and server-side logic to securely access and utilize sensitive information, ensuring it remains protected from unauthorized access.
+
+Visit the following resources to learn more:
+
+- [@official@How to think about data security in Next.js](https://nextjs.org/docs/app/guides/data-security#data-fetching-approaches)
+- [@article@How to Think About Security in Next.js](https://nextjs.org/blog/security-nextjs-server-components-actions)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/images@1t9iOcmrEmuwOxOZ0vlY7.md b/src/data/roadmaps/nextjs/content/images@1t9iOcmrEmuwOxOZ0vlY7.md
index d14d00086..7ff8a5598 100644
--- a/src/data/roadmaps/nextjs/content/images@1t9iOcmrEmuwOxOZ0vlY7.md
+++ b/src/data/roadmaps/nextjs/content/images@1t9iOcmrEmuwOxOZ0vlY7.md
@@ -1 +1,12 @@
-# Images
\ No newline at end of file
+# Images
+
+ images account for a huge portion of the typical website’s page weight and can have a sizable impact on your website's LCP performance. The Next.js Image component extends the HTML
element with features for automatic image optimization, including:
+
+* Size Optimization: Automatically serve correctly sized images for each device, using modern image formats like WebP and AVIF.
+* Visual Stability: Prevent layout shift automatically when images are loading.
+* Faster Page Loads: Images are only loaded when they enter the viewport using native browser lazy loading, with optional blur-up placeholders.
+* Asset Flexibility: On-demand image resizing, even for images stored on remote servers
+
+Visit the following resources to learn more:
+
+- [@official@Image Optimization](https://nextjs.org/docs/app/getting-started/images)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/instrumentation@DHqdXJFhVZWaNa5zSX8Wk.md b/src/data/roadmaps/nextjs/content/instrumentation@DHqdXJFhVZWaNa5zSX8Wk.md
index f7bf6e87e..97747b11f 100644
--- a/src/data/roadmaps/nextjs/content/instrumentation@DHqdXJFhVZWaNa5zSX8Wk.md
+++ b/src/data/roadmaps/nextjs/content/instrumentation@DHqdXJFhVZWaNa5zSX8Wk.md
@@ -1 +1,7 @@
-# Instrumentation
\ No newline at end of file
+# instrumentation
+
+Instrumentation is the process of using code to integrate monitoring and logging tools into your application. This allows you to track the performance and behavior of your application, and to debug issues in production.
+
+Visit the following resources to learn more:
+
+- [@official@How to set up instrumentation](https://nextjs.org/docs/app/guides/instrumentation)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/intercepting-routes@dP6cZkEZ6lxPsy5SjvuZA.md b/src/data/roadmaps/nextjs/content/intercepting-routes@dP6cZkEZ6lxPsy5SjvuZA.md
index d0f456fae..4c034e8f0 100644
--- a/src/data/roadmaps/nextjs/content/intercepting-routes@dP6cZkEZ6lxPsy5SjvuZA.md
+++ b/src/data/roadmaps/nextjs/content/intercepting-routes@dP6cZkEZ6lxPsy5SjvuZA.md
@@ -1 +1,8 @@
-# Intercepting Routes
\ No newline at end of file
+# Intercepting Routes
+
+Intercepting routes allows you to load a route from another part of your application within the current layout. This routing paradigm can be useful when you want to display the content of a route without the user switching to a different context. For example, when clicking on a photo in a feed, you can display the photo in a modal, overlaying the feed.
+
+Visit the following resources to learn more:
+
+- [@official@Intercepting Routes](https://nextjs.org/docs/app/api-reference/file-conventions/intercepting-routes)
+- [@video@Next.js 15 Tutorial - Intercepting Routes](https://www.youtube.com/watch?v=FTiwIVxWC00)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/internationalization@bSsM7VLZcJKYL5XXSG0r-.md b/src/data/roadmaps/nextjs/content/internationalization@bSsM7VLZcJKYL5XXSG0r-.md
index 49a10ae67..a22c3489f 100644
--- a/src/data/roadmaps/nextjs/content/internationalization@bSsM7VLZcJKYL5XXSG0r-.md
+++ b/src/data/roadmaps/nextjs/content/internationalization@bSsM7VLZcJKYL5XXSG0r-.md
@@ -1 +1,8 @@
-# Internationalization
\ No newline at end of file
+# Internationalization
+
+Internationalization is the process of designing and developing applications that can be adapted to various languages and regions without engineering changes. Next.js enables you to configure the routing and rendering of content to support multiple languages. Making your site adaptive to different locales includes translated content (localization) and internationalized routes.
+
+Visit the following resources to learn more:
+
+- [@official@How to implement internationalization in Next.js for App Router](https://nextjs.org/docs/app/guides/internationalization)
+- [@official@How to implement internationalization in Next.js for Pages Router](https://nextjs.org/docs/pages/guides/internationalization)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/jest@sc5Pliyq6bfeFXp0ca5yH.md b/src/data/roadmaps/nextjs/content/jest@sc5Pliyq6bfeFXp0ca5yH.md
index 535d60df1..430710e34 100644
--- a/src/data/roadmaps/nextjs/content/jest@sc5Pliyq6bfeFXp0ca5yH.md
+++ b/src/data/roadmaps/nextjs/content/jest@sc5Pliyq6bfeFXp0ca5yH.md
@@ -1 +1,8 @@
-# Jest
\ No newline at end of file
+# Jest
+
+Next.js allows you to use Jest for unit testing and snapshot testing. Jest is a JavaScript testing framework created by Facebook, designed for ensuring the correctness of JavaScript code, especially React applications. It provides a complete and easy-to-use solution for writing unit, integration, and end-to-end tests. Jest includes features like a test runner, assertion library, mocking capabilities, and code coverage reporting, making it a popular choice for developers looking to thoroughly test their code.
+
+Visit the following resources to learn more:
+
+- [@official@How to set up Jest with Next.js](https://nextjs.org/docs/app/guides/testing/jest)
+- [@official@Jest](https://jestjs.io/)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/layouts-and-templates@zJXCS7U9NUsn7cuEx3YMs.md b/src/data/roadmaps/nextjs/content/layouts-and-templates@zJXCS7U9NUsn7cuEx3YMs.md
index 2e4840f4f..ccb771513 100644
--- a/src/data/roadmaps/nextjs/content/layouts-and-templates@zJXCS7U9NUsn7cuEx3YMs.md
+++ b/src/data/roadmaps/nextjs/content/layouts-and-templates@zJXCS7U9NUsn7cuEx3YMs.md
@@ -1 +1,14 @@
-# Layouts and Templates
\ No newline at end of file
+# Layouts and Templates
+
+Layouts and templates provide a way to share UI elements across multiple pages, maintaining state and avoiding unnecessary re-renders. Layouts wrap around pages, persisting across route changes to preserve things like navigation bars or sidebars.
+
+Templates are similar to layouts in that they wrap each child layout or page. Unlike layouts that persist across routes and maintain state, templates create a new instance for each of their children on navigation. This means that when a user navigates between routes that share a template, a new instance of the component is mounted, DOM elements are recreated, state is not preserved, and effects are re-synchronized.
+
+Visit the following resources to learn more:
+
+- [@official@Layouts for App Router](https://nextjs.org/docs/app/api-reference/file-conventions/layout#root-layouts)
+- [@official@Layouts for Pages Router](https://nextjs.org/docs/pages/building-your-application/routing/pages-and-layouts)
+- [@official@Templates for App Router](https://nextjs.org/docs/app/api-reference/file-conventions/template)
+- [@article@A guide to Next.js layouts and nested layouts](https://blog.logrocket.com/guide-next-js-layouts-nested-layouts/)
+- [@video@Next.js 15 Tutorial - Layouts](https://www.youtube.com/watch?v=NK-8a8EzWrU)
+- [@video@Next.js 15 Tutorial - Templates](https://www.youtube.com/watch?v=yfww2kplO-k)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/lazy-loading@3_Mpvkxp9A7PMogxxMikQ.md b/src/data/roadmaps/nextjs/content/lazy-loading@3_Mpvkxp9A7PMogxxMikQ.md
index 4d8b666a8..fcc9578e8 100644
--- a/src/data/roadmaps/nextjs/content/lazy-loading@3_Mpvkxp9A7PMogxxMikQ.md
+++ b/src/data/roadmaps/nextjs/content/lazy-loading@3_Mpvkxp9A7PMogxxMikQ.md
@@ -1 +1,8 @@
-# Lazy Loading
\ No newline at end of file
+# Lazy Loading
+
+Lazy loading in Next.js helps improve the initial loading performance of an application by decreasing the amount of JavaScript needed to render a route. It allows you to defer loading of Client Components and imported libraries, and only include them in the client bundle when they're needed. For example, you might want to defer loading a modal until a user clicks to open it.
+
+Visit the following resources to learn more:
+
+- [@official@How to lazy load Client Components and libraries](https://nextjs.org/docs/app/guides/lazy-loading)
+- [@article@Lazy loading](https://developer.mozilla.org/en-US/docs/Web/Performance/Guides/Lazy_loading)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/loading-and-streaming@b2LcPc5MfoyF0W9Y0aGpR.md b/src/data/roadmaps/nextjs/content/loading-and-streaming@b2LcPc5MfoyF0W9Y0aGpR.md
index 2fc3b66aa..9c21f14f3 100644
--- a/src/data/roadmaps/nextjs/content/loading-and-streaming@b2LcPc5MfoyF0W9Y0aGpR.md
+++ b/src/data/roadmaps/nextjs/content/loading-and-streaming@b2LcPc5MfoyF0W9Y0aGpR.md
@@ -1 +1,12 @@
-# Loading and Streaming
\ No newline at end of file
+# Loading and Streaming
+
+The special file `loading.js` helps you create meaningful Loading UI with React Suspense. With this convention, you can show an instant loading state from the server while the content of a route segment loads. The new content is automatically swapped in once rendering is complete.
+
+In addition to `loading.js`, you can also manually create Suspense Boundaries for your own UI components. The App Router supports streaming with Suspense for both Node.js and Edge runtimes.
+
+Visit the following resources to learn more:
+
+- [@official@Loading UI and Streaming](https://nextjs.org/docs/14/app/building-your-application/routing/loading-ui-and-streaming)
+- [@official@Instant Loading States](https://nextjs.org/docs/14/app/building-your-application/routing/loading-ui-and-streaming#instant-loading-states)
+- [@official@Suspense](https://react.dev/reference/react/Suspense)
+- [@article@Next.js 15 Tutorial - Loading UI](https://www.youtube.com/watch?v=0OVg4ikUaz0)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/markdown-and-mdx@3GI0xHGG_qgpLfEjaLYxr.md b/src/data/roadmaps/nextjs/content/markdown-and-mdx@3GI0xHGG_qgpLfEjaLYxr.md
index 7cc3fcca4..8d5ddd8e4 100644
--- a/src/data/roadmaps/nextjs/content/markdown-and-mdx@3GI0xHGG_qgpLfEjaLYxr.md
+++ b/src/data/roadmaps/nextjs/content/markdown-and-mdx@3GI0xHGG_qgpLfEjaLYxr.md
@@ -1 +1,9 @@
-# Markdown and MDX
\ No newline at end of file
+# Markdown and MDX
+
+Markdown is a lightweight markup language used to format text. It allows you to write using plain text syntax and convert it to structurally valid HTML. It's commonly used for writing content on websites and blogs. MDX is a superset of markdown that lets you write JSX directly in your markdown files. It is a powerful way to add dynamic interactivity and embed React components within your content.
+
+Next.js can support both local MDX content inside your application, as well as remote MDX files fetched dynamically on the server. The Next.js plugin handles transforming markdown and React components into HTML, including support for usage in Server Components (the default in App Router).
+
+Visit the following resources to learn more:
+
+- [@official@How to use markdown and MDX in Next.js](https://nextjs.org/docs/app/guides/mdx)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/memoization-in-fetch@UZCMVpg5YIDxu-AMah3S-.md b/src/data/roadmaps/nextjs/content/memoization-in-fetch@UZCMVpg5YIDxu-AMah3S-.md
index 3306afc75..34ac85e9a 100644
--- a/src/data/roadmaps/nextjs/content/memoization-in-fetch@UZCMVpg5YIDxu-AMah3S-.md
+++ b/src/data/roadmaps/nextjs/content/memoization-in-fetch@UZCMVpg5YIDxu-AMah3S-.md
@@ -1 +1,10 @@
-# Memoization in Fetch
\ No newline at end of file
+# Memoization in Fetch
+
+Memoization is an optimization technique that speeds up subsequent function calls by caching the results of previous calls with the same input parameters. This approach allows for re-use of data in a React Component tree, prevents redundant network calls and enhances performance
+For the initial request, data is fetched from an external source and the result is stored in memory
+Subsequent requests for the same data within the same render pass retrieve the result from memory, bypassing the need to make the request again.
+
+Visit the following resources to learn more:
+
+- [@official@Request Memoization](https://nextjs.org/docs/app/guides/caching#request-memoization)
+- [@video@Next.js 14 Tutorial - vRequest Memoization](https://www.youtube.com/watch?v=tcLe3Xi0fJE)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/memory-usage@SI7KzNSLP0ccH_P94StGL.md b/src/data/roadmaps/nextjs/content/memory-usage@SI7KzNSLP0ccH_P94StGL.md
index 9151f4ad0..96f89cfdb 100644
--- a/src/data/roadmaps/nextjs/content/memory-usage@SI7KzNSLP0ccH_P94StGL.md
+++ b/src/data/roadmaps/nextjs/content/memory-usage@SI7KzNSLP0ccH_P94StGL.md
@@ -1 +1,7 @@
-# Memory Usage
\ No newline at end of file
+# Memory Usage
+
+As applications grow and become more feature rich, they can demand more resources when developing locally or creating production builds. Next.js provides several strategies and techniques to optimize memory and address common memory issues in Next.js.
+
+Visit the following resources to learn more:
+
+- [@official@How to optimize memory usage](https://nextjs.org/docs/app/guides/memory-usage)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/metadata@45XMR5imHEDF_X8wcgjGW.md b/src/data/roadmaps/nextjs/content/metadata@45XMR5imHEDF_X8wcgjGW.md
index 676ef9b01..4891fa919 100644
--- a/src/data/roadmaps/nextjs/content/metadata@45XMR5imHEDF_X8wcgjGW.md
+++ b/src/data/roadmaps/nextjs/content/metadata@45XMR5imHEDF_X8wcgjGW.md
@@ -1 +1,11 @@
-# Metadata
\ No newline at end of file
+# Metadata
+
+The Metadata APIs can be used to define your application metadata for improved SEO and web shareability and include:
+
+* The static `metadata` object
+* The dynamic `generateMetadata` function
+* Special file conventions that can be used to add static or dynamically generated favicons and OG images.
+
+Visit the following resources to learn more:
+
+- [@official@Metadata and OG images](https://nextjs.org/docs/app/getting-started/metadata-and-og-images#static-open-graph-images)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/middelware@gpZNwsh075wl5eH2gLKro.md b/src/data/roadmaps/nextjs/content/middelware@gpZNwsh075wl5eH2gLKro.md
index 61593606b..777f879fe 100644
--- a/src/data/roadmaps/nextjs/content/middelware@gpZNwsh075wl5eH2gLKro.md
+++ b/src/data/roadmaps/nextjs/content/middelware@gpZNwsh075wl5eH2gLKro.md
@@ -1 +1,9 @@
-# Middelware
\ No newline at end of file
+i# Middleware
+
+Middleware is a powerful feature that allows you to intercept and run code on the server before a request is completed. Then, based on the incoming request, you can modify the response by rewriting, redirecting, modifying the request or response headers, or responding directly. Middleware executes before routes are rendered. It's particularly useful for implementing custom server-side logic like authentication, logging, or handling redirects.
+
+Visit the following resources to learn more:
+
+- [@official@Middleware for App Router](https://nextjs.org/docs/app/api-reference/file-conventions/middleware)
+- [@official@Middleware for Pages Router](https://nextjs.org/docs/pages/api-reference/file-conventions/middleware)
+- [@video@Next.js 15 Tutorial - Middleware](https://www.youtube.com/watch?v=t1KTTZbqCm0)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/nodejs-server@Okw_IjU2iRSvSQVdKeeCo.md b/src/data/roadmaps/nextjs/content/nodejs-server@Okw_IjU2iRSvSQVdKeeCo.md
index e4afac9a2..ae04b91a1 100644
--- a/src/data/roadmaps/nextjs/content/nodejs-server@Okw_IjU2iRSvSQVdKeeCo.md
+++ b/src/data/roadmaps/nextjs/content/nodejs-server@Okw_IjU2iRSvSQVdKeeCo.md
@@ -1 +1,7 @@
-# Node.js Server
\ No newline at end of file
+# Node.js Server
+
+Next.js can be deployed to any provider that supports Node.js. You just have to build your application and start a Node.js server using simple commands. This server supports all Next.js features. If needed, you can also eject to a custom server. Node.js deployments support all Next.js features.
+
+Visit the following resources to learn more:
+
+- [@official@Node.js Server](https://nextjs.org/docs/app/getting-started/deploying#nodejs-server)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/nodejs@0S37ka1K-TdYLnjCBrKSH.md b/src/data/roadmaps/nextjs/content/nodejs@0S37ka1K-TdYLnjCBrKSH.md
index 30b9806aa..9d812ad7b 100644
--- a/src/data/roadmaps/nextjs/content/nodejs@0S37ka1K-TdYLnjCBrKSH.md
+++ b/src/data/roadmaps/nextjs/content/nodejs@0S37ka1K-TdYLnjCBrKSH.md
@@ -1 +1,9 @@
-# Node.js
\ No newline at end of file
+# Node.js
+
+Node.js is a JavaScript runtime environment that executes JavaScript code outside of a web browser. It allows developers to use JavaScript for server-side scripting and to build scalable network applications. Node.js uses an event-driven, non-blocking I/O model that makes it efficient and well-suited for real-time applications.
+
+Visit the following resources to learn more:
+
+- [@roadmap@Visit de Dedicated Node.js Roadmap](https://roadmap.sh/nodejs)
+- [@official@Node.js](https://nodejs.org/en/about/)
+- [@official@Edge Runtime](https://nextjs.org/docs/app/api-reference/edge)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/opentelemetry@mTh5PZNpzJNKPqpu5PVL6.md b/src/data/roadmaps/nextjs/content/opentelemetry@mTh5PZNpzJNKPqpu5PVL6.md
index 69dfb9706..7b2cf4059 100644
--- a/src/data/roadmaps/nextjs/content/opentelemetry@mTh5PZNpzJNKPqpu5PVL6.md
+++ b/src/data/roadmaps/nextjs/content/opentelemetry@mTh5PZNpzJNKPqpu5PVL6.md
@@ -1 +1,10 @@
-# OpenTelemetry
\ No newline at end of file
+# OpenTelemetry
+
+Observability is crucial for understanding and optimizing the behavior and performance of your Next.js app. With observability, developers can proactively address issues before they become major problems and provide a better user experience.
+
+Next.js recommends using OpenTelemetry for instrumenting your apps. It's a platform-agnostic way to instrument apps that allows you to change your observability provider without changing your code. Next.js supports OpenTelemetry instrumentation out of the box, which means that we already instrumented Next.js itself.
+
+Visit the following resources to learn more:
+
+- [@official@How to set up instrumentation with OpenTelemetry](https://nextjs.org/docs/app/guides/open-telemetry)
+- [@official@OpenTelemetry Docs](https://opentelemetry.io/docs/)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/package-bundling@qM_Za9NiCiCG5-kf5RCXF.md b/src/data/roadmaps/nextjs/content/package-bundling@qM_Za9NiCiCG5-kf5RCXF.md
index 7c8ae621c..a35d373b5 100644
--- a/src/data/roadmaps/nextjs/content/package-bundling@qM_Za9NiCiCG5-kf5RCXF.md
+++ b/src/data/roadmaps/nextjs/content/package-bundling@qM_Za9NiCiCG5-kf5RCXF.md
@@ -1 +1,7 @@
-# Package Bundling
\ No newline at end of file
+# Package Bundling
+
+Bundling external packages can significantly improve the performance of your application. By default, packages imported inside Server Components and Route Handlers are automatically bundled by Next.js for enhanced optimization.
+
+Visit the following resources to learn more:
+
+- [@official@How to optimize package bundling](https://nextjs.org/docs/app/guides/package-bundling)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/parallel-routes@2N_hm9Zx_Lp-RFEMP9HFb.md b/src/data/roadmaps/nextjs/content/parallel-routes@2N_hm9Zx_Lp-RFEMP9HFb.md
index 40eb215d3..f4809d580 100644
--- a/src/data/roadmaps/nextjs/content/parallel-routes@2N_hm9Zx_Lp-RFEMP9HFb.md
+++ b/src/data/roadmaps/nextjs/content/parallel-routes@2N_hm9Zx_Lp-RFEMP9HFb.md
@@ -1 +1,8 @@
-# Parallel Routes
\ No newline at end of file
+# Parallel Routes
+
+Parallel Routes allows you to simultaneously or conditionally render one or more pages within the same layout. They are useful for highly dynamic sections of an app, such as dashboards and feeds on social sites.
+
+Visit the following resources to learn more:
+
+- [@official@Parallel Routes](https://nextjs.org/docs/app/api-reference/file-conventions/parallel-routes)
+- [@video@Next.js 15 Tutorial - Parallel Routes](https://www.youtube.com/watch?v=697kNwfU-4M)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/parallel-vs-sequential@SjJQ7ceU6vBhlhrN8hcvy.md b/src/data/roadmaps/nextjs/content/parallel-vs-sequential@SjJQ7ceU6vBhlhrN8hcvy.md
index 04b19bf00..b5205555c 100644
--- a/src/data/roadmaps/nextjs/content/parallel-vs-sequential@SjJQ7ceU6vBhlhrN8hcvy.md
+++ b/src/data/roadmaps/nextjs/content/parallel-vs-sequential@SjJQ7ceU6vBhlhrN8hcvy.md
@@ -1 +1,11 @@
-# Parallel vs Sequential
\ No newline at end of file
+# Parallel vs Sequential
+
+When fetching data inside React components, you need to be aware of two data fetching patterns: Parallel and Sequential.
+
+With sequential data fetching, requests in a route are dependent on each other and therefore create waterfalls. There may be cases where you want this pattern because one fetch depends on the result of the other, or you want a condition to be satisfied before the next fetch to save resources. However, this behavior can also be unintentional and lead to longer loading times.
+
+With parallel data fetching, requests in a route are eagerly initiated and will load data at the same time. This reduces client-server waterfalls and the total time it takes to load data.
+
+Visit the following resources to learn more:
+
+- [@official@Parallel and sequential data fetching](https://nextjs.org/docs/14/app/building-your-application/data-fetching/patterns#parallel-and-sequential-data-fetching)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/playwright@qFDdfOBdOlGMjTEOiiuTe.md b/src/data/roadmaps/nextjs/content/playwright@qFDdfOBdOlGMjTEOiiuTe.md
index 454f06c7c..53e39cd0a 100644
--- a/src/data/roadmaps/nextjs/content/playwright@qFDdfOBdOlGMjTEOiiuTe.md
+++ b/src/data/roadmaps/nextjs/content/playwright@qFDdfOBdOlGMjTEOiiuTe.md
@@ -1 +1,8 @@
-# Playwright
\ No newline at end of file
+# Playwright
+
+Next.js supports Playwright for End-to-End (E2E) testing. Playwright is a testing framework that lets you automate Chromium, Firefox, and WebKit with a single API. You can use it to write E2E testing.
+
+Visit the following resources to learn more:
+
+- [@official@How to set up Playwright with Next.js](https://nextjs.org/docs/app/guides/testing/playwright)
+- [@official@Playwright](https://playwright.dev/)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/preloading-data@Ve1Pa7IhGHPZ_F-sCMcNb.md b/src/data/roadmaps/nextjs/content/preloading-data@Ve1Pa7IhGHPZ_F-sCMcNb.md
index 2665411ef..29c9c5ea0 100644
--- a/src/data/roadmaps/nextjs/content/preloading-data@Ve1Pa7IhGHPZ_F-sCMcNb.md
+++ b/src/data/roadmaps/nextjs/content/preloading-data@Ve1Pa7IhGHPZ_F-sCMcNb.md
@@ -1 +1,5 @@
-# Preloading Data
\ No newline at end of file
+Another way to optimize data fetching is to use the preload pattern. You can optionally create a preload function to further optimize parallel data fetching. With this approach, you don't have to pass promises down as props. The preload function can also have any name as it's a pattern, not an API.
+
+Visit the following resources to learn more:
+
+- [@official@Preloading data](https://nextjs.org/docs/14/app/building-your-application/data-fetching/patterns#preloading-data)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/preparing-for-production@-yiJSBIoczJHOW8YMdWFI.md b/src/data/roadmaps/nextjs/content/preparing-for-production@-yiJSBIoczJHOW8YMdWFI.md
index e705d03be..e13d05b46 100644
--- a/src/data/roadmaps/nextjs/content/preparing-for-production@-yiJSBIoczJHOW8YMdWFI.md
+++ b/src/data/roadmaps/nextjs/content/preparing-for-production@-yiJSBIoczJHOW8YMdWFI.md
@@ -1 +1,7 @@
-# Preparing for Production
\ No newline at end of file
+# Preparing for Production
+
+Before taking Next.js application to production, there are some optimizations and patterns you should consider implementing for the best user experience, performance, and security. Next.js provides a list of best practices when building your application and before going to production. In addition, you should be aware of the automatic Next.js optimizations.
+
+Visit the following resources to learn more:
+
+- [@official@How to optimize your Next.js application for production](https://nextjs.org/docs/app/guides/production-checklist)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/prettier@efMytbUmw44M8dPL4ItsX.md b/src/data/roadmaps/nextjs/content/prettier@efMytbUmw44M8dPL4ItsX.md
index 724c5b765..e657a2c4f 100644
--- a/src/data/roadmaps/nextjs/content/prettier@efMytbUmw44M8dPL4ItsX.md
+++ b/src/data/roadmaps/nextjs/content/prettier@efMytbUmw44M8dPL4ItsX.md
@@ -1 +1,10 @@
-# Prettier
\ No newline at end of file
+# Prettier
+
+Prettier is an opinionated code formatter that supports many languages, including JavaScript, TypeScript, and CSS. It automatically formats your code to adhere to a consistent style, ensuring readability and maintainability across your project.
+
+The ESLint Plugin contains code formatting rules, which may conflict with your existing Prettier setup. To make ESLint and Prettier work together, you can include `eslint-config-prettier` in your ESLint config.
+
+Visit the following resources to learn more:
+
+- [@official@ESLint Plugin with Prettier](https://nextjs.org/docs/app/api-reference/config/eslint#with-prettier)
+- [@opensource@eslint-config-prettier](https://github.com/prettier/eslint-config-prettier)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/react-cache@crBlqiS78n7yz28cT2GGz.md b/src/data/roadmaps/nextjs/content/react-cache@crBlqiS78n7yz28cT2GGz.md
index cef6edd35..8bfa25340 100644
--- a/src/data/roadmaps/nextjs/content/react-cache@crBlqiS78n7yz28cT2GGz.md
+++ b/src/data/roadmaps/nextjs/content/react-cache@crBlqiS78n7yz28cT2GGz.md
@@ -1 +1,9 @@
-# React Cache
\ No newline at end of file
+# React Cache function
+
+The React `cache` function allows you to memoize the return value of a function, allowing you to call the same function multiple times while only executing it once.
+
+`fetch` requests using the `GET` or `HEAD` methods are automatically memoized, so you do not need to wrap it in React `cache`. However, for other `fetch` methods, or when using data fetching libraries (such as some database, CMS, or GraphQL clients) that don't inherently memoize requests, you can use `cache` to manually memoize data requests.
+
+Visit the following resources to learn more:
+
+- [@official@React cache function](https://nextjs.org/docs/app/guides/caching#react-cache-function)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/reditects@K1wGmAy9L0VE6cwYE2pA6.md b/src/data/roadmaps/nextjs/content/reditects@K1wGmAy9L0VE6cwYE2pA6.md
index 146b03d86..37b8cc714 100644
--- a/src/data/roadmaps/nextjs/content/reditects@K1wGmAy9L0VE6cwYE2pA6.md
+++ b/src/data/roadmaps/nextjs/content/reditects@K1wGmAy9L0VE6cwYE2pA6.md
@@ -1 +1,8 @@
-# Reditects
\ No newline at end of file
+# Redirects in Next.js API Endpoints
+
+Redirects in Next.js API endpoints allow you to send a user from one URL to another. This is useful for various scenarios, such as moving or renaming pages, handling temporary content changes, or guiding users to a different part of your application based on specific conditions. By sending an HTTP redirect response, the server instructs the client's browser to navigate to the new URL.
+
+Visit the following resources to learn more:
+
+- [@official@How to handle redirects in Next.js for App Router](https://nextjs.org/docs/app/guides/redirecting)
+- [@official@redirectHow to handle redirects in Next.js for Pages Router](https://nextjs.org/docs/pages/guides/redirecting)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/rendering-pages@IlWFMh44HtHDnIr7nqwtI.md b/src/data/roadmaps/nextjs/content/rendering-pages@IlWFMh44HtHDnIr7nqwtI.md
index d08aec199..9edb4bed5 100644
--- a/src/data/roadmaps/nextjs/content/rendering-pages@IlWFMh44HtHDnIr7nqwtI.md
+++ b/src/data/roadmaps/nextjs/content/rendering-pages@IlWFMh44HtHDnIr7nqwtI.md
@@ -1 +1,11 @@
-# Rendering Pages
\ No newline at end of file
+# Rendering Pages in Next.js
+
+Rendering refers to the process of converting your code into HTML that can be displayed in a web browser. Next.js offers different strategies for this, including server-side rendering (SSR), static site generation (SSG), incremental static regeneration (ISR), and client-side rendering (CSR). Each method determines when and where the HTML is generated, impacting performance, SEO, and interactivity. Choosing the right rendering strategy depends on the specific needs of each page in your application.
+
+Recently, Next.js has launched a partial prerendering feature, that allows you to combine static and dynamic content in the same route. This improves the initial page performance while still supporting personalized, dynamic data. However, this feature is currently experimental and subject to change, it's not recommended for production.
+
+Visit the following resources to learn more:
+
+- [@official@Rendering Strategies](https://nextjs.org/learn/seo/rendering-strategies)
+- [@official@Partial Prerendering](https://nextjs.org/docs/app/getting-started/partial-prerendering)
+- [@official@Rendering User Interfaces (UI)](https://nextjs.org/learn/react-foundations/rendering-ui)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/revalidating-cached-data@N5siOJO3dc9vJUTpbdm04.md b/src/data/roadmaps/nextjs/content/revalidating-cached-data@N5siOJO3dc9vJUTpbdm04.md
index cba04ef1b..f1e266434 100644
--- a/src/data/roadmaps/nextjs/content/revalidating-cached-data@N5siOJO3dc9vJUTpbdm04.md
+++ b/src/data/roadmaps/nextjs/content/revalidating-cached-data@N5siOJO3dc9vJUTpbdm04.md
@@ -1 +1,8 @@
-# Revalidating Cached Data
\ No newline at end of file
+# Revalidating Cached Data
+
+Revalidation is the process of updating cached data. When you cache data, it's stored for a certain period. After that period, or based on specific events, you might want to refresh the data to ensure your application displays the most up-to-date information. Revalidation allows you to control when and how your cached data is updated, balancing performance with data freshness. Revalidating in Next.js is conducted through the `revalidatePath` and `revalidateTag` functions.
+
+Visit the following resources to learn more:
+
+- [@official@Revalidating](https://nextjs.org/docs/app/guides/caching#revalidating-1)
+- [@official@Caching and Revalidating](https://nextjs.org/docs/app/getting-started/caching-and-revalidating#revalidatetag)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/revalidation-errors@qMYuXOlr_c-6oQKVOdGci.md b/src/data/roadmaps/nextjs/content/revalidation-errors@qMYuXOlr_c-6oQKVOdGci.md
index d079e9948..4d8d43dad 100644
--- a/src/data/roadmaps/nextjs/content/revalidation-errors@qMYuXOlr_c-6oQKVOdGci.md
+++ b/src/data/roadmaps/nextjs/content/revalidation-errors@qMYuXOlr_c-6oQKVOdGci.md
@@ -1 +1,7 @@
-# Revalidation Errors
\ No newline at end of file
+# Revalidation Errors
+
+When revalidation fails, it means the attempt to refresh the cached data encountered an issue, preventing the application from displaying the most up-to-date information. These errors can stem from various sources, such as network connectivity problems, issues with the data source itself (e.g., a database being unavailable), or problems within the revalidation logic. In Next.js, If an error is thrown while attempting to revalidate data, the last successfully generated data will continue to be served from the cache. On the next subsequent request, Next.js will retry revalidating the data.
+
+Visit the following resources to learn more:
+
+- [@official@Error handling and revalidation](https://nextjs.org/docs/14/app/building-your-application/data-fetching/fetching-caching-and-revalidating)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/route-matcher@Sn-8ztsjjtUxD_SP6w3cS.md b/src/data/roadmaps/nextjs/content/route-matcher@Sn-8ztsjjtUxD_SP6w3cS.md
index 19f4959a3..342fcace4 100644
--- a/src/data/roadmaps/nextjs/content/route-matcher@Sn-8ztsjjtUxD_SP6w3cS.md
+++ b/src/data/roadmaps/nextjs/content/route-matcher@Sn-8ztsjjtUxD_SP6w3cS.md
@@ -1 +1,8 @@
-# Route Matcher
\ No newline at end of file
+# Route Matcher
+
+A route matcher in Next.js middleware allows you to conditionally execute middleware based on the incoming request's path. It defines specific patterns or conditions that the request path must satisfy for the middleware to run. This enables you to apply middleware logic only to certain routes or groups of routes within your application, providing fine-grained control over request handling.
+
+Visit the following resources to learn more:
+
+- [@official@Matcher for App Router](https://nextjs.org/docs/app/api-reference/file-conventions/middleware#matcher)
+- [@official@Matcher for Pages Router](https://nextjs.org/docs/pages/api-reference/file-conventions/middleware#matcher)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/routing-patterns@09uWsmXOXU0Ox7F3qsjRx.md b/src/data/roadmaps/nextjs/content/routing-patterns@09uWsmXOXU0Ox7F3qsjRx.md
index e5844e494..1b4f07fd1 100644
--- a/src/data/roadmaps/nextjs/content/routing-patterns@09uWsmXOXU0Ox7F3qsjRx.md
+++ b/src/data/roadmaps/nextjs/content/routing-patterns@09uWsmXOXU0Ox7F3qsjRx.md
@@ -1 +1,12 @@
-# Routing Patterns
\ No newline at end of file
+# Routing Patterns
+
+The App Router provides a set of conventions to help you implement more advanced routing patterns. These include:
+
+* Parallel Routes: Allow you to simultaneously show two or more pages in the same view that can be navigated independently.
+* Intercepting Routes: Allow you to intercept a route and show it in the context of another route.
+
+These patterns allow you to build richer and more complex UIs, democratizing features that were historically complex for small teams and individual developers to implement.
+
+Visit the following resources to learn more:
+
+- [@official@Advanced Routing Patterns](https://nextjs.org/docs/13/app/building-your-application/routing#advanced-routing-patterns)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/routing-terminology@oFhmV5Xv0KJ-SjeYVZBpi.md b/src/data/roadmaps/nextjs/content/routing-terminology@oFhmV5Xv0KJ-SjeYVZBpi.md
index 21b1853b0..300ac288f 100644
--- a/src/data/roadmaps/nextjs/content/routing-terminology@oFhmV5Xv0KJ-SjeYVZBpi.md
+++ b/src/data/roadmaps/nextjs/content/routing-terminology@oFhmV5Xv0KJ-SjeYVZBpi.md
@@ -1 +1,25 @@
-# Routing Terminology
\ No newline at end of file
+# Routing Terminology in Next.js
+
+In Next.js, routing is primarily handled through the `app` directory (introduced in Next.js 13) and the older `pages` directory. Key terms include:
+
+* **Route:** A specific URL path that maps to a particular component or page. For example, `/blog/my-first-post`.
+
+* **Route Segment:** A part of the URL path. In `/blog/my-first-post`, `blog` and `my-first-post` are route segments.
+
+* **File-System Routing:** Next.js uses a file-system based router. The structure of your directories and files within the `app` or `pages` directory directly defines your application's routes.
+
+* **Dynamic Routes:** Routes that include parameters, allowing you to create pages based on data. For example, `/blog/[slug]` where `[slug]` is a dynamic parameter.
+
+* **Index Route:** The route that is served when a user visits a directory. Typically represented by an `index.js` or `page.js` file within a directory.
+
+* **Layout:** A component that wraps multiple pages, providing a consistent UI structure (like headers and footers) across different routes.
+
+* **Link Component:** The `` component from `next/link` is used for client-side navigation between routes, providing better performance than traditional `` tags.
+
+Visit the following resources to learn more:
+
+- [@official@Project structure and organization](https://nextjs.org/docs/app/getting-started/project-structure)
+- [@video@Next.js 15 Tutorial - Routing](https://www.youtube.com/watch?v=9602Yzvd7i)
+- [@video@Next.js 15 Tutorial - Nested Routes](https://www.youtube.com/watch?v=H7JjKjkC33c)
+- [@video@Next.js 15 Tutorial - Dynamic Routes](https://www.youtube.com/watch?v=k9g6aVLH3p4)
+- [@video@Next.js 15 Tutorial - Nested Dynamic Routes](https://www.youtube.com/watch?v=edrJf0GKfAI)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/runtimes-and-types@LN7SHgcQp9gX_jfEN84YP.md b/src/data/roadmaps/nextjs/content/runtimes-and-types@LN7SHgcQp9gX_jfEN84YP.md
index c78ac3aed..683bb7079 100644
--- a/src/data/roadmaps/nextjs/content/runtimes-and-types@LN7SHgcQp9gX_jfEN84YP.md
+++ b/src/data/roadmaps/nextjs/content/runtimes-and-types@LN7SHgcQp9gX_jfEN84YP.md
@@ -1 +1,10 @@
-# Runtimes and Types
\ No newline at end of file
+# Runtimes and Types
+
+In the context of Next.js, runtime refers to the set of libraries, APIs, and general functionality available to your code during execution. On the server, there are two runtimes where parts of your application code can be rendered:
+
+* The Node.js Runtime (default), which has access to all Node.js APIs and is used for rendering your application.
+* The Edge Runtime which contains a more limited set of APIs, used in Middleware.
+
+Visit the following resources to learn more:
+
+- [@official@https://nextjs.org/docs/app/api-reference/edge](https://nextjs.org/docs/app/api-reference/edge)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/sass@5H7toz-DxtnwjozCgLuk6.md b/src/data/roadmaps/nextjs/content/sass@5H7toz-DxtnwjozCgLuk6.md
index 236621207..cacc4e140 100644
--- a/src/data/roadmaps/nextjs/content/sass@5H7toz-DxtnwjozCgLuk6.md
+++ b/src/data/roadmaps/nextjs/content/sass@5H7toz-DxtnwjozCgLuk6.md
@@ -1 +1,11 @@
-# Sass
\ No newline at end of file
+# Sass in Next.js
+
+Sass (Syntactically Awesome Style Sheets) is a CSS preprocessor that extends the capabilities of standard CSS. It allows you to use features like variables, nesting, mixins, and functions to write more organized, maintainable, and efficient stylesheets. These features are then compiled into standard CSS that browsers can understand.
+
+Next.js has built-in support for integrating with Sass after the package is installed using both the `.scss` and `.sass` extensions. You can use component-level Sass via CSS Modules and the `.module.scss` or `.module.sass` extension.
+
+Visit the following resources to learn more:
+
+- [@official@Sass](https://sass-lang.com/)
+- [@opensource@Sass](https://github.com/sass/sass)
+- [@article@How to use Sass in Next.js](https://nextjs.org/docs/app/guides/sass)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/scripts@JFrpy3dGt-UP9Weo1VBvN.md b/src/data/roadmaps/nextjs/content/scripts@JFrpy3dGt-UP9Weo1VBvN.md
index 82916c187..6ca5ea63c 100644
--- a/src/data/roadmaps/nextjs/content/scripts@JFrpy3dGt-UP9Weo1VBvN.md
+++ b/src/data/roadmaps/nextjs/content/scripts@JFrpy3dGt-UP9Weo1VBvN.md
@@ -1 +1,12 @@
-# Scripts
\ No newline at end of file
+# Third-Party Scripts
+
+Third-party scripts are code snippets from external sources that add functionality to your website, such as analytics, advertising, or social media widgets. Next.js allows you to load a third-party script for multiple routes through the `next/script` component, optimizing performance and enhancing control over when and how scripts are executed within your application.
+
+
+
+
+These scripts can impact your website's performance because they often require downloading and executing code from external servers. Managing these scripts effectively is crucial for maintaining a fast and responsive user experience.
+
+Visit the following resources to learn more:
+
+- [@official@How to load and optimize scripts](https://nextjs.org/docs/app/guides/scripts)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/server-actions@IuBZY-ISP1Sy_5OQ99jLY.md b/src/data/roadmaps/nextjs/content/server-actions@IuBZY-ISP1Sy_5OQ99jLY.md
index 782a11c46..8a8bbaa76 100644
--- a/src/data/roadmaps/nextjs/content/server-actions@IuBZY-ISP1Sy_5OQ99jLY.md
+++ b/src/data/roadmaps/nextjs/content/server-actions@IuBZY-ISP1Sy_5OQ99jLY.md
@@ -1 +1,7 @@
-# Server Actions
\ No newline at end of file
+# Server Functions
+
+Server Functions are asynchronous functions that are executed on the server. They can be used in Server and Client Components to handle form submissions and data mutations in Next.js applications. In an `action` or mutation context, they are also called Server Actions.
+
+Visit the following resources to learn more:
+
+- [@official@What are Server Functions?](https://nextjs.org/docs/app/getting-started/updating-data)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/server-rendered@m7eKlykOZCA3BLuBHioDj.md b/src/data/roadmaps/nextjs/content/server-rendered@m7eKlykOZCA3BLuBHioDj.md
index ebaa3e01f..dcb5d1625 100644
--- a/src/data/roadmaps/nextjs/content/server-rendered@m7eKlykOZCA3BLuBHioDj.md
+++ b/src/data/roadmaps/nextjs/content/server-rendered@m7eKlykOZCA3BLuBHioDj.md
@@ -1 +1,10 @@
-# Server Rendered
\ No newline at end of file
+# Server-Side Rendering (SSR)
+
+Server-Side Rendering (SSR) is a technique where a web application's initial HTML is generated on the server in response to a user's request. This pre-rendered HTML is then sent to the client's browser, allowing the user to see the content immediately, even before the JavaScript code is fully executed. This approach contrasts with client-side rendering, where the browser downloads a minimal HTML page and then uses JavaScript to render the content.
+
+Visit the following resources to learn more:
+
+- [@official@Server and Client Components for App Router](https://nextjs.org/docs/app/getting-started/server-and-client-components#when-to-use-server-and-client-components)
+- [@official@Server-side Rendering (SSR) for App Router](https://nextjs.org/docs/pages/building-your-application/rendering/server-side-rendering)
+- [@official@Server Components](https://nextjs.org/docs/14/app/building-your-application/rendering/server-components)
+- [@video@Next.js 15 Tutorial - Server and Client Components](https://www.youtube.com/watch?v=dMCSiA5gzkU)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/server@QDxYlIyFOuGUIy_ZovHs0.md b/src/data/roadmaps/nextjs/content/server@QDxYlIyFOuGUIy_ZovHs0.md
index ee9929c84..a9b310ce4 100644
--- a/src/data/roadmaps/nextjs/content/server@QDxYlIyFOuGUIy_ZovHs0.md
+++ b/src/data/roadmaps/nextjs/content/server@QDxYlIyFOuGUIy_ZovHs0.md
@@ -1 +1,8 @@
-# Server
\ No newline at end of file
+# Server-Side Data Fetching for Locations
+
+Fetching data on the server in Next.js allows you to retrieve location information before the page is rendered. This approach improves performance by reducing the amount of work the client's browser needs to do, leading to faster initial page loads and better SEO. Server-side data fetching ensures that the data is available when the page is initially rendered, providing a seamless user experience.
+
+Visit the following resources to learn more:
+
+- [@official@Client-side Fetching](https://nextjs.org/docs/app/getting-started/fetching-data#server-components)
+- [@video@Next.js 15 Tutorial - Fetching Data in Server Components](https://www.youtube.com/watch?v=WKfPctdIDek)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/setting-headers@XwDF-Kt9K5smm3ruxlkR2.md b/src/data/roadmaps/nextjs/content/setting-headers@XwDF-Kt9K5smm3ruxlkR2.md
index dd6978b9f..019c0c71c 100644
--- a/src/data/roadmaps/nextjs/content/setting-headers@XwDF-Kt9K5smm3ruxlkR2.md
+++ b/src/data/roadmaps/nextjs/content/setting-headers@XwDF-Kt9K5smm3ruxlkR2.md
@@ -1 +1,8 @@
-# Setting Headers
\ No newline at end of file
+# Setting Headers in Next.js Middleware
+
+Middleware in Next.js allows you to run code before a request is completed. Setting headers within middleware enables you to modify the HTTP response headers, controlling aspects like caching, security policies, or custom information passed to the client. This provides a flexible way to manage response behavior based on incoming requests.
+
+Visit the following resources to learn more:
+
+- [@official@Setting Headers for App Router](https://nextjs.org/docs/app/api-reference/file-conventions/middleware#setting-headers)
+- [@official@Setting Headers for Pages Router](https://nextjs.org/docs/pages/api-reference/file-conventions/middleware#setting-headers)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/setting-things-up@ThrO72opK7xGWpy0GG63T.md b/src/data/roadmaps/nextjs/content/setting-things-up@ThrO72opK7xGWpy0GG63T.md
index d18c92c44..b856ccf43 100644
--- a/src/data/roadmaps/nextjs/content/setting-things-up@ThrO72opK7xGWpy0GG63T.md
+++ b/src/data/roadmaps/nextjs/content/setting-things-up@ThrO72opK7xGWpy0GG63T.md
@@ -1 +1,7 @@
-# Setting things Up
\ No newline at end of file
+# Setting Things Up
+
+Next.js allows you to customize your project to meet specific requirements. This includes integrations with TypeScript, ESlint, and more, as well as internal configuration options such as Absolute Imports and Environment Variables.
+
+Visit the following resources to learn more:
+
+- [@official@Configuration](https://nextjs.org/docs/app/api-reference/config)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/static-assets@iabbuLHqAiRkgj03t64x7.md b/src/data/roadmaps/nextjs/content/static-assets@iabbuLHqAiRkgj03t64x7.md
index cb41e9ef5..80ad951dd 100644
--- a/src/data/roadmaps/nextjs/content/static-assets@iabbuLHqAiRkgj03t64x7.md
+++ b/src/data/roadmaps/nextjs/content/static-assets@iabbuLHqAiRkgj03t64x7.md
@@ -1 +1,7 @@
-# Static Assets
\ No newline at end of file
+# Static Assets
+
+Static content is any file that is stored in a server and is the same every time it is delivered to users. HTML files and images are examples of this kind of content. Next.js can serve static files under a folder called `public` in the root directory. Files inside `public` can then be referenced by your code starting from the base URL (`/`). It's important to note that Next.js cannot safely cache assets in the public folder because they may change.
+
+Visit the following resources to learn more:
+
+- [@official@public Folder](https://nextjs.org/docs/app/api-reference/file-conventions/public-folder)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/static-export@evmzZ6F7TWgYhdaahnZHY.md b/src/data/roadmaps/nextjs/content/static-export@evmzZ6F7TWgYhdaahnZHY.md
index 816dec1d0..18b675efc 100644
--- a/src/data/roadmaps/nextjs/content/static-export@evmzZ6F7TWgYhdaahnZHY.md
+++ b/src/data/roadmaps/nextjs/content/static-export@evmzZ6F7TWgYhdaahnZHY.md
@@ -1 +1,9 @@
-# Static Export
\ No newline at end of file
+# Static Export
+
+Next.js enables starting as a static site or Single-Page Application (SPA), then later optionally upgrading to use features that require a server. Since Next.js supports static exports, it can be deployed and hosted on any web server that can serve HTML/CSS/JS static assets. This includes tools like AWS S3, Nginx, or Apache.
+
+Running as a static export does not support Next.js features that require a server.
+
+Visit the following resources to learn more:
+
+- [@official@Static Export Deployment](https://nextjs.org/docs/app/getting-started/deploying#static-export)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/static-vs-dynamic@hQHvu7MzNwA2lL9ADm5YQ.md b/src/data/roadmaps/nextjs/content/static-vs-dynamic@hQHvu7MzNwA2lL9ADm5YQ.md
index 0c5240f56..8b5c65f0f 100644
--- a/src/data/roadmaps/nextjs/content/static-vs-dynamic@hQHvu7MzNwA2lL9ADm5YQ.md
+++ b/src/data/roadmaps/nextjs/content/static-vs-dynamic@hQHvu7MzNwA2lL9ADm5YQ.md
@@ -1 +1,9 @@
-# Static vs Dynamic
\ No newline at end of file
+# Static vs Dynamic API Endpoints
+
+API endpoints in Next.js allow you to create serverless functions that handle requests. These endpoints can be either static or dynamic, depending on how their routes are defined and how they process data. Static API endpoints have predefined routes and typically return the same response for every request, while dynamic API endpoints use parameters in their routes to handle different requests and generate responses based on those parameters.
+
+Visit the following resources to learn more:
+
+- [@official@Route Handlers and Middleware](https://nextjs.org/docs/app/getting-started/route-handlers-and-middleware)
+- [@official@Dynamic API Routes for Pages Routers](https://nextjs.org/docs/pages/building-your-application/routing/api-routes#dynamic-api-routes)
+- [@official@Building APIs with Next.js](https://nextjs.org/blog/building-apis-with-nextjs#12-app-router-vs-pages-router)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/streaming@lR7oPh0DCY_BhzXH31N36.md b/src/data/roadmaps/nextjs/content/streaming@lR7oPh0DCY_BhzXH31N36.md
index 3ab695ba8..ec39eb0b5 100644
--- a/src/data/roadmaps/nextjs/content/streaming@lR7oPh0DCY_BhzXH31N36.md
+++ b/src/data/roadmaps/nextjs/content/streaming@lR7oPh0DCY_BhzXH31N36.md
@@ -1 +1,9 @@
-# Streaming
\ No newline at end of file
+# Streaming in Next.js API Endpoints
+
+Streaming in Next.js API endpoints allows you to send data to the client in chunks, rather than waiting for the entire response to be generated on the server before sending anything. This can significantly improve perceived performance, especially for long-running processes or when dealing with large datasets. By sending data incrementally, the client can start processing and displaying information sooner, leading to a more responsive user experience.
+
+Visit the following resources to learn more:
+
+- [@official@Streaming](https://nextjs.org/docs/app/api-reference/file-conventions/route#streaming)
+- [@official@Streaming responses](https://nextjs.org/docs/pages/building-your-application/routing/api-routes#streaming-responses)
+- [@video@Next.js 15 Tutorial - Streaming](https://www.youtube.com/watch?v=oSf1gUDGJOA)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/structuring-routes@9egFwmy-o7Fx-M7FcPXXy.md b/src/data/roadmaps/nextjs/content/structuring-routes@9egFwmy-o7Fx-M7FcPXXy.md
index 9d2954754..f6f084c61 100644
--- a/src/data/roadmaps/nextjs/content/structuring-routes@9egFwmy-o7Fx-M7FcPXXy.md
+++ b/src/data/roadmaps/nextjs/content/structuring-routes@9egFwmy-o7Fx-M7FcPXXy.md
@@ -1 +1,9 @@
-# Structuring Routes
\ No newline at end of file
+# Structuring Routes
+
+Structuring routes in Next.js involves organizing your project's file system to define the different URLs (or routes) of your application. Each file within the `app` directory (or `pages` directory in older versions) corresponds to a specific route. The file's location and name directly determine the URL path that users will access. This file-system-based routing simplifies navigation and makes it easy to create a well-organized web application.
+
+Visit the following resources to learn more:
+
+- [@official@Project structure and organization for App Router](https://nextjs.org/docs/app/getting-started/project-structure)
+- [@official@Project Structure and Organization for Pages Router](https://nextjs.org/docs/pages/getting-started/project-structure)
+- [@video@Next.js 15 Tutorial - Project Structure](https://www.youtube.com/watch?v=L0g87N0piT0)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/tailwind-css@3IKXvlA9P06GiOi34zv5H.md b/src/data/roadmaps/nextjs/content/tailwind-css@3IKXvlA9P06GiOi34zv5H.md
index acac9ef88..032c38e79 100644
--- a/src/data/roadmaps/nextjs/content/tailwind-css@3IKXvlA9P06GiOi34zv5H.md
+++ b/src/data/roadmaps/nextjs/content/tailwind-css@3IKXvlA9P06GiOi34zv5H.md
@@ -1 +1,8 @@
-# Tailwind CSS
\ No newline at end of file
+# Tailwind CSS
+
+Next.js support Tailwind CSS to style your apps. Tailwind CSS is a utility-first CSS framework that provides a set of pre-defined CSS classes that you can use to style your HTML elements directly in your markup. Instead of writing custom CSS rules, you compose styles by applying these utility classes, allowing for rapid UI development and consistent design. This approach promotes a more streamlined workflow by reducing the need to switch between HTML and CSS files.
+
+Visit the following resources to learn more:
+
+- [@official@Tailwind CSS](https://tailwindcss.com/)
+- [@official@Tailwind CSS in Next.js](https://nextjs.org/docs/app/getting-started/css#tailwind-css)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/third-party-libraries@-j38AhG6LUCH5GupGiqUM.md b/src/data/roadmaps/nextjs/content/third-party-libraries@-j38AhG6LUCH5GupGiqUM.md
index be09e5c0c..a575fe690 100644
--- a/src/data/roadmaps/nextjs/content/third-party-libraries@-j38AhG6LUCH5GupGiqUM.md
+++ b/src/data/roadmaps/nextjs/content/third-party-libraries@-j38AhG6LUCH5GupGiqUM.md
@@ -1 +1,7 @@
-# Third Party Libraries
\ No newline at end of file
+# Third Party Libraries
+
+`@next/third-parties` is a library that provides a collection of components and utilities that improve the performance and developer experience of loading popular third-party libraries, like Google Tag Manager and Google Analytics, in your Next.js application. All third-party integrations provided by `@next/third-parties` have been optimized for performance and ease of use.
+
+Visit the following resources to learn more:
+
+- [@official@How to optimize third-party libraries](https://nextjs.org/docs/app/guides/third-party-libraries)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/types-of-routers@km7dLVpl76c5EfWvhhbRh.md b/src/data/roadmaps/nextjs/content/types-of-routers@km7dLVpl76c5EfWvhhbRh.md
index da7d1a68f..08647af67 100644
--- a/src/data/roadmaps/nextjs/content/types-of-routers@km7dLVpl76c5EfWvhhbRh.md
+++ b/src/data/roadmaps/nextjs/content/types-of-routers@km7dLVpl76c5EfWvhhbRh.md
@@ -2,8 +2,8 @@
Next.js has two different routers:
-- **App Router**: The newer router that supports new React features like Server Components.
-- **Pages Router**: The original router, still supported and being improved.
+* **App Router**: The newer router that supports new React features like Server Components.
+* **Pages Router**: The original router, still supported and being improved.
Before Next.js 13, the Pages Router was the main way to create routes in Next.js. It's still supported in newer versions of Next.js, but Next.js recommends migrating to the new App Router to leverage React's latest features.
diff --git a/src/data/roadmaps/nextjs/content/typescript@ZFHkHmvjndPjDAB-MAtb7.md b/src/data/roadmaps/nextjs/content/typescript@ZFHkHmvjndPjDAB-MAtb7.md
index c1e85c36b..418503207 100644
--- a/src/data/roadmaps/nextjs/content/typescript@ZFHkHmvjndPjDAB-MAtb7.md
+++ b/src/data/roadmaps/nextjs/content/typescript@ZFHkHmvjndPjDAB-MAtb7.md
@@ -1 +1,9 @@
-# TypeScript
\ No newline at end of file
+# TypeScript
+
+TypeScript is a syntactic superset of JavaScript which adds static typing. This means that TypeScript adds syntax on top of JavaScript, allowing developers to add types.
+
+Next.js comes with built-in TypeScript, automatically installing the necessary packages and configuring the proper settings when you create a new project with create-next-app. To add TypeScript to an existing project, rename a file to `.ts` / `.tsx`. Run `next dev` and `next build` to automatically install the necessary dependencies and add a `tsconfig.json` file with the recommended config options.
+
+Visit the following resources to learn more:
+
+- [@official@TypeScript](https://nextjs.org/docs/app/api-reference/config/typescript)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/use-cases@54Cc_GdL327tzkdYBA305.md b/src/data/roadmaps/nextjs/content/use-cases@54Cc_GdL327tzkdYBA305.md
index 60e935432..c264fb2aa 100644
--- a/src/data/roadmaps/nextjs/content/use-cases@54Cc_GdL327tzkdYBA305.md
+++ b/src/data/roadmaps/nextjs/content/use-cases@54Cc_GdL327tzkdYBA305.md
@@ -1 +1,8 @@
-# Use cases
\ No newline at end of file
+# Middleware Use Cases
+
+Middleware in Next.js allows you to run code before a request is completed. This provides a flexible way to modify the response by rewriting, redirecting, adding headers, or even directly responding. Common use cases include authentication, authorization, redirecting users based on their location (localization), handling bots, and implementing advanced security measures.
+
+Visit the following resources to learn more:
+
+- [@official@Middleware for App Router](https://nextjs.org/docs/app/api-reference/file-conventions/middleware)
+- [@official@Middleware for Pages Router](https://nextjs.org/docs/pages/api-reference/file-conventions/middleware)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/using-cookies@8kUhcd2-BlqOKInEuSI95.md b/src/data/roadmaps/nextjs/content/using-cookies@8kUhcd2-BlqOKInEuSI95.md
index 946d8babb..1897e6f37 100644
--- a/src/data/roadmaps/nextjs/content/using-cookies@8kUhcd2-BlqOKInEuSI95.md
+++ b/src/data/roadmaps/nextjs/content/using-cookies@8kUhcd2-BlqOKInEuSI95.md
@@ -1 +1,8 @@
-# Using Cookies
\ No newline at end of file
+# Using Cookies in Next.js Middleware
+
+Cookies are small pieces of data that websites store on a user's computer to remember information about them, such as login details, preferences, or shopping cart items. In Next.js middleware, you can access and modify these cookies before a request is handled by your application's routes, allowing you to implement features like authentication, personalization, and A/B testing based on cookie values. This provides a powerful way to control the user experience at the edge.
+
+Visit the following resources to learn more:
+
+- [@official@Using Cookies for App Router](https://nextjs.org/docs/app/api-reference/file-conventions/middleware#using-cookies)
+- [@official@Using Cookies for Pages Router](https://nextjs.org/docs/pages/api-reference/file-conventions/middleware#using-cookies)
\ No newline at end of file
diff --git a/src/data/roadmaps/nextjs/content/videos@1SJX-nGuhIxGH0ukfluoQ.md b/src/data/roadmaps/nextjs/content/videos@1SJX-nGuhIxGH0ukfluoQ.md
index f7e50e9cc..d45c1ca52 100644
--- a/src/data/roadmaps/nextjs/content/videos@1SJX-nGuhIxGH0ukfluoQ.md
+++ b/src/data/roadmaps/nextjs/content/videos@1SJX-nGuhIxGH0ukfluoQ.md
@@ -1 +1,7 @@
-# Videos
\ No newline at end of file
+# Videos in Next.js
+
+Next.js provides various approaches and techniques to store and display video files without affecting performance. Videos can be embedded on the page using the HTML `