Hello lemmy! I am a underGrad in Delhi, India. This is my portfolio website made with React, Typescript and Tailwind. Please go through it and if possible rate it.
You must log in or register to comment.
- Might not want to share your personal information publically - That information is PII and in western countries need to be handled with care.
- When I hover my mous on the top menu my mouse shape is for text, not clicking
- The cards are of different sizes. Makes it look weird.
- Look into Polars. Read their User Guide. Better API (no weird use of brackets[[]]), faster, nicer to work with than Pandas (and can still convert to Pandas, just in case).
- Not a big fan of all the <div><div><div><div> - Use <nav>, <article> (semantic HTML). You can find details on the HTML spec page: https://html.spec.whatwg.org/dev/ (you should look at chapter 4). Maybe also looks into
CSS Box Model
instead of usingflex
all over the place :)