In the App Router, the folder structure inside app/ defines your routes — there's no router config to write. Each folder is a URL segment, and special files within it define what that segment renders.
Folders = URL segments
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)
