Latest solutions
In-browser markdown editor Next.js, TS, Redux
#next#react#redux#typescriptPSubmitted 11 months ago- What do you like about the project?
- What can be done better?
An interactive credit card form using React and TypeScript
#react#typescript#material-uiPSubmitted over 1 year ago
Latest comments
- @MikkybeardlessP@evengene
Hello @Mikkybeardless, congratulations on completing the project!
Here are several items I noticed that can help:
- The page looks great on responsive devices like desktop (1440px) and smaller, but try resizing the window for larger devices both width and height and you notice it has some blank space;
- You have both
index.css
andApp.css
files but you can consolidate them into one file; - Linting error in
index.css
line 24, should befont-size: 12px;
- 2 Spelling issues in this paragraph:
Our multifunctional collection....
<Slide 1>, <Slide 2> ...
seems to be the same component with different text - maybe you can render one with different props?- Spelling in
openHarmburger
;) ,CaroselBtn (CarouselBtn)
- Look slike
CaroselBtn.tsx
is not used anywhere
Thank you and good luck!!
- @sobbakaP@evengene
hey Aleksandr Bagaev, good job on the project. Couple of ideas to add on:
- I noticed that the nav items are all active upon page load - only the first one should be active according to the design
- try adding some transitions for the buttons and tabs on hover so they may be more smooth
Thank you and good luck in your future projects.
- @Bkevin3110P@evengene
Hello @Bkevin3110, Good job on the project. Here are several things I think you can improve in your codebase.
Overall I would advise to use a linter to cover a basic code formatting, try using Free Online CSS Beautifier / Formatter for example for your *.css and *.html files.
style.css
- try avoiding naming the classes with a capital letter ( for ex: “.Summary ”)
- line 147, 148 contains error - should be “24px”
- please try to cleanup the unused comments like ‘/*https://stackoverflow …’
index.html
- feel free to format this file as well
- there is an error with missing tag on line 37:
<h3>Summary</h3>
README.md
- you can edit this file to include only info you need for your portfolio, for example you can remove: “Note: Delete this note and update the table of contents based on what sections you keep”
I also think the “Continue” button has a border that design does not have, feel free to check it as well.
Great job and good luck!
Marked as helpful