In the pages/index.page.tsx file, there is an inconsistent use of Image and img tags for rendering images.
For example:
- The CopyCopter logo uses the Next.js Image component.
- The Octue logo and others still use regular img tags.
To maintain consistency, performance optimization (automatic image optimization, lazy loading, etc.), all image tags should be replaced with the Next.js Image component.
Suggested Changes
- Replace all img tags with the Next.js Image component.
- Ensure appropriate width, height, and alt attributes are provided.
- Verify that imports for next/image are properly included.