@RafaelSS427Submitted 9 months ago
Vinícius Silva Santos
@viniciussisAll comments
- @viniciussisPosted 9 months ago
I really liked your solution, especially the animation of the Shorten It button. I wish I had come up with that idea 😂. The only small issue I found was with the hover effect on the login, other than that, it looks perfect.👍🏻
1 - @AmirezaMahmoudiSubmitted 9 months ago@viniciussisPosted 9 months ago
I noticed that your images had a path issue on Vercel. Fixing this is easy. Instead of adding your images directly like this:
<img src="image path" />
Import the image in the component:import imgPath from "/image-path" <img src={imgPath}/>
0