@rickyreza12
Piyush Paliwal
@piyushpaliwalAll comments
- @piyushpaliwal
Great work there! I was just going through your code and here are a few observations I have.
- Used color hex codes directly inline (ex - Line 47).
- This will make your code less maintenable, instead you can define a
tailwind.config
object on your script tag and add all colors there so that you can reference them back in your code. See here for details
- This will make your code less maintenable, instead you can define a
- While utilizing Tailwind, it is one of the best practices to have classes sorted out as recommended by the devs, see here. As of now it is difficult to find a class in your project because of the order.
Marked as helpful - Used color hex codes directly inline (ex - Line 47).