Nextjs Guideline: Routing — Use route groups for organization. Description: Group routes without affecting URL. Do: Parentheses for route groups. Don't: Nested folders affecting URL. Good Example: (marketing)/about/page.tsx. Bad Example: marketing/about/page.tsx. Severity: Low. Docs: https://nextjs.org/docs/app/building-your-application/routing/route-groups.