Nextjs Guideline: Routing — Colocate related files. Description: Keep components styles tests with their routes. Do: Component files alongside page.tsx. Don't: Separate components folder. Good Example: app/dashboard/_components/. Bad Example: components/dashboard/. Severity: Low. Docs: .