What are you most proud of, and what would you do differently next time?
I’m most proud of implementing the hover effect on the NFT image using CSS positioning and maintaining a clean layout with Bootstrap. Next time, I’d reduce dependency on external libraries by writing custom CSS utilities and add more interactive features with JavaScript.
What challenges did you encounter, and how did you overcome them?
Creating the overlay with the "eye" icon on image hover while maintaining the card’s aspect ratio was tricky. Initially, the hover state distorted the layout.
Solution:
Used Bootstrap’s position-relative on the parent (img-container) and position-absolute for the overlay (img-view).
Set explicit dimensions for the overlay (w-100 h-100) to cover the image fully.
Added overflow-hidden to prevent content shifting.
What specific areas of your project would you like help with?
Which part of my NFT card needs improvement? Performance, accessibility, or animations? Let’s focus on one first