
Bookmark landing page using HTML, Tailwind CSS and JS
Design comparison
Solution retrospective
It was a very challenging project, as I never used tailwind. But I learned a lot and I will always apply it to projects.
What challenges did you encounter, and how did you overcome them?My challenge was to apply the tailwind classes and make the animations
What specific areas of your project would you like help with?I had difficulties in some parts of the project, such as putting a red border on the Features items. It doesn't work on mobile
Community feedback
- P@nishanth1596Posted 24 days ago
Great work on this project! I have a few suggestions that might help refine it even further:
-
Since this project is built using HTML, JavaScript, and Tailwind, tagging React might not be the most accurate choice. Updating it accordingly could make it clearer.
-
To enhance the professionalism of your project, consider updating and adding a well-structured README. I know it’s a bit of extra work, but small details like this can really help you stand out.
-
On medium screens, the margins for the hero (first section) and the download section seem a bit tight. Adjusting them slightly could improve readability and overall layout.
-
In the FAQ section, the toggle animation happens instantly. Adding a transition like the one below would make the interaction smoother and more visually appealing:
transition-all duration-500 ease-in-out
- Since most of the headings and paragraphs in this project share common styles, you could define them in the input.css file using a base layer. This way, you can simply use <h2>Content here</h2>, and the styles will be applied automatically:
@layer base { h2 { color: var(--color-Black); font-size: 1.5rem; line-height: 3.25rem; font-weight: 500; letter-spacing: -0.08px; } p { color: var(--color-Black); font-size: 0.94rem; line-height: 1.56rem; opacity: 0.5; font-weight: 400; letter-spacing: 0; }
0@hangtime319Posted 23 days ago@nishanth1596 Thanks for the tips. I will apply them to the project.
0 -
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