Next.js είναι ένα full-stack React framework. Το React από μόνο του είναι απλώς μια UI library — render ει components αλλά σας αφήνει το routing, data fetching, server rendering, και build tooling στο χέρι σας. Το Next.js παρέχει όλα αυτά out of the box, συν ένα server runtime.
Τι αφήνει έξω το React μόνο του (και τι προσθέτει το Next.js)
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
