Description
Is your feature request related to a problem? Please describe
The current implementation of the contributor avatars on the Community page leads to longer load times due to unoptimized image sizes. This affects page performance, based on @benjagm's comment on #1364
Describe the solution you'd like
- Optimize Image Loading with Next.js Image Component:
- Use priority for the first 10 images to load eagerly.
- Enable lazy loading (loading="lazy") for images not in the initial viewport.
- Adjust quality to 75 to reduce file size without compromising visible quality.
- Serve Images in Modern Formats:
- Programmatically resize oversized avatars server-side before rendering.
Describe alternatives you've considered
No response
Additional context
No response
Are you working on this?
No