Core Concepts
Routing Overview
Understand static, dynamic, and catch-all routes so app structure scales without rewrites.
Updated: 2026-03-04
Static Route
txt
app/docs/page.tsx -> /docsDynamic Segment
txt
app/blog/[slug]/page.tsx -> /blog/my-postCatch-All Segment
txt
app/docs/[...slug]/page.tsx -> /docs/category/articleCatch-all routes are useful for docs IA where category + article path comes from content data.