Design comparison
Solution retrospective
It resembles the target design, so I guess that's good 🙃
What challenges did you encounter, and how did you overcome them?Not having the design files (Figma) made it more challenging when it came to sizing things outs. There was a lot of estimating and fiddling!
What specific areas of your project would you like help with?Any semantics or accessibility suggestions to improve my solution. Also, any improvements in my use of tailwind classes?
Community feedback
- @aeosmanogluPosted about 2 months ago
Hi Josh! You've done a solid job on this solution, and I'd like to provide a feedback on a key area to help you refine it even further.
Your code is clean, but consider grouping common styles for the buttons (or other repeated elements) into reusable classes or components. This reduces duplication and makes future updates easier. For example, create a .btn class for buttons:
<a class="btn" href="https://www.github.com/">GitHub</a>
And in your CSS:
.btn { @apply bg-gray-700 hover:bg-green hover:text-gray-700 rounded-md py-2.5 text-xs font-semibold; }
Marked as helpful0
Please log in to post a comment
Log in with GitHubJoin 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