Update resume link and modernize About/Skills/Projects/Contact styles#1
Update resume link and modernize About/Skills/Projects/Contact styles#1
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
✅ Deploy Preview for sumitpandey ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: f123a6471a
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| .project-section h3 { | ||
| color: #7dffb1; | ||
| letter-spacing: 0.2em; | ||
| font-size: 12px; | ||
| text-transform: uppercase; |
There was a problem hiding this comment.
Scope the h3 styling to avoid shrinking project titles
The new .project-section h3 rule applies to every <h3> inside the section, including the project names rendered in ProjectCard.jsx (<h3>{project.name}</h3>). That means project titles are now forced to 12px, uppercase, and wide letter-spacing, which makes them much smaller and harder to read than before; it also changes their semantic emphasis compared to the header copy. If the intent was to style only the section header, this selector should be narrowed (e.g., target a header wrapper) so card titles keep their previous size.
Useful? React with 👍 / 👎.
Motivation
About,Skills,Projects, andContactsections.Description
src/components/About.jsxto the new Google Drive URL (My Resumebutton).src/styles/about.cssto use layered gradients, increased spacing, rounded card, shadow and subtle border treatments.src/styles/skills.cssandsrc/styles/project.cssto introduce modern gradients, larger/rounded cards, hover lift effects, refined typography and adjusted paddings.src/styles/contact.cssto refresh background, spacing, card shadow/border and add improved Material-UI input underline/label color rules for a sleeker form look.Testing
npm installwhich failed due to a peer dependency conflict withreact-lottieand React 18, producing anERESOLVEerror.npm install --legacy-peer-depsto work around dependency constraints, but the run was interrupted and not fully completed.Update resume link and refresh section styling).Codex Task