Next.js ist ein Full-Stack-React-Framework. React selbst ist nur eine UI-Bibliothek — es rendert Komponenten, überlässt aber Routing, Datenabruf, Server-Rendering und Build-Tools dir selbst. Next.js bietet all das out of the box, plus eine Server-Runtime.
Was React allein nicht bietet (und Next.js hinzufügt)
React (library) → Next.js (framework) adds:
──────────────────────────────────────────────────
UI rendering only → File-based routing (folders = routes)
Client-side rendering → Server rendering (SSR), static generation (SSG), ISR
You wire data fetching → Built-in data fetching + caching
No backend → API routes / Route Handlers (full-stack)
Manual bundling → Zero-config build, code splitting, optimization
Manual <img> → next/image (auto-optimized images), next/font
