Nextjs Guideline: Rendering — Use Server Components by default. Description: Server Components reduce client JS bundle. Do: Keep components server by default. Don't: Add 'use client' unnecessarily. Good Example: export default function Page(). Bad Example: ('use client') for static content. Severity: High. Docs: https://nextjs.org/docs/app/building-your-application/rendering/server-components.