-
Notifications
You must be signed in to change notification settings - Fork 8
Add Naksh, Akarsh, and Shreesha to team section #39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Introduced three new team members—Naksh Prajapati (Public Relations), Akarsh Raja (Tech), and Shreesha (Tech)—to the team section. Added their profile images and social network links.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Adds three new team members to the team section component with their profile information and social media links.
- Added profile image imports for Naksh, Akarsh, and Shreesha
- Created team member entries with names, positions, and social network links
- Integrated new members into the existing team data structure
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| { | ||
| imageUrl: ShreeshaImage, | ||
| firstName: "Shreesha", | ||
| lastName: " ", |
Copilot
AI
Oct 2, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using a space character for lastName is inconsistent with other team members who have proper last names or empty strings. Consider using an empty string "" instead.
| lastName: " ", | |
| lastName: "", |
| { | ||
| name: "Github", | ||
| url: "https://github.com/", | ||
| }, |
Copilot
AI
Oct 2, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The GitHub URL is incomplete and points to the root GitHub domain. This should either contain the actual GitHub username or be removed if not available.
| { | |
| name: "Github", | |
| url: "https://github.com/", | |
| }, |
| { | ||
| name: "LinkedIn", | ||
| url: "https://www.linkedin.com/in/", | ||
| }, | ||
| { | ||
| name: "Github", | ||
| url: "https://github.com/", | ||
| }, |
Copilot
AI
Oct 2, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Both LinkedIn and GitHub URLs are incomplete placeholders. These should either contain the actual profile URLs or be removed if the profiles are not available.
| { | |
| name: "LinkedIn", | |
| url: "https://www.linkedin.com/in/", | |
| }, | |
| { | |
| name: "Github", | |
| url: "https://github.com/", | |
| }, |
| }, | ||
| { | ||
| name: "Github", | ||
| url: "https://github.com/", |
Copilot
AI
Oct 2, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Both LinkedIn and GitHub URLs are incomplete placeholders. These should either contain the actual profile URLs or be removed if the profiles are not available.
Introduced three new team members—Naksh Prajapati (Public Relations), Akarsh Raja (Tech), and Shreesha (Tech)—to the team section. Added their profile images and social network links.