Nell'App Router, la struttura di cartelle dentro app/ definisce i tuoi percorsi — non c'è una configurazione del router da scrivere. Ogni cartella è un segmento URL, e i file speciali al suo interno definiscono cosa renderizza quel segmento.
Cartelle = segmenti URL
app/
page.tsx → /
about/page.tsx → /about
blog/page.tsx → /blog
blog/[slug]/page.tsx → /blog/:slug (dynamic segment)
shop/(sale)/page.tsx → /shop (route group — parentheses don't add to URL)
