Latest solutions
I used this simple use case to learn clean architecture with NextJS
#next#reactSubmitted 7 months agoLearned how to implement light/dark mode, End to End type-safe App.
#next#react#typescriptSubmitted about 2 years ago
Latest comments
- @agustinburne@Hugomndez
Hi @agustinburne, Your solution looks fantastic!!
I did catch some bugs on your css you have
h2{ color: hsl(218, 44%, 22%); font-weight: 700; font-size: 2rem; }
and I think it should be:
h1{ color: hsl(218, 44%, 22%); font-weight: 700; font-size: 2rem; }
on my solution I use "px" instead of "%" for "border-radius".
Marked as helpful