← Back to Blog
2023-10-01

Getting Started with Next.js

Learn how to build modern web applications with Next.js and React.

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 setting up configuration.

Main Features

  • Routing
  • Rendering (SSR, SSG)
  • Data Fetching
  • Styling

Theme