Latest solutions
Multi step form — built using React.js and react-hook-form
#framer-motion#react#tailwind-css#vite#animationSubmitted about 1 year agoBookmark landing page, using react.js and framer-motion
#framer-motion#react#tailwind-css#viteSubmitted over 1 year agoCountries of the World Website using React.js
#react#react-router#tailwind-css#vite#axiosSubmitted over 1 year agoSpace tourism website using React.js and react-router
#react#react-router#tailwind-css#vite#animationSubmitted over 1 year agoRock, paper, scissors, lizard, spock game using react and tailwindcss
#animation#react#vite#tailwind-cssSubmitted over 1 year ago
Latest comments
- @kennylun123Submitted over 1 year ago@IheziePosted over 1 year ago
Hey! Great solution👍. I also tried using
<img srcset="" sizes="">
in my solution to this challenge; however, that didn't work out for me. So I used this instead:<picture > <source media="(max-width: 450px)" srcset={item.images.mobile} /> <img src={item.images.desktop} alt="hero" /> </picture>
This method allowed me to use different hero images for varying screen sizes. Hope this helped.😊
1 - P@EdwinSchSubmitted over 1 year ago@IheziePosted over 1 year ago
Hey! Great solution, it looks really cool. However, with your different approach, how would a user filter job listings by programming language?
0