Conversation
mateacademy-ai-mentor
left a comment
There was a problem hiding this comment.
Review Summary
Great job on decomposing the application into components! The project structure is well-organized, and you've correctly separated the components and their styles into their own folders.
However, changes are needed because a key requirement is to use the Prettier formatter for consistent code style. I noticed that you've added /* eslint-disable prettier/prettier */ at the top of several component files (Article.jsx, Header.jsx, Navigation.jsx, and Welcome.jsx), which explicitly disables the formatter. Please remove these comments and format the files accordingly.
Additionally, please remove the leftover instructional comments from the component files to keep the code clean. Once these adjustments are made, your solution will be ready for approval!
✨ Please rate this review in the Platform's notification center1. I will be grateful for your feedback! ✨
Important
Fix the issues, commit the changes, and then re-request my review using the Re-request review button2 in the Reviewers tab.
Tip
If you have any comments about this review, please leave a message in the Add a comment section below and mention me with the @mateacademy-ai-mentor tag3.
I will read your message during my next review of your pull request. Please do not reply directly to my comments, as that feature is not supported yet.
Caution
Do not close the pull request until the review is complete. Closing it early can lead to unexpected behavior and disrupt the review process.
Footnotes
src/components/Article/Article.jsx
Outdated
| @@ -1,5 +1,72 @@ | |||
| /* eslint-disable prettier/prettier */ | |||
There was a problem hiding this comment.
This line disables the Prettier formatter for this file. The project instructions require using Prettier to ensure consistent code style. Please remove this line and format the file.
src/components/Article/Article.jsx
Outdated
| // import a css file containig article styles | ||
|
|
||
| // Create an Article function returning the HTML of article block | ||
|
|
||
| // Add a default export statement for Article component to use it in the other files |
There was a problem hiding this comment.
These template comments should be removed from the final code. It's good practice to clean up any instructional comments before finalizing your work.
src/components/Header/Header.jsx
Outdated
| @@ -1,5 +1,19 @@ | |||
| // import a css file containig header styles | |||
|
|
|||
| /* eslint-disable prettier/prettier */ | |||
There was a problem hiding this comment.
This line disables the Prettier formatter. The task instructions require using Prettier to maintain a consistent code style. Please remove this line and format the code.
src/components/Header/Header.jsx
Outdated
| // import a css file containig header styles | ||
|
|
||
| /* eslint-disable prettier/prettier */ | ||
| // Create a Header function returning the HTML of header block | ||
|
|
||
| // Add a default export statement for Header component to use it in the other files |
There was a problem hiding this comment.
These instructional comments should be removed from the final code. It's a good practice to clean up template comments.
| @@ -0,0 +1,20 @@ | |||
| /* eslint-disable prettier/prettier */ | |||
There was a problem hiding this comment.
This line disables the Prettier formatter, but the task instructions require using it to maintain a consistent code style. Please remove this comment and allow Prettier to format the file.
src/components/Welcome/Welcome.jsx
Outdated
| @@ -1,5 +1,16 @@ | |||
| // import a css file containig welcome styles | |||
|
|
|||
| /* eslint-disable prettier/prettier */ | |||
There was a problem hiding this comment.
This line disables Prettier, but the instructions require you to use it for consistent formatting. Please remove this comment and format the file.
src/components/Welcome/Welcome.jsx
Outdated
| // import a css file containig welcome styles | ||
|
|
||
| /* eslint-disable prettier/prettier */ | ||
| // Create a Welcome function returning the HTML of welcome block | ||
|
|
||
| // Add a default export statement for Welcome component to use it in the other files |
There was a problem hiding this comment.
These instructional comments should be removed from the final code to keep it clean and professional.
mateacademy-ai-mentor
left a comment
There was a problem hiding this comment.
Review Summary
Excellent work on this iteration! You've successfully addressed all the feedback from the previous review by formatting the code and removing the Prettier-disable comments. The project structure is now clean, the components are well-decomposed, and the submission fully meets all task requirements. I am happy to approve your solution. Great job!
✨ Please rate this review in the Platform's notification center1. I will be grateful for your feedback! ✨
No description provided.