Optimize and implement Next.js Image components
/plugin marketplace add dbalanco/claude-code/plugin install dbalanco-nextjs-core-plugins-nextjs-core@dbalanco/claude-code# Optimize Images Implement or optimize Next.js Image components with proper configuration and best practices. ## Instructions 1. Search for image usage in the codebase (img tags, Image components) 2. For each image: - Convert img tags to next/image Image components - Add proper width and height attributes - Use appropriate loading strategy (lazy, eager, priority) - Add alt text for accessibility - Consider using fill for responsive images - Implement proper sizes attribute for responsive images 3. Check next.config.js for image configuration: - Add remote image doma...