~/home/notes/getting-started-with-nextjs |

Navigation

🎨Theme

Getting Started with Next.js 15

December 2025
Next.jsReact

Next.js 15 brings some exciting improvements to the framework, especially around the App Router and React Server Components.

The new project structure with the app directory makes it much easier to organize routes and layouts. Route groups using parentheses like (public) help keep things tidy without affecting the URL structure.

Server Components are the default now, which means better performance out of the box. Only add 'use client' when you actually need interactivity.