Server Side Rendering (SSR) is a technique in web development where a web page is generated and rendered directly from the server, rather than in the user's browser. This means that when a user visits a website, the server sends a fully rendered page to the browser, and all the browser has to do is display it.

SSR is important in the modern web for a couple of reasons.

Server Components are a new paradigm introduced in React 18, and Next.js 13+ supports Server Components through the app directory.

Untitled