Introduction X

Welcome to the Next.js documentation! X

Lorem ipsum dolor sit amet consectetur adipisicing elit. Quia possimus veniam corporis ut hic optio voluptatum ipsam delectus doloremque ducimus?

Lorem ipsum dolor sit amet consectetur adipisicing elit. Reiciendis laboriosam quia ipsum molestiae deserunt, quasi, sunt libero totam corrupti error animi deleniti nihil quidem? Quasi maxime cupiditate nisi sint nostrum.

Lorem ipsum dolor sit amet consectetur adipisicing elit. Nam explicabo cum at distinctio sapiente adipisci ullam amet placeat veritatis, voluptatem accusantium harum ad, excepturi illum suscipit ipsum aliquam eius error eaque natus. Quia animi consectetur, voluptate explicabo voluptatibus in. Rerum.

What is Next.js?

Next.js is a React framework for building full-stack web applications. You use React Components to build user interfaces, and Next.js for additional features and optimizations.

Under the hood, Next.js also abstracts and automatically configures tooling needed for React, like bundling, compiling, and more. This allows you to focus on building your application instead of spending time with configuration.

Whether you're an individual developer or part of a larger team, Next.js can help you build interactive, dynamic, and fast React applications.

Main Features

Some of the main Next.js features include:

FeatureDescription
RoutingA file-system based router built on top of Server Components that supports layouts, nested routing, loading states, error handling, and more.
RenderingClient-side and Server-side Rendering with Client and Server Components. Further optimized with Static and Dynamic Rendering on the server with Next.js. Streaming on Edge and Node.js runtimes.
Data FetchingSimplified data fetching with async/await in Server Components, and an extended fetch API for request memoization, data caching and revalidation.
Styling Support for your preferred styling methods, including CSS Modules, Tailwind CSS, and CSS-in-JS
OptimizationsImage, Fonts, and Script Optimizations to improve your application's Core Web Vitals and User Experience.
TypeScript Improved support for TypeScript, with better type checking and more efficient compilation, as well as custom TypeScript Plugin and type checker.

How to Use These Docs

On the left side of the screen, you'll find the docs navbar. The pages of the docs are organized sequentially, from basic to advanced, so you can follow them step-by-step when building your application. However, you can read them in any order or skip to the pages that apply to your use case.

On the right side of the screen, you'll see a table of contents that makes it easier to navigate between sections of a page. If you need to quickly find a page, you can use the search bar at the top, or the search shortcut (Ctrl+K or Cmd+K).