Feature/developer profile enhancements#160
Open
Rohan-Shridhar wants to merge 10 commits into
Open
Conversation
…d Social Links cards - Add modular profile card components with empty states - Add responsive grid layout to Developer Profile page - Style cards with consistent modern design using Tailwind v4
- Add edit toggle visible only to profile owner - Add editable forms for Bio, Skills, Tech Stack, Experience, Social Links - Add reusable validators for URLs, bio length, headline length, duplicate skills - Wire save/cancel with loading and success/error feedback
- Add resume_url column to User model and Alembic migration - Add POST /api/users/me/resume endpoint with file type/size validation - Add ResumeUploadCard with drag-and-drop, progress state, and replace flow
Owner
|
Thanks for the contribution. Some of the required CI checks is currently failing. Please take a look at the workflow logs, identify the cause, and push a fix. Once all required checks pass, I'll review and proceed with the PR. |
Owner
|
@Rohan-Shridhar Also attached video and screenshots about what you have done. |
Owner
|
I noticed the profile page isn't aligned with the overall layout. There's a large empty space on the right side, and the main profile content doesn't expand to use the available width. It looks like the container has a fixed/max width or incorrect layout constraints. Could you update the layout so the profile content aligns with the page container and utilizes the available horizontal space consistently across different screen sizes? |
…rofile-enhancements
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR enhances the Developer Profile page by introducing modular profile sections and edit functionality for user information.
Fixes #90
Screenshot
Changes Made
Added reusable profile card components:
Organized profile information into a responsive grid layout.
Added edit functionality for editable profile fields.
Integrated profile update API to persist changes.
Added client-side validation for user inputs.
Displayed loading, success, and error states during profile updates.
Hid empty or unavailable fields gracefully while providing meaningful empty states.
Ensured full TypeScript type safety without using
any.Implemented responsive and dark mode compatible UI using Tailwind CSS v4.
Testing
Checklist
Additional Notes
No new dependencies were added. The profile page has been refactored into reusable components to simplify future enhancements, and placeholder components are included for future education and experience model expansion.