Submitted over 3 years agoA solution to the E-commerce product page challenge
Finally finished!
react, tailwind-css
@11kyle

Solution retrospective
Hey everyone! I finally finished this challenge and I'm super excited about it. I added a footer to the project just to make it more like a complete website. Let me know what you think!
Something I learned was how to force the last item in a flex container to the next row. My code is below (using TailwindCSS classes).
<div className="flex flex-wrap">
<div className="min-w-full">
// Displayed on first line
</div>
<div className="min-w-full">
// Displayed on first line
</div>
<div className="min-w-full">
// Displayed on second line
</div>
</div>
Next, I plan on connecting this to a database and make it a full MERN stack application. I'll probably refactor my code and add Redux as well.
Code
Loading...
Please log in to post a comment
Log in with GitHubCommunity feedback
No feedback yet. Be the first to give feedback on Kyle Johnson's solution.
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