React TS Loopstudios Landing Page
Design comparison
Solution retrospective
The handleClick on the Header component is working on localhost but stopped when I deployed.
Is my code understandable?
Did I use the semantic HTML tags correctly, should I add more or less?
In what areas of my code can I improve on?
All feedback is greatly appreciate. It helps me to improve as a frontend developer. Thanks!
Community feedback
- @F4YYPosted over 1 year ago
Hi Karen Lourenço,
Congratulations on successfully completing the challenge. Nicely done.
Yes there is something about
handleClick
, I'm also still figuring it out how to solve it. However, there are few recommendations to further optimize and be more similar to the design if we look in more detail.Creation item h3
color should turn black when hovering.- It's a custom underline of list items when hovering header/footer navbar. because the underline width is smaller than the text word. You might replace
border-bottom
with code such like:
:hover{ ::after{ content:""; margin-top: 30px; heights: 2px; width: 20%; background: var(--White); position: absolute; left: 25%; top: 0; } }
Hope all that could be Helpful. Keep happy coding..
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