IP Address Tracker using React + Tailwind + Leaflet + Express

Solution retrospective
This challenge took longer than I anticipated but allowed me to learn a lot. I ended up writing a backend for it in Node/Express. Please check the readme on GitHub for more detail.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @0xabdulkhaliq
Hello there 👋. Congratulations on successfully completing the challenge! 🎉
- I have other recommendations regarding your code that I believe will be of great interest to you.
COMPONENT MEASUREMENTS 📐:
- The
h-[100dvh]
utility class is used to defineheight: 100dvh
, But we want to usemin-height: 100dvh
fordiv
instead ofheight: 100dvh
. Setting theheight: 100dvh
may result in the component being cut off on smaller screens.
- For example; if we set
height: 100dvh
then thebody
will have100dvh
height no matter what. Even if the content spans more than100dvh
.
- But if we set
min-height: 100dvh
then thediv
will start at100dvh
, if the content pushes thediv
beyond100dvh
it will continue growing. However if you have content that takes less than100dvh
it will still take100dvh
in space.
- So we want to use
min-h-[100dvh]
utility class to definemin-height: 100dvh
.
I hope you find this helpful 😄 Above all, the solution you submitted is great !
Happy coding!
Marked as helpful - @Kamlesh0007
Congratulations on completing the challenge! Your hard work and dedication are truly admirable. As you continue to hone your skills, here are a few suggestions that may be helpful:
-
Keep practicing and learning new things. The more you challenge yourself, the more you'll grow as a developer.
-
Seek feedback from others. It's always helpful to get a fresh perspective on your work and learn from constructive criticism.
-
Collaborate with other developers. Working with others can help you learn new techniques and improve your coding skills.
Again, congratulations on completing the challenge, and I wish you continued success in your coding journey! 😁
-
Join our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord